зеркало из https://github.com/mozilla/pjs.git
17 строки
557 B
Plaintext
17 строки
557 B
Plaintext
mk_add_options MOZ_CO_PROJECT=camino
|
|
ac_add_options --enable-application=camino
|
|
|
|
# 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.3.9.sdk
|
|
ac_add_options --enable-macos-target=10.3
|
|
;;
|
|
i*86*)
|
|
ac_add_options --with-macos-sdk=/Developer/SDKs/MacOSX10.4u.sdk
|
|
ac_add_options --enable-macos-target=10.4
|
|
;;
|
|
esac
|