summaryrefslogtreecommitdiff
path: root/firefox-mozconfig
diff options
context:
space:
mode:
authorChristopher Aillon <caillon@fedoraproject.org>2005-07-18 20:30:35 +0000
committerChristopher Aillon <caillon@fedoraproject.org>2005-07-18 20:30:35 +0000
commitfa0cf490706b654bdf3aedbef1187caf90b5fa6b (patch)
treeb83ccdedaf2183e39156f650a4f48900e5b09712 /firefox-mozconfig
parent- Update to Deer Park Alpha 2 (diff)
downloadlibrewolf-fedora-ff-fa0cf490706b654bdf3aedbef1187caf90b5fa6b.tar.gz
librewolf-fedora-ff-fa0cf490706b654bdf3aedbef1187caf90b5fa6b.tar.bz2
librewolf-fedora-ff-fa0cf490706b654bdf3aedbef1187caf90b5fa6b.zip
- Update to Deer Park Alpha 2
- STILL TODO: - This build is not localized yet. - Theme issues not yet resolved. - Building on ppc platforms is busted, disable them for now. - Forward port all remaining patches.
Diffstat (limited to 'firefox-mozconfig')
-rwxr-xr-xfirefox-mozconfig22
1 files changed, 22 insertions, 0 deletions
diff --git a/firefox-mozconfig b/firefox-mozconfig
new file mode 100755
index 0000000..2ffecbc
--- /dev/null
+++ b/firefox-mozconfig
@@ -0,0 +1,22 @@
+. $topsrcdir/browser/config/mozconfig
+
+ac_add_options --with-system-nspr
+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 --disable-installer
+ac_add_options --enable-optimize="$RPM_OPT_FLAGS"
+ac_add_options --enable-xinerama
+ac_add_options --enable-default-toolkit=gtk2
+ac_add_options --disable-xprint
+ac_add_options --disable-strip
+ac_add_options --enable-pango
+
+export BUILD_OFFICIAL=1
+export MOZILLA_OFFICIAL=1
+mk_add_options BUILD_OFFICIAL=1
+mk_add_options MOZILLA_OFFICIAL=1
+
bgstack15