]> git.meshlink.io Git - catta/blobdiff - bootstrap.sh
let core-browse example look for the type used by core-publish example
[catta] / bootstrap.sh
index e6323730dc13167a82aa5ad3ac2c73f4b51e0f0f..2b5c56f6a19367c94b554227eaaf4ecf085b7e28 100755 (executable)
@@ -1,5 +1,4 @@
 #!/bin/sh
-# $Id$
 
 # This file is part of avahi.
 #
@@ -18,9 +17,7 @@
 # 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"
-
-# Feel free to add your own custom flags in here -Lathiat
+FLAGS="--sysconfdir=/etc --localstatedir=/var --enable-tests"
 
 case `uname -s` in
     Darwin)
@@ -28,7 +25,7 @@ case `uname -s` in
     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 --disable-manpages"
+    FLAGS="$FLAGS --prefix=/opt/local"
     ;;
     FreeBSD)
     cp /usr/local/share/aclocal/libtool15.m4 common
@@ -37,19 +34,18 @@ case `uname -s` in
     export CFLAGS="-I/usr/local/include"
     export LDFLAGS="-L/usr/local/lib"
     export PKG_CONFIG_PATH="/usr/local/lib/pkgconfig"
-    FLAGS="$FLAGS --disable-monodoc --disable-mono --disable-qt3 --disable-qt4 --disable-xmltoman --prefix=/opt --with-distro=none --disable-python --disable-dbus --disable-glib --disable-gtk --disable-manpages"
-    ;;
-    Linux)
+    FLAGS="$FLAGS --prefix=/opt"
     ;;
-esac
-
-case "$USER" in
-    lathiat)
-    FLAGS="$FLAGS --disable-monodoc"
+    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
 
-CFLAGS="$CFLAGS -g -O0" exec ./autogen.sh $FLAGS "$@"
+export CFLAGS="$CFLAGS -g -O0"
+sh autogen.sh && ./configure $FLAGS "$@"