diff --git a/autogen.sh b/autogen.sh index ba187d37..d669a37b 100755 --- a/autogen.sh +++ b/autogen.sh @@ -9,7 +9,7 @@ test -z "$srcdir" && srcdir=. exit 1 } -aclocal --install || exit 1 +aclocal --install -I m4 || exit 1 glib-gettextize --force --copy || exit 1 intltoolize --force --copy --automake || exit 1 autoreconf --force --install -Wno-portability || exit 1 diff --git a/configure.ac b/configure.ac index 7b333fcc..485a54fe 100644 --- a/configure.ac +++ b/configure.ac @@ -2,7 +2,7 @@ dnl Process this file with autoconf to produce a configure script. AC_INIT([HexChat],[2.11.0]) -AC_PREREQ([2.69]) +AC_PREREQ([2.64]) AC_COPYRIGHT([Copyright (C) 1998-2010 Peter Zelezny]) AC_CONFIG_HEADERS([config.h]) @@ -10,7 +10,7 @@ AC_CONFIG_SRCDIR([configure.ac]) AC_CONFIG_MACRO_DIR([m4]) -AM_INIT_AUTOMAKE([1.11 dist-bzip2 subdir-objects no-define foreign]) +AM_INIT_AUTOMAKE([1.11.1 dist-bzip2 subdir-objects no-define foreign]) AM_SILENT_RULES([yes]) AX_IS_RELEASE([minor-version]) @@ -24,8 +24,8 @@ AC_PROG_CPP AC_PROG_OBJC AM_PROG_AS AM_PROG_AR -AC_DISABLE_STATIC([]) -LT_INIT +LT_PREREQ([2.2.6]) +LT_INIT([disable-static]) AC_PATH_PROG(MDTOOL, mdtool, no) dnl -----------------------------------------------------------