]> git.meshlink.io Git - catta/blobdiff - bootstrap.sh
remove unneeded and per-user cruft from bootstrap.sh
[catta] / bootstrap.sh
index 4c345662f6a0117b8c00d00cc84b8c57c80fcd51..490738e0914e1b39fdae6f3ceee49251e63f313e 100755 (executable)
@@ -1,5 +1,4 @@
 #!/bin/sh
-# $Id$
 
 # This file is part of avahi.
 #
 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
 # USA.
 
-FLAGS="--sysconfdir=/etc --localstatedir=/var --enable-tests --enable-compat-howl --enable-compat-libdns_sd"
+FLAGS="--sysconfdir=/etc --localstatedir=/var --enable-tests"
 
-# Feel free to add your own custom flags in here -Lathiat
-
-case "$MACHTYPE" in
-    powerpc-apple-darwin8.0)
+case `uname -s` in
+    Darwin)
     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-xmltoman --prefix=/opt --with-distro=none --disable-python"
+    FLAGS="$FLAGS --prefix=/opt/local"
     ;;
-esac
-
-case "$USER" in
-    lathiat)
-    FLAGS="$FLAGS --disable-monodoc"
+    FreeBSD)
+    cp /usr/local/share/aclocal/libtool15.m4 common
+    cp /usr/local/share/aclocal/pkg.m4 common
+    export LIBTOOLIZE=/usr/local/bin/libtoolize15
+    export CFLAGS="-I/usr/local/include"
+    export LDFLAGS="-L/usr/local/lib"
+    export PKG_CONFIG_PATH="/usr/local/lib/pkgconfig"
+    FLAGS="$FLAGS --prefix=/opt"
+    ;;
+    NetBSD)
+    export LIBTOOLIZE=libtoolize
+    export CFLAGS="-I/usr/pkg/include"
+    export LDFLAGS="-L/usr/pkg/lib"
+    export PKG_CONFIG_PATH="/usr/local/lib/pkgconfig"
+    FLAGS="$FLAGS --prefix=/opt"
     ;;
-    sebest)
-    FLAGS="$FLAGS --disable-monodoc --disable-mono --disable-qt3 --disable-qt4"
+    Linux)
     ;;
 esac