From 1a8f447d0bb116d460ca79bfc26d63a8ed8e8a6f Mon Sep 17 00:00:00 2001 From: shankar Date: Tue, 23 Feb 2010 12:24:09 +0000 Subject: fixing issue 1436 git-svn-id: http://svn.apache.org/repos/asf/axis/axis2/c/core/trunk@915300 13f79535-47bb-0310-9956-ffa450edef68 --- axiom/configure.ac | 18 +++++++++--------- configure.ac | 18 +++++++++--------- guththila/configure.ac | 18 +++++++++--------- neethi/configure.ac | 14 +++++++------- samples/configure.ac | 18 +++++++++--------- tools/md5/configure.ac | 10 +++++----- tools/tcpmon/configure.ac | 10 +++++----- util/configure.ac | 18 +++++++++--------- 8 files changed, 62 insertions(+), 62 deletions(-) diff --git a/axiom/configure.ac b/axiom/configure.ac index 6802fb9..3795342 100644 --- a/axiom/configure.ac +++ b/axiom/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(axis2_axiom-src, 1.6.0) -AC_CANONICAL_SYSTEM -AM_CONFIG_HEADER(config.h) +AC_INIT([axis2_axiom-src],[1.6.0]) +AC_CANONICAL_TARGET +AC_CONFIG_HEADERS([config.h]) AM_INIT_AUTOMAKE AC_PREFIX_DEFAULT(/usr/local/axis2_axiom) @@ -12,26 +12,26 @@ 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) AC_MSG_CHECKING(for GNUC varargs macros) -AC_TRY_COMPILE([],[ +AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[]], [[ int a(int p1, int p2, int p3); #define call_a(params...) a(1,params) call_a(2,3); -],axis2c_have_gnuc_varargs=yes,axis2c_have_gnuc_varargs=no) +]])],[axis2c_have_gnuc_varargs=yes],[axis2c_have_gnuc_varargs=no]) AC_MSG_RESULT($axis2c_have_gnuc_varargs) dnl Output varargs tests diff --git a/configure.ac b/configure.ac index 8393e3d..bfcbaed 100644 --- a/configure.ac +++ b/configure.ac @@ -1,9 +1,9 @@ dnl run autogen.sh to generate the configure script. -AC_PREREQ(2.59) +AC_PREREQ(2.63) -AC_INIT(axis2c-src, 1.6.0) -AC_CANONICAL_SYSTEM -AM_CONFIG_HEADER(config.h) +AC_INIT([axis2c-src],[1.6.0]) +AC_CANONICAL_TARGET +AC_CONFIG_HEADERS([config.h]) AM_INIT_AUTOMAKE([tar-ustar]) AC_PREFIX_DEFAULT(/usr/local/axis2c) @@ -11,7 +11,7 @@ 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 @@ -19,19 +19,19 @@ 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) AC_MSG_CHECKING(for GNUC varargs macros) -AC_TRY_COMPILE([],[ +AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[]], [[ int a(int p1, int p2, int p3); #define call_a(params...) a(1,params) call_a(2,3); -],axis2c_have_gnuc_varargs=yes,axis2c_have_gnuc_varargs=no) +]])],[axis2c_have_gnuc_varargs=yes],[axis2c_have_gnuc_varargs=no]) AC_MSG_RESULT($axis2c_have_gnuc_varargs) dnl Output varargs tests diff --git a/guththila/configure.ac b/guththila/configure.ac index 5a6951b..a097eaf 100644 --- a/guththila/configure.ac +++ b/guththila/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(guththilac-src, 1.6.0) -AC_CANONICAL_SYSTEM -AM_CONFIG_HEADER(config.h) +AC_INIT([guththilac-src],[1.6.0]) +AC_CANONICAL_TARGET +AC_CONFIG_HEADERS([config.h]) dnl AM_INIT_AUTOMAKE([tar-ustar]) AM_INIT_AUTOMAKE AC_PREFIX_DEFAULT(/usr/local/guththila) @@ -15,26 +15,26 @@ 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) AC_MSG_CHECKING(for GNUC varargs macros) -AC_TRY_COMPILE([],[ +AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[]], [[ int a(int p1, int p2, int p3); #define call_a(params...) a(1,params) call_a(2,3); -],axis2c_have_gnuc_varargs=yes,axis2c_have_gnuc_varargs=no) +]])],[axis2c_have_gnuc_varargs=yes],[axis2c_have_gnuc_varargs=no]) AC_MSG_RESULT($axis2c_have_gnuc_varargs) dnl Output varargs tests 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. diff --git a/samples/configure.ac b/samples/configure.ac index 734e88c..644d35e 100644 --- a/samples/configure.ac +++ b/samples/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(axis2c-sample-src, 1.6.0) -AC_CANONICAL_SYSTEM -AM_CONFIG_HEADER(config.h) +AC_INIT([axis2c-sample-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,26 +14,26 @@ 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) AC_MSG_CHECKING(for GNUC varargs macros) -AC_TRY_COMPILE([],[ +AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[]], [[ int a(int p1, int p2, int p3); #define call_a(params...) a(1,params) call_a(2,3); -],axis2c_have_gnuc_varargs=yes,axis2c_have_gnuc_varargs=no) +]])],[axis2c_have_gnuc_varargs=yes],[axis2c_have_gnuc_varargs=no]) AC_MSG_RESULT($axis2c_have_gnuc_varargs) dnl Output varargs tests diff --git a/tools/md5/configure.ac b/tools/md5/configure.ac index 213ab14..8702bdb 100644 --- a/tools/md5/configure.ac +++ b/tools/md5/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(md5-src, 1.6.0) -AC_CANONICAL_SYSTEM -AM_CONFIG_HEADER(config.h) +AC_INIT([md5-src],[1.6.0]) +AC_CANONICAL_TARGET +AC_CONFIG_HEADERS([config.h]) AM_INIT_AUTOMAKE(AC_PACKAGE_NAME, AC_PACKAGE_VERSION) AC_PREFIX_DEFAULT(/usr/local/md5) @@ -12,7 +12,7 @@ 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 diff --git a/tools/tcpmon/configure.ac b/tools/tcpmon/configure.ac index 5619c87..51e24d3 100644 --- a/tools/tcpmon/configure.ac +++ b/tools/tcpmon/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(tcpmon-src, 1.6.0) -AC_CANONICAL_SYSTEM -AM_CONFIG_HEADER(config.h) +AC_INIT([tcpmon-src],[1.6.0]) +AC_CANONICAL_TARGET +AC_CONFIG_HEADERS([config.h]) AM_INIT_AUTOMAKE(AC_PACKAGE_NAME, AC_PACKAGE_VERSION) AC_PREFIX_DEFAULT(/usr/local/tcpmon) @@ -12,7 +12,7 @@ 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 diff --git a/util/configure.ac b/util/configure.ac index 0e1ed19..5d3a3d6 100644 --- a/util/configure.ac +++ b/util/configure.ac @@ -1,36 +1,36 @@ dnl run autogen.sh to generate the configure script. -AC_PREREQ(2.59) +AC_PREREQ(2.63) -AC_INIT(axis2_util-src, 1.6.0) -AC_CANONICAL_SYSTEM -AM_CONFIG_HEADER(config.h) +AC_INIT([axis2_util-src],[1.6.0]) +AC_CANONICAL_TARGET +AC_CONFIG_HEADERS([config.h]) AM_INIT_AUTOMAKE AC_PREFIX_DEFAULT(/usr/local/axis2_util) dnl Checks for programs. AC_PROG_CC 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) AC_MSG_CHECKING(for GNUC varargs macros) -AC_TRY_COMPILE([],[ +AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[]], [[ int a(int p1, int p2, int p3); #define call_a(params...) a(1,params) call_a(2,3); -],axis2c_have_gnuc_varargs=yes,axis2c_have_gnuc_varargs=no) +]])],[axis2c_have_gnuc_varargs=yes],[axis2c_have_gnuc_varargs=no]) AC_MSG_RESULT($axis2c_have_gnuc_varargs) dnl Output varargs tests -- cgit v1.1-32-gdbae