ed92d8077d
Don't pass the opt flags twice to moz, as that will just cause them to be duplicated in the compile lines. Remove commented out optimization flags in the mozconfig Also add a comment about why we disable cpp exceptions
39 lines
1.2 KiB
Plaintext
Executable File
39 lines
1.2 KiB
Plaintext
Executable File
. $topsrcdir/browser/config/mozconfig
|
|
|
|
ac_add_options --prefix="$PREFIX"
|
|
ac_add_options --libdir="$LIBDIR"
|
|
ac_add_options --with-system-nspr
|
|
ac_add_options --with-system-nss
|
|
ac_add_options --with-system-jpeg
|
|
ac_add_options --with-system-zlib
|
|
#ac_add_options --with-system-png
|
|
ac_add_options --with-pthreads
|
|
ac_add_options --disable-tests
|
|
ac_add_options --disable-debug
|
|
ac_add_options --enable-optimize
|
|
ac_add_options --disable-installer
|
|
ac_add_options --enable-xinerama
|
|
ac_add_options --enable-default-toolkit=cairo-gtk2
|
|
ac_add_options --disable-xprint
|
|
ac_add_options --disable-strip
|
|
ac_add_options --enable-system-cairo
|
|
ac_add_options --enable-pango
|
|
ac_add_options --enable-svg
|
|
ac_add_options --enable-canvas
|
|
ac_add_options --enable-startup-notification
|
|
ac_add_options --enable-libxul
|
|
ac_add_options --disable-crashreporter
|
|
ac_add_options --enable-safe-browsing
|
|
ac_add_options --enable-libnotify
|
|
ac_add_options --disable-necko-wifi
|
|
ac_add_options --disable-cpp-exceptions
|
|
ac_add_options --disable-updater
|
|
ac_add_options --enable-chrome-format=jar
|
|
ac_add_options --enable-url-classifier
|
|
|
|
export BUILD_OFFICIAL=1
|
|
export MOZILLA_OFFICIAL=1
|
|
mk_add_options BUILD_OFFICIAL=1
|
|
mk_add_options MOZILLA_OFFICIAL=1
|
|
mk_add_options MOZ_OBJDIR=@TOPSRCDIR@
|