2004-11-24 01:22:58 +03:00
|
|
|
mk_add_options MOZ_CO_PROJECT=macbrowser
|
|
|
|
ac_add_options --enable-application=macbrowser
|
2004-10-25 22:04:44 +04:00
|
|
|
ac_add_options --enable-default-toolkit=cocoa
|
|
|
|
ac_add_options --disable-tests
|
|
|
|
ac_add_options --disable-mailnews
|
|
|
|
ac_add_options --disable-ldap
|
|
|
|
ac_add_options --disable-accessibility
|
|
|
|
ac_add_options --disable-jsd
|
|
|
|
ac_add_options --disable-mathml
|
2005-06-02 03:56:54 +04:00
|
|
|
ac_add_options --without-system-zlib
|
2004-10-25 22:04:44 +04:00
|
|
|
ac_add_options --enable-single-profile
|
2005-10-26 19:03:34 +04:00
|
|
|
|
|
|
|
# Pick the right SDK depending on the CPU. This doesn't even pretend to be
|
|
|
|
# cross-friendly, but neither do other parts of the Camino build, and it's
|
|
|
|
# overridden easily enough.
|
|
|
|
case `/usr/bin/uname -p` in
|
|
|
|
powerpc*)
|
|
|
|
ac_add_options --with-macos-sdk=/Developer/SDKs/MacOSX10.2.8.sdk
|
|
|
|
;;
|
|
|
|
i*86*)
|
|
|
|
ac_add_options --with-macos-sdk=/Developer/SDKs/MacOSX10.4u.sdk
|
|
|
|
;;
|
|
|
|
esac
|