summaryrefslogtreecommitdiffstats
path: root/bootstrap.sh
diff options
context:
space:
mode:
authorSebastien Estienne <sebastien.estienne@gmail.com>2005-10-19 15:17:42 +0000
committerSebastien Estienne <sebastien.estienne@gmail.com>2005-10-19 15:17:42 +0000
commitc63e8024d33ad0313389dba4f1f22ca99c5eee71 (patch)
tree6f3166fb463d7ede4f7eb4d3138fae816270723d /bootstrap.sh
parent558f1f36b83b04d19c3e26acdb699236484c96d5 (diff)
* bootstrap for MacOsX tiger
git-svn-id: file:///home/lennart/svn/public/avahi/trunk@825 941a03a8-eaeb-0310-b9a0-b1bbd8fe43fe
Diffstat (limited to 'bootstrap.sh')
-rwxr-xr-xbootstrap.sh18
1 files changed, 16 insertions, 2 deletions
diff --git a/bootstrap.sh b/bootstrap.sh
index 62422ea..62d1e31 100755
--- a/bootstrap.sh
+++ b/bootstrap.sh
@@ -21,9 +21,23 @@
FLAGS="--sysconfdir=/etc --localstatedir=/var --enable-tests --enable-compat-howl --enable-compat-libdns_sd"
# Feel free to add your own custom flags in here -Lathiat
+
+case "$MACHTYPE" in
+ powerpc-apple-darwin8.0)
+ export LIBTOOLIZE=/opt/local/bin/glibtoolize
+ export CFLAGS="-I/opt/local/include"
+ export LDFLAGS="-L/opt/local/lib"
+ export PKG_CONFIG_PATH="/opt/local/lib/pkgconfig"
+ FLAGS="$FLAGS --disable-monodoc --disable-mono --disable-qt3 --disable-qt4 --disable-python --disable-glib --disable-gtk --disable-xmltoman --disable-dbus --prefix=/opt --with-distro=none"
+ ;;
+esac
+
case "$USER" in
- lathiat|sebest)
- FLAGS="$FLAGS --disable-monodoc"
+ lathiat)
+ FLAGS="$FLAGS --disable-monodoc"
+ ;;
+ sebest)
+ FLAGS="$FLAGS --disable-monodoc --disable-mono --disable-qt3 --disable-qt4"
;;
esac