28 lines
829 B
Plaintext
28 lines
829 B
Plaintext
# use an OBJDIR
|
|
mk_add_options MOZ_OBJDIR=@TOPSRCDIR@/firefox-shared
|
|
|
|
# parallel build
|
|
mk_add_options MOZ_MAKE_FLAGS=-j2
|
|
|
|
# grab the defaults from the firefox tarball
|
|
. $topsrcdir/browser/config/mozconfig
|
|
|
|
# crux options
|
|
ac_add_options --enable-application=browser
|
|
ac_add_options --enable-official-branding
|
|
ac_add_options --enable-optimize="#CFLAGS#"
|
|
ac_add_options --disable-debug
|
|
ac_add_options --enable-default-toolkit=gtk2
|
|
ac_add_options --enable-xft
|
|
ac_add_options --enable-shared
|
|
ac_add_options --disable-static
|
|
ac_add_options --enable-extensions=default,-gnomevfs
|
|
ac_add_options --disable-gnomevfs
|
|
ac_add_options --disable-gnomeui
|
|
ac_add_options --disable-tests
|
|
ac_add_options --enable-crypto
|
|
ac_add_options --enable-svg
|
|
ac_add_options --with-system-jpeg
|
|
ac_add_options --with-system-png
|
|
ac_add_options --with-system-zlib
|