From bba4b7badb55504b71beb9bc24ef2d071bbdba09 Mon Sep 17 00:00:00 2001 From: Misty De Meo Date: Wed, 22 May 2013 09:55:19 -0500 Subject: [PATCH] Add basic autogen.sh Since the buildsystem is now automake based, and a simple autoreconf doesn't work, this adds a basic autogen.sh to automate building the configure script. --- autogen.sh | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100755 autogen.sh diff --git a/autogen.sh b/autogen.sh new file mode 100755 index 0000000..ba4c978 --- /dev/null +++ b/autogen.sh @@ -0,0 +1,15 @@ +#!/bin/sh + +if `which libtoolize` ; then + libtoolize +# on, e.g., Darwin +elif `which glibtoolize` ; then + glibtoolize +else + echo "libtoolize not found!" + exit 1 +fi + +aclocal +autoconf +automake --add-missing