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.master
parent
5d472b508e
commit
bba4b7badb
1 changed files with 15 additions and 0 deletions
@ -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 |
||||
Loading…
Reference in new issue