You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-dev@axis.apache.org by da...@apache.org on 2006/05/18 07:50:08 UTC

svn commit: r407466 - in /webservices/axis2/trunk/c/axiom: AUTHORS ChangeLog NEWS README configure.ac

Author: damitha
Date: Wed May 17 22:50:08 2006
New Revision: 407466

URL: http://svn.apache.org/viewvc?rev=407466&view=rev
Log:
New files added

Added:
    webservices/axis2/trunk/c/axiom/AUTHORS
    webservices/axis2/trunk/c/axiom/ChangeLog
    webservices/axis2/trunk/c/axiom/NEWS
    webservices/axis2/trunk/c/axiom/README
Modified:
    webservices/axis2/trunk/c/axiom/configure.ac

Added: webservices/axis2/trunk/c/axiom/AUTHORS
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/axiom/AUTHORS?rev=407466&view=auto
==============================================================================
    (empty)

Added: webservices/axis2/trunk/c/axiom/ChangeLog
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/axiom/ChangeLog?rev=407466&view=auto
==============================================================================
    (empty)

Added: webservices/axis2/trunk/c/axiom/NEWS
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/axiom/NEWS?rev=407466&view=auto
==============================================================================
    (empty)

Added: webservices/axis2/trunk/c/axiom/README
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/axiom/README?rev=407466&view=auto
==============================================================================
    (empty)

Modified: webservices/axis2/trunk/c/axiom/configure.ac
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/axiom/configure.ac?rev=407466&r1=407465&r2=407466&view=diff
==============================================================================
--- webservices/axis2/trunk/c/axiom/configure.ac (original)
+++ webservices/axis2/trunk/c/axiom/configure.ac Wed May 17 22:50:08 2006
@@ -2,7 +2,7 @@
 
 AC_PREREQ(2.59)
 
-AC_INIT(axis2_axiom-src, 0.91_pre)
+AC_INIT(axis2_axiom-src, 0.92)
 AC_CANONICAL_SYSTEM
 AM_CONFIG_HEADER(config.h)
 AM_INIT_AUTOMAKE(AC_PACKAGE_NAME, AC_PACKAGE_VERSION)
@@ -19,7 +19,10 @@
 
 dnl Checks for libraries.
 AC_CHECK_LIB(dl, dlopen)
+AC_CHECK_LIB(cutest, CuTestInit)
+AC_CHECK_LIB(z, inflate)
 
+#CFLAGS="$CFLAGS -ansi -Wall -D_LARGEFILE64_SOURCE -Wno-implicit-function-declaration"
 CFLAGS="$CFLAGS -D_LARGEFILE64_SOURCE"
 if test "$GCC" = "yes"; then
     CFLAGS="$CFLAGS -ansi -Wall -Wno-implicit-function-declaration"
@@ -29,6 +32,10 @@
 dnl Checks for header files.
 AC_HEADER_STDC
 AC_CHECK_HEADERS([stdio.h stdlib.h string.h])
+AC_CHECK_HEADERS([linux/if.h],[],[],
+[
+#include <sys/socket.h>
+])
 
 dnl Checks for typedefs, structures, and compiler characteristics.
 AC_C_CONST
@@ -38,13 +45,13 @@
 AC_FUNC_REALLOC
 #AC_CHECK_FUNCS([memmove])
 
+
 AC_CONFIG_FILES([Makefile \
     parser/Makefile \
     parser/libxml2/Makefile \
     soap/Makefile \
     om/Makefile \
     attachments/Makefile
-
     ])
     
 AC_OUTPUT