dnl Licensed to the Apache Software Foundation (ASF) under one or more dnl contributor license agreements. See the NOTICE file distributed with dnl this work for additional information regarding copyright ownership. dnl The ASF licenses this file to You under the Apache License, Version 2.0 dnl (the "License"); you may not use this file except in compliance with dnl the License. You may obtain a copy of the License at dnl dnl http://www.apache.org/licenses/LICENSE-2.0 dnl dnl Unless required by applicable law or agreed to in writing, software dnl distributed under the License is distributed on an "AS IS" BASIS, dnl WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. dnl See the License for the specific language governing permissions and dnl limitations under the License. dnl run autogen.sh to generate the configure script. AC_PREREQ(2.59) AC_INIT(neethi-src, 1.7.0) AC_CANONICAL_SYSTEM AM_CONFIG_HEADER(config.h) dnl AM_INIT_AUTOMAKE([tar-ustar]) AM_INIT_AUTOMAKE m4_ifdef([_A][M_PROG_TAR],[_A][M_SET_OPTION([tar-ustar])]) AC_PREFIX_DEFAULT(/usr/local/neethi) dnl Checks for programs. AC_PROG_CC AC_PROG_CPP AC_PROG_LIBTOOL 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([],[ 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) AC_MSG_RESULT($axis2c_have_iso_c_varargs) 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 AC_MSG_CHECKING(whether to set -Werror) AC_ARG_ENABLE(werror, [ --disable-werror do not treat warnings as errors during build], [ case "${enableval}" in no) AC_MSG_RESULT(no) ;; *) AC_MSG_RESULT(yes) CFLAGS="$CFLAGS -Werror" ;; esac ], ) AC_MSG_CHECKING(whether to build guththila xml parser library) AC_ARG_ENABLE(guththila, [ --enable-guththila build Guththila XML parser library wrapper (default=yes)], [ case "${enableval}" in no) AC_MSG_RESULT(no) guththilla_enabled=no ;; *) AC_MSG_RESULT(yes) guththilla_enabled=yes ;; esac ], [ AC_MSG_RESULT(yes) guththilla_enabled=yes ]) AS_IF([test $guththilla_enabled = yes], [ CFLAGS="$CFLAGS -DAXIS2_GUTHTHILA_ENABLED" CPPFLAGS="$CPPFLAGS -DAXIS2_GUTHTHILA_ENABLED" WRAPPER_DIR="guththila" AC_CONFIG_SUBDIRS(guththila) GUTHTHILA_LIBS="/guththila/src/" GUTHTHILA_DIR="guththila" ]) AS_UNSET(guththilla_enabled) AC_MSG_CHECKING(whether to build libxml2 xml parser library) AC_ARG_ENABLE(libxml2, [ --enable-libxml2 build Libxml2 XML parser library wrapper (default=no)], [ case "${enableval}" in no) AC_MSG_RESULT(no) WRAPPER_DIR="" ;; *) AC_MSG_RESULT(yes) WRAPPER_DIR="libxml2" PKG_CHECK_MODULES(LIBXML2, libxml-2.0) CFLAGS="$CFLAGS -DAXIS2_LIBXML2_ENABLED" CPPFLAGS="$CPPFLAGS $PARSER_CFLAGS -DAXIS2_LIBXML2_ENABLED" LDFLAGS="$LDFLAGS $PARSER_LIBS" ;; esac ], AC_MSG_RESULT(no) ) dnl Checks for header files. AC_HEADER_STDC AC_CHECK_HEADERS([stdio.h stdlib.h string.h]) AC_CHECK_HEADERS([sys/socket.h]) dnl This is a check to see if we are running MacOS X dnl It may be better to do a Darwin check AC_CHECK_HEADER([sys/appleapiopts.h], [AC_DEFINE([IS_MACOSX],[1],[Define to 1 if compiling on MacOS X])], []) dnl Checks for typedefs, structures, and compiler characteristics. dnl AC_C_CONST dnl Checks for library functions. dnl AC_FUNC_MALLOC dnl AC_FUNC_REALLOC #AC_CHECK_FUNCS([memmove]) VERSION_NO="7:0:7" AC_SUBST(VERSION_NO) AC_SUBST(WRAPPER_DIR) export WRAPPER_DIR AC_CONFIG_FILES([Makefile \ src/Makefile \ src/secpolicy/Makefile \ src/secpolicy/model/Makefile \ src/secpolicy/builder/Makefile \ src/rmpolicy/Makefile \ test/Makefile ]) AC_OUTPUT