summaryrefslogtreecommitdiffstats
path: root/neethi
diff options
context:
space:
mode:
Diffstat (limited to 'neethi')
-rw-r--r--neethi/configure.ac14
1 files changed, 7 insertions, 7 deletions
diff --git a/neethi/configure.ac b/neethi/configure.ac
index f3a317c..45cada7 100644
--- a/neethi/configure.ac
+++ b/neethi/configure.ac
@@ -1,10 +1,10 @@
dnl run autogen.sh to generate the configure script.
-AC_PREREQ(2.59)
+AC_PREREQ(2.63)
-AC_INIT(neethi-src, 1.6.0)
-AC_CANONICAL_SYSTEM
-AM_CONFIG_HEADER(config.h)
+AC_INIT([neethi-src],[1.6.0])
+AC_CANONICAL_TARGET
+AC_CONFIG_HEADERS([config.h])
dnl AM_INIT_AUTOMAKE([tar-ustar])
AM_INIT_AUTOMAKE
m4_ifdef([_A][M_PROG_TAR],[_A][M_SET_OPTION([tar-ustar])])
@@ -14,18 +14,18 @@ dnl Checks for programs.
AC_PROG_CC
AC_PROG_CXX
AC_PROG_CPP
-AC_PROG_LIBTOOL
+LT_INIT
AC_PROG_INSTALL
AC_PROG_LN_S
AC_PROG_MAKE_SET
dnl check for flavours of varargs macros (test from GLib)
AC_MSG_CHECKING(for ISO C99 varargs macros in C)
-AC_TRY_COMPILE([],[
+AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[]], [[
int a(int p1, int p2, int p3);
#define call_a(...) a(1,__VA_ARGS__)
call_a(2,3);
-],axis2c_have_iso_c_varargs=yes,axis2c_have_iso_c_varargs=no)
+]])],[axis2c_have_iso_c_varargs=yes],[axis2c_have_iso_c_varargs=no])
AC_MSG_RESULT($axis2c_have_iso_c_varargs)
dnl Checks for libraries.