On Sun, Nov 02, 2003 at 02:09:03PM -0800, stephen winners wrote:
I have d/l the file again and was able to gzip -d... I see all the files in the directory, but there are no instructions of how to MAKE or ./configure ...
I was hoping to find: Make.in Imake or Make
No such luck - now what?
Did you download tarball with sources or binaries? I am sorry, I am not familiar with that particular tarball. I usually check out firebird from CVS and then compile it myself. It's really simple. If you want to follow my path, here are the steps: Create a .mozconfig file in your home directory with the following contents: export MOZ_PHOENIX=1 mk_add_options MOZ_PHOENIX=1 ac_add_options --enable-crypto ac_add_options --disable-tests ac_add_options --disable-debug ac_add_options --disable-mailnews ac_add_options --disable-composer ac_add_options --enable-optimize=-O2 ac_add_options --disable-ldap ac_add_options --disable-mailnews ac_add_options --enable-extensions=default,-inspector,-irc,-venkman,-content-packs,-help ac_add_options --enable-plaintext-editor-only Now run the following commands: export CVSROOT=:pserver:anonymous@cvs-mirror.mozilla.org:/cvsroot cvs login (password: anonymous; you only need to login once) cvs co mozilla/client.mk cd mozilla gmake -f client.mk When compile finishes, your new binary is located in mozilla/dist/bin/MozillaFirebird More instructions could be found on mozilla web site. HTH, -Kastus