diff options
author | Michele Campus <fci1908@gmail.com> | 2015-06-20 18:35:04 +0200 |
---|---|---|
committer | Michele Campus <fci1908@gmail.com> | 2015-06-20 18:35:04 +0200 |
commit | 37912b6045153175c76f91c570efbca0775f3dae (patch) | |
tree | 44e4e9ea318add8ed678b2417ca763e93e552769 /autogen.sh | |
parent | d04979402c200a9448789582685c6df4d5f364eb (diff) |
fix quic.c and add libtoolize option to autogen.sh
Diffstat (limited to 'autogen.sh')
-rwxr-xr-x | autogen.sh | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/autogen.sh b/autogen.sh index a1a7b8817..6d4876e5f 100755 --- a/autogen.sh +++ b/autogen.sh @@ -6,6 +6,7 @@ AUTOCONF=$(which autoconf) AUTOMAKE=$(which automake) LIBTOOL=$(which libtool) +LIBTOOLIZE=$(which libtoolize) AUTORECONF=$(which autoreconf) if test -z $AUTOCONF; then @@ -18,8 +19,8 @@ if test -z $AUTOMAKE; then exit fi -if test -z $LIBTOOL; then - echo "libtool is missing: please install it and try again" +if test -z $LIBTOOL && test -z $LIBTOOLIZE ; then + echo "libtool and libtoolize is missing: please install it and try again" exit fi |