Code

check_host: Allocate a large-enough buffer for the host table.
[nagiosplug.git] / tools / setup
index 8a7b6ceed64977a91573dbb024031e420efd9450..6da3f674837f6b7fd787a09560e64a4b725d5845 100755 (executable)
@@ -1,7 +1,6 @@
 #!/bin/sh
 #
 # autogen.sh glue from CMU Cyrus IMAP
-# $Id$
 #
 # Requires: automake, autoconf, dpkg-dev
 # set -e
@@ -18,8 +17,18 @@ else
        echo Found GNU Make at $MAKE ... good.
 fi
 
-autopoint --force
-aclocal -I lib
+# This bit is to fix SF's compile server as libtool not installed by default
+extra=""
+if test -d $HOME/share/aclocal ; then
+       extra="-I $HOME/share/aclocal"
+fi
+
+# This file will be automagically re-generated of present - still looks
+# better than having a versioned file change based on automake version
+touch build-aux/mkinstalldirs
+
+aclocal -I gl/m4 -I m4 $extra
+#libtoolize --force --copy
 autoheader
 automake --add-missing --force-missing --copy
 autoconf
@@ -41,5 +50,5 @@ else
 fi
 
 if [ $docbook = 1 ] ; then
-       cd doc && make
+       ( cd doc && make )
 fi