src/liboping/liboping.c: Fix a problem with strict aliasing.
[collectd.git] / build.sh
index 89d3a68..3822c2b 100755 (executable)
--- a/build.sh
+++ b/build.sh
@@ -1,9 +1,54 @@
 #! /bin/sh
 
+GLOBAL_ERROR_INDICATOR=0
+
+check_for_application ()
+{
+       for PROG in "$@"
+       do
+               if ! which "$PROG" >/dev/null 2>&1; then
+                       cat >&2 <<EOF
+WARNING: \`$PROG' not found!
+    Please make sure that \`$PROG' is installed and is in one of the
+    directories listed in the PATH environment variable.
+EOF
+                       GLOBAL_ERROR_INDICATOR=1
+               fi
+       done
+}
+
+check_for_application lex yacc autoheader aclocal automake autoconf
+
+# Actually we don't need the pkg-config executable, but we need the M4 macros.
+# We check for `pkg-config' here and hope that M4 macros will then be
+# available, too.
+check_for_application pkg-config
+
+libtoolize=""
+if which libtoolize >/dev/null 2>&1
+then
+       libtoolize=libtoolize
+else if which glibtoolize >/dev/null 2>&1
+then
+       libtoolize=glibtoolize
+else
+       cat >&2 <<EOF
+WARNING: Neither \`libtoolize' nor \`glibtoolize' have been found!
+    Please make sure that one of them is installed and is in one of the
+    directories listed in the PATH environment variable.
+EOF
+       GLOBAL_ERROR_INDICATOR=1
+fi; fi
+
+if test "$GLOBAL_ERROR_INDICATOR" != "0"
+then
+       exit 1
+fi
+
 set -x
 
 autoheader \
 && aclocal \
-&& libtoolize --ltdl --copy --force \
+&& $libtoolize --ltdl --copy --force \
 && automake --add-missing --copy \
 && autoconf