blob: da33d01fb3f48d9c9e6ec61ce1dbb143a55e7411 [file] [log] [blame]
dnl run autogen.sh to generate the configure script.
AC_PREREQ(2.59)
AC_INIT(axis2_axiom-src, 0.93)
AC_CANONICAL_SYSTEM
AM_CONFIG_HEADER(config.h)
AM_INIT_AUTOMAKE([tar-ustar])
AC_PREFIX_DEFAULT(/usr/local/axis2_axiom)
dnl Checks for programs.
AC_PROG_CC
AC_PROG_CXX
AC_PROG_CPP
AM_PROG_LIBTOOL
AC_PROG_INSTALL
AC_PROG_LN_S
AC_PROG_MAKE_SET
dnl Checks for libraries.
AC_CHECK_LIB(dl, dlopen)
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"
fi
LDFLAGS="-lpthread"
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
dnl Checks for library functions.
AC_FUNC_MALLOC
AC_FUNC_REALLOC
#AC_CHECK_FUNCS([memmove])
AC_MSG_CHECKING(whether to build guththila xml parser library)
AC_ARG_ENABLE(guththila, [ --enable-guththila build guththila xml parser library wrapper. default=no],
[ case "${enableval}" in
no)
AC_MSG_RESULT(no)
GUTHTHILA_DIR=""
;;
*)
AC_MSG_RESULT(yes)
GUTHTHILA_DIR="guththila"
;;
esac ],
AC_MSG_RESULT(no)
GUTHTHILA_DIR=""
)
AC_MSG_CHECKING(whether to build libxml2 xml parser library)
AC_ARG_ENABLE(libxml2, [ --enable-libxml2 build libxml2 xml parser library wrapper. default=yes],
[ case "${enableval}" in
no)
AC_MSG_RESULT(no)
LIBXML2_DIR=""
;;
*)
AC_MSG_RESULT(yes)
LIBXML2_DIR="libxml2"
;;
esac ],
AC_MSG_RESULT(yes)
LIBXML2_DIR="libxml2"
)
AC_MSG_CHECKING(To Use Axis2 C Util. This is a compulsory module to build Axis2 C)
AC_ARG_WITH(axis2_util,
[ --with-axis2_util[=PATH] use axis2_util.],
[ case "$withval" in
no)
AC_MSG_RESULT(no)
;;
*)
AC_MSG_RESULT(yes)
dnl Find axis2_util include dir in the path
if test -d $withval; then
axis2_utilinc="-I$withval"
dnl else find the axis2_util include dir in $(AXIS2C_HOME)/include
elif test -d '$(AXIS2C_HOME)/include'; then
axis2_utilinc="-I$(AXIS2C_HOME)/include"
else
AC_MSG_ERROR(could not find axis2_util. stop)
fi
;;
esac ],
AC_MSG_RESULT(no)
)
AC_MSG_CHECKING(whether to build tests)
AC_ARG_ENABLE(tests, [ --enable-tests build tests. default=no],
[ case "${enableval}" in
no)
AC_MSG_RESULT(no)
TESTDIR=""
;;
*)
AC_MSG_RESULT(yes)
TESTDIR="test"
;;
esac ],
AC_MSG_RESULT(no)
TESTDIR=""
)
PKG_CHECK_MODULES(LIBXML2, libxml-2.0)
CFLAGS="$CFLAGS $LIBXML2_CFLAGS $GUTHTHILA_CFLAGS"
UTILINC=$axis2_utilinc
AC_SUBST(UTILINC)
AC_SUBST(LIBXML2_CFLAGS)
AC_SUBST(LIBXML2_LIBS)
AC_SUBST(LIBXML2_DIR)
AC_SUBST(GUTHTHILA_DIR)
AC_SUBST(GUTHTHILA_LIBS)
AC_SUBST(TESTDIR)
AC_CONFIG_FILES([Makefile \
src/Makefile \
src/parser/Makefile \
src/parser/libxml2/Makefile \
src/soap/Makefile \
src/om/Makefile \
src/util/Makefile \
src/attachments/Makefile \
test/Makefile \
test/om/Makefile \
test/soap/Makefile \
test/unit/Makefile \
test/unit/om/Makefile\
include/Makefile
])
AC_OUTPUT