X-Git-Url: http://git.meshlink.io/?a=blobdiff_plain;f=bootstrap.sh;h=ada993ffa8bcd39c8dda51a9e710e4fbb114b2c2;hb=78a76e3d5f1d9cc81fd901b8e0263483a7c707d0;hp=62d1e316923d48674c770e59675ffc1c0ca6349f;hpb=c63e8024d33ad0313389dba4f1f22ca99c5eee71;p=catta diff --git a/bootstrap.sh b/bootstrap.sh index 62d1e31..ada993f 100755 --- a/bootstrap.sh +++ b/bootstrap.sh @@ -22,22 +22,40 @@ FLAGS="--sysconfdir=/etc --localstatedir=/var --enable-tests --enable-compat-how # 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-python --disable-glib --disable-gtk --disable-xmltoman --disable-dbus --prefix=/opt --with-distro=none" + 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) - FLAGS="$FLAGS --disable-monodoc" + lathiat|trentl) + FLAGS="$FLAGS --disable-qt4" ;; sebest) - FLAGS="$FLAGS --disable-monodoc --disable-mono --disable-qt3 --disable-qt4" + FLAGS="$FLAGS --disable-monodoc --enable-dbus=no --enable-mono=no --enable-qt3=no --enable-qt4=no --sysconfdir=/etc --localstatedir=/var --prefix=/usr --disable-manpages --disable-xmltoman" ;; esac