blob: 884a6b5fd876c65e38e93db2922e215bd1d81fc4 [file] [log] [blame]
dnl run autogen.sh to generate the configure script.
AC_PREREQ(2.59)
AC_INIT(wodenc-src, 0.94)
AC_CANONICAL_SYSTEM
AM_CONFIG_HEADER(config.h)
AM_INIT_AUTOMAKE([tar-ustar])
AC_PREFIX_DEFAULT(/usr/local/wodenc)
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)
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])
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 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)
WRAPPER_DIR=""
;;
*)
AC_MSG_RESULT(yes)
WRAPPER_DIR="libxml2"
;;
esac ],
AC_MSG_RESULT(yes)
WRAPPER_DIR="libxml2"
)
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)
;;
*)
AC_MSG_RESULT(yes)
WRAPPER_DIR="guththila"
;;
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
yes)
AC_MSG_RESULT(yes)
TESTDIR="test"
;;
*)
AC_MSG_RESULT(no)
TESTDIR=""
;;
esac ],
AC_MSG_RESULT(no)
TESTDIR=""
)
AC_CHECK_LIB(cutest, CuTestInit, [], [TESTDIR=""])
AC_MSG_CHECKING(To Use Xml Schema. This is a compulsory module to build Woden C)
AC_ARG_WITH(axis2_xml_schema,
[ --with-axis2_xml_schema[=PATH] use axis2_xml_schema.],
[ case "$withval" in
no)
AC_MSG_RESULT(no)
;;
*)
AC_MSG_RESULT(yes)
dnl Find axis2_xml_schema include dir in the path
if test -d $withval; then
axis2_xml_schemainc="-I$withval"
dnl else find the axis2_xml_schema include dir in $(AXIS2C_HOME)/include
elif test -d '$(AXIS2C_HOME)/include'; then
axis2_xml_schemainc="-I$(AXIS2C_HOME)/include"
else
AC_MSG_ERROR(could not find axis2_xml_schema. stop)
fi
;;
esac ],
AC_MSG_RESULT(no)
)
AXIOMINC=$axiominc
UTILINC=$axis2_utilinc
XMLSCHEMAINC=$axis2_xml_schemainc
AC_SUBST(AXIOMINC)
AC_SUBST(UTILINC)
AC_SUBST(XMLSCHEMAINC)
AC_SUBST(TESTDIR)
AC_SUBST(WRAPPER_DIR)
AC_CONFIG_FILES([Makefile \
src/Makefile \
src/util/Makefile \
src/schema/Makefile \
src/xml/Makefile \
src/types/Makefile \
src/wsdl/Makefile \
src/wsdl20/Makefile \
src/wsdl20/xml/Makefile \
src/wsdl20/extensions/Makefile \
src/wsdl20/extensions/soap/Makefile \
src/wsdl10/Makefile \
src/wsdl10/xml/Makefile \
src/wsdl10/extensions/Makefile \
src/wsdl10/extensions/soap/Makefile \
src/builder/Makefile \
src/builder/wsdl10/Makefile \
test/Makefile
])
AC_OUTPUT