diff options
-rwxr-xr-x | autogen.sh | 11 |
1 files changed, 10 insertions, 1 deletions
@@ -1,6 +1,15 @@ #!/bin/sh -libtoolize --automake + +test -f ChangeLog || touch ChangeLog + +if libtoolize --version | grep GNU > /dev/null 2>&1 ; then + libtoolize=libtoolize +else + libtoolize=glibtoolize +fi + +$libtoolize --automake aclocal $ACLOCAL_AMFLAGS autoheader automake --add-missing |