diff options
author | Slávek Banko <slavek.banko@axis.cz> | 2013-05-24 01:25:19 +0200 |
---|---|---|
committer | Slávek Banko <slavek.banko@axis.cz> | 2013-05-24 01:25:19 +0200 |
commit | 65ecce459d54e772303052de50d08557ba9cc7ed (patch) | |
tree | aae7ca2bd8ef3b1be00e0553f3b127d2c60216a3 | |
parent | 307fab5fdad542247fa11a418be0e9635f4b5ebf (diff) | |
download | admin-65ecce459d54e772303052de50d08557ba9cc7ed.tar.gz admin-65ecce459d54e772303052de50d08557ba9cc7ed.zip |
Fix build with automake 1.13
-rw-r--r-- | configure.in.min | 2 | ||||
-rw-r--r-- | cvs.sh | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/configure.in.min b/configure.in.min index a8a4292..9e52090 100644 --- a/configure.in.min +++ b/configure.in.min @@ -41,7 +41,7 @@ AM_INIT_AUTOMAKE(@MODULENAME@, @VERSION@) dnl searches for some needed programs KDE_SET_PREFIX dnl generate the config header -AM_CONFIG_HEADER(config.h) dnl at the distribution this done +AC_CONFIG_HEADER(config.h) dnl at the distribution this done dnl Checks for programs. AC_PROG_CC @@ -56,7 +56,7 @@ esac AUTOMAKE_STRING=`$AUTOMAKE --version | head -n 1` required_automake_version="1.6.1 or newer" case $AUTOMAKE_STRING in - automake*1.6.* | automake*1.7* | automake*1.8* | automake*1.9* | automake*1.10* | automake*1.11* | automake*1.12*) + automake*1.6.* | automake*1.7* | automake*1.8* | automake*1.9* | automake*1.10* | automake*1.11* | automake*1.12* | automake*1.13* ) echo "*** $AUTOMAKE_STRING found." UNSERMAKE=no ;; @@ -116,7 +116,7 @@ $ACLOCAL $ACLOCALFLAGS || exit 1 echo "*** Creating configure" call_and_fix_autoconf -if egrep "^AM_CONFIG_HEADER" configure.in >/dev/null 2>&1; then +if egrep "^A[MC]_CONFIG_HEADER" configure.in >/dev/null 2>&1; then echo "*** Creating config.h template" $AUTOHEADER || exit 1 touch config.h.in @@ -172,7 +172,7 @@ if test -r configure.in.in; then fi fi $ACLOCAL $ACLOCALFLAGS -if egrep "^AM_CONFIG_HEADER" configure.in >/dev/null 2>&1; then +if egrep "^A[MC]_CONFIG_HEADER" configure.in >/dev/null 2>&1; then echo "*** Creating config.h template" $AUTOHEADER || exit 1 touch config.h.in |