all repos — fluxbox @ 05f8009e4537c12f7a6c5cacb980ceb6d168943e

custom fork of the fluxbox windowmanager

checks for autoconf version
fluxgen fluxgen
commit

05f8009e4537c12f7a6c5cacb980ceb6d168943e

parent

4d67b9d3d76b94a898a95a9e4e73d91489047b5e

1 files changed, 11 insertions(+), 1 deletions(-)

jump to
M autogen.shautogen.sh

@@ -1,10 +1,20 @@

#!/bin/sh +required_version=52 +echo -n "Checking for autoconf version >= "${required_version}"......" +ac_version=`autoconf --version|head -n 1|cut -d . -f 2` +if [ ${ac_version} -lt ${required_version} ]; then + echo "No." + echo "You need to install autoconf version >= "${required_version} + exit 1 +fi +echo "Ok." + libtoolize --copy --force --automake || exit 1 rm -f config.cache aclocal autoheader automake -a autoconf - +echo "Done."