From 0425aadc78680e53000fd0108b540d6eca048516 Mon Sep 17 00:00:00 2001 From: gmcdonald Date: Sat, 13 Feb 2010 01:32:03 +0000 Subject: Moving axis svn, part of TLP move INFRA-2441 git-svn-id: http://svn.apache.org/repos/asf/axis/axis2/c/core/trunk@909681 13f79535-47bb-0310-9956-ffa450edef68 --- tools/md5/configure.ac | 75 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 75 insertions(+) create mode 100644 tools/md5/configure.ac (limited to 'tools/md5/configure.ac') diff --git a/tools/md5/configure.ac b/tools/md5/configure.ac new file mode 100644 index 0000000..213ab14 --- /dev/null +++ b/tools/md5/configure.ac @@ -0,0 +1,75 @@ +dnl run autogen.sh to generate the configure script. + +AC_PREREQ(2.59) + +AC_INIT(md5-src, 1.6.0) +AC_CANONICAL_SYSTEM +AM_CONFIG_HEADER(config.h) +AM_INIT_AUTOMAKE(AC_PACKAGE_NAME, AC_PACKAGE_VERSION) +AC_PREFIX_DEFAULT(/usr/local/md5) + +dnl Checks for programs. +AC_PROG_CC +AC_PROG_CXX +AC_PROG_CPP +AC_PROG_LIBTOOL +AC_PROG_INSTALL +AC_PROG_LN_S +AC_PROG_MAKE_SET + + +CFLAGS="$CFLAGS -D_LARGEFILE64_SOURCE -g" +if test "$GCC" = "yes"; then + CFLAGS="$CFLAGS -ansi -Wall -Wno-implicit-function-declaration" +fi + +LDFLAGS="$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_CHECK_LIB(z, inflate) +dnl AC_CHECK_LIB(cutest, CuTestInit) + + +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="" +) + + +UTILINC=$axis2_utilinc + +AC_SUBST(UTILINC) +AC_SUBST(TESTDIR) +AC_SUBST(WRAPPER_DIR) + +CFLAGS="$CFLAGS" + +AC_CONFIG_FILES([Makefile \ + src/Makefile \ + ]) + +AC_OUTPUT -- cgit v1.1-32-gdbae