X-Git-Url: http://git.meshlink.io/?a=blobdiff_plain;f=bootstrap.sh;h=870053b1210d3b0480a1351be58b3acbb86a73c7;hb=6fd634e44fbef07cbe92954aa7ed356bbd75658b;hp=62422ea1356a2ff2491fc4988735b442432fe790;hpb=6f45b67dea3405347c26f3ecdf13e6fa5cd04f4b;p=catta diff --git a/bootstrap.sh b/bootstrap.sh index 62422ea..870053b 100755 --- a/bootstrap.sh +++ b/bootstrap.sh @@ -21,9 +21,41 @@ 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 `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 --prefix=/opt/local --disable-pygtk" + ;; + 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/ --with-distro=none --disable-python --disable-dbus --disable-glib --disable-gtk" + ;; + 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 --disable-monodoc --disable-mono --disable-qt3 --disable-qt4 --disable-xmltoman --prefix=/opt --with-distro=none --disable-python --disable-glib --disable-gtk --disable-manpages" + ;; + Linux) + ;; +esac + case "$USER" in - lathiat|sebest) - FLAGS="$FLAGS --disable-monodoc" + lathiat) + FLAGS="$FLAGS" + ;; + sebest) + FLAGS="$FLAGS --disable-monodoc --disable-mono --disable-qt3 --disable-qt4 --sysconfdir=/etc --localstatedir=/var --prefix=/usr --disable-manpages --disable-xmltoman" ;; esac