Fix build on all platforms that doesn't have memrchr() function,
[monky] / autogen.sh
index 3061df7..b43264f 100755 (executable)
@@ -1,6 +1,27 @@
 #!/bin/sh
+# $Id$
 
-aclocal-1.9
-autoheader-2.59
-automake-1.9 -a
-autoconf-2.59
+# autogen.sh
+# optional $1 = full path to svn working copy or "clean"
+
+AUTOCONF=${AUTOCONF:-autoconf}
+AUTOMAKE=${AUTOMAKE:-automake}
+ACLOCAL=${ACLOCAL:-aclocal}
+AUTOHEADER=${AUTOHEADER:-autoheader}
+LIBTOOLIZE=${LIBTOOLIZE:-libtoolize}
+
+if [ "$1" == "clean" ]; then
+    /bin/rm -f configure.ac
+    exit 0
+fi
+
+# substitute svn revision
+revision=`LC_ALL=C svn info $1 | awk '/^Revision: / {printf "%05d\n", $2}'`
+sed -e "s/@REVISION@/${revision}/g" \
+    < "configure.ac.in" > "configure.ac"
+
+echo Running $ACLOCAL ... && $ACLOCAL
+echo Running $LIBTOOLIZE --force --copy ... && $LIBTOOLIZE --force --copy
+echo Running $AUTOHEADER ... && $AUTOHEADER
+echo Running $AUTOMAKE --add-missing --copy --gnu ... && $AUTOMAKE --add-missing --copy --gnu
+echo Running $AUTOCONF ... && $AUTOCONF