Add a --disable-apache-13 configure option
[shibboleth/sp.git] / configure.ac
index 38ae407..e0c6645 100644 (file)
@@ -1,9 +1,7 @@
-dnl $Id$ 
-
 AC_PREREQ([2.50])
-AC_INIT([shibboleth], [0.1], [mace-shib-users@internet2.edu], [shibboleth])
+AC_INIT([shibboleth], [1.0], [mace-shib-users@internet2.edu], [shibboleth])
 AM_CONFIG_HEADER(config.h)
-AM_INIT_AUTOMAKE
+AM_INIT_AUTOMAKE(shibboleth, 1.0)
 
 sinclude(acx_pthread.m4)
 sinclude(acx_rpctest.m4)
@@ -22,25 +20,19 @@ AC_STRUCT_TM
 
 # Checks for library functions.
 AC_FUNC_STRFTIME
-AC_CHECK_FUNCS([strchr strdup strstr gmtime_r])
-AC_CHECK_HEADERS([dlfcn.h stropts.h])
+AC_CHECK_FUNCS([strchr strdup strstr gmtime_r strcasecmp])
+AC_CHECK_HEADERS([dlfcn.h])
 
 # C++ requirements
 AC_CXX_REQUIRE_STL
 AC_CXX_NAMESPACES
 
 
-old_LIBS="$LIBS"
-AC_SEARCH_LIBS(xdr_uint64_t,nsl,,
-       [CFLAGS="$CFLAGS -DNEED_XDR_LONGLONG"
-        CXXFLAGS="$CXXFLAGS -DNEED_XDR_LONGLONG"])
-LIBS="$old_LIBS"
-
-ACX_RPCTEST([rpctest="yes"],[rpctest="no"])
-if test $rpctest = "no"; then
-    CFLAGS="-DNEED_RPC_TLI $CFLAGS"
-    ACX_RPCTEST(,AC_MSG_ERROR([neither style of ONC RPC worked]))
-fi
+# old_LIBS="$LIBS"
+# AC_SEARCH_LIBS(xdr_uint64_t,nsl,,
+#      [CFLAGS="$CFLAGS -DNEED_XDR_LONGLONG"
+#       CXXFLAGS="$CXXFLAGS -DNEED_XDR_LONGLONG"])
+# LIBS="$old_LIBS"
 
 # checks for pthreads
 ACX_PTHREAD([enable_threads="pthread"],[enable_threads="no"])
@@ -53,6 +45,9 @@ else
     CXXFLAGS="$PTHREAD_CFLAGS $CXXFLAGS"
 fi
 
+# Test RPC now -- deal with it later
+ACX_RPCTEST([rpctest="yes"],[rpctest="no"])
+
 AC_ARG_WITH(dmalloc,
             AC_HELP_STRING([--with-dmalloc=PATH], [where dmalloc is installed]),
             [if test x_$with_dmalloc != x_/usr; then
@@ -87,9 +82,9 @@ AC_ARG_WITH(log4cpp,
 
 AC_ARG_WITH(xmlsec,
             AC_HELP_STRING([--with-xmlsec=PATH], [where xmlsec is installed]),
-            [if test -f "${with_xmlsec}/bin/xmlsec-config"; then
-                LDFLAGS="`${with_xmlsec}/bin/xmlsec-config --libs` $LDFLAGS"
-                CPPFLAGS="`${with_xmlsec}/bin/xmlsec-config --cflags` $CPPFLAGS"
+            [if test x_$with_xmlsec != x_/usr; then
+                LDFLAGS="-L${with_xmlsec}/lib $LDFLAGS"
+                CPPFLAGS="-I${with_xmlsec}/include $CPPFLAGS"
             fi])
 
 AC_ARG_WITH(saml,
@@ -105,7 +100,7 @@ saved_LIBS="$LIBS"
 LIBS="-lxerces-c $LIBS"
 AC_TRY_LINK(
        [#include <xercesc/util/PlatformUtils.hpp>],
-        [XMLPlatformUtils::Initialize()],
+        [xercesc::XMLPlatformUtils::Initialize()],
        [AC_DEFINE(HAVE_LIBXERCESC,1,[Define if Xerces-C library was found])],
        [AC_MSG_ERROR([unable to link with Xerces])
                LIBS="$saved_LIBS"
@@ -118,15 +113,17 @@ AC_CHECK_LIB([crypto], [ERR_load_CRYPTO_strings],,
 AC_CHECK_LIB([ssl], [SSL_library_init],, 
              AC_MSG_ERROR([unable to link with openssl libraries]))
 
-AC_CHECK_HEADER([libxml/parser.h],,
-                AC_MSG_ERROR([unable to find libxml2 header files]))
-AC_CHECK_LIB([xml2], [xmlInitParser],echo "foo" > /dev/null,
-             AC_MSG_ERROR([unable to link with libxml2]))
-
-AC_CHECK_HEADER([xmlsec/xmlsec.h],,
-                AC_MSG_ERROR([unable to find xmlsec header files]))
-AC_CHECK_LIB([xmlsec], [xmlSecInit],echo "foo" > /dev/null,
-             AC_MSG_ERROR([unable to link with xmlsec]))
+AC_CHECK_HEADER([xsec/utils/XSECPlatformUtils.hpp],,
+                AC_MSG_ERROR([unable to find xsec header files]))
+saved_LIBS="$LIBS"
+LIBS="-lxml-security-c $LIBS"
+AC_TRY_LINK(
+        [#include <xsec/utils/XSECPlatformUtils.hpp>],
+        [XSECPlatformUtils::Initialise()],
+        [AC_DEFINE(HAVE_LIBXSEC,1,[Define if XML-Sec library was found])],
+        [AC_MSG_ERROR([unable to link with XML-Sec])
+                LIBS="$saved_LIBS"
+        ])
 
 AC_CHECK_HEADER([log4cpp/Category.hh],,
                 AC_MSG_ERROR([unable to find log4cpp header files]))
@@ -155,9 +152,17 @@ AC_TRY_LINK(
         ])
 
 # output the underlying makefiles
-WANT_SUBDIRS="shib schemas eduPerson shib-target shar test"
-AC_CONFIG_FILES([Makefile shib/Makefile schemas/Makefile eduPerson/Makefile \
-                           shib-target/Makefile shar/Makefile test/Makefile])
+WANT_SUBDIRS="doc shib schemas configs shib-target shar siterefresh test"
+AC_CONFIG_FILES([Makefile doc/Makefile shib/Makefile schemas/Makefile \
+                configs/Makefile oncrpc/Makefile oncrpc/rpc/Makefile \
+                shib-target/Makefile shar/Makefile siterefresh/Makefile \
+                test/Makefile])
+
+# now deal with the rpc library, to see if we need to build our own
+if test $rpctest = "no"; then
+    WANT_SUBDIRS="oncrpc $WANT_SUBDIRS"
+fi
+AM_CONDITIONAL(USE_OUR_ONCRPC,test "$rpctest" = "no")
 
 # Much of this is taken from mod_dav.
 # The basic idea is to use configure options to control whether/which types
@@ -169,6 +174,17 @@ AC_CONFIG_FILES([Makefile shib/Makefile schemas/Makefile eduPerson/Makefile \
 #   --with-apxs     (DSO build, the normal way, uses apxs to derive build flags)
 #   --without-apxs  (DSO build, you tell us how to build using the environment)
 
+AC_ARG_ENABLE(apache-13,
+       AC_HELP_STRING([--disable-apache-13], [disable the Apache 1.3 modules]))
+if test "x$enable_apache_13" = "x" ; then
+   enable_apache_13=yes
+fi
+
+if test "$enable_apache_13" != yes ; then
+   AC_MSG_WARN(Building without Apache...)
+   WANT_APACHE=no
+else
+
 AC_MSG_CHECKING([for dynamic Apache module support (w/ or w/o APXS)])
 AC_ARG_WITH(apxs,
 [  --with-apxs[=FILE]        Build shared Apache module(s). FILE is the optional
@@ -279,6 +295,8 @@ else
     WANT_APACHE="no"
 fi
 
+fi
+
 AM_CONDITIONAL(HAVE_APXS,test -n "$APXS")
 
 if test "$WANT_APACHE" = "yes"; then
@@ -291,8 +309,15 @@ if test "$WANT_APACHE" = "yes"; then
 
     saved_CPPFLAGS="$CPPFLAGS"
     CPPFLAGS="-I$APXS_INCLUDE $APXS_CFLAGS $CPPFLAGS"
-    AC_CHECK_HEADER([libapreq/apache_request.h],,
-                AC_MSG_ERROR([unable to find apreq header files]))
+    AC_TRY_COMPILE([#include <libapreq/apache_request.h>],
+                   [int i=0],
+                   test_apreq="yes",test_apreq="no")
+    if test "$test_apreq" = "no"; then
+        CPPFLAGS="$CPPFLAGS -U_XOPEN_SOURCE"
+        APXS_CFLAGS="$APXS_CFLAGS -U_XOPEN_SOURCE"
+        AC_CHECK_HEADER([libapreq/apache_request.h],,
+            AC_MSG_ERROR([unable to find a usable libapreq header]))
+    fi
 
 dnl    saved_LIBS="$LIBS"
 dnl    LIBS="-lapreq $LIBS"
@@ -318,11 +343,145 @@ dnl    LIBS="$saved_LIBS"
 
     # output the Apache 1.3 makefiles
     WANT_SUBDIRS="$WANT_SUBDIRS mod_shire mod_shibrm"
-    AC_CONFIG_FILES([mod_shire/Makefile mod_shibrm/Makefile])
 fi
+# always output the Makefile, even if we don't use it
+AC_CONFIG_FILES([mod_shire/Makefile mod_shibrm/Makefile])
 
 AM_CONDITIONAL(DO_APXS_INSTALL,test -n "$APXS_INSTALL")
 
+#
+# Implement the checks of the MySQL Credential Cache
+#
+# 1) Assume the user wants MySQL; if it's not found then just continue without
+# 2) If the user specifically requested Mysql, look for it and ERROR if not found
+# 3) If the user specifically requested no-mysql, don't build it.
+#
+
+AC_CONFIG_FILES([shib-mysql-ccache/Makefile])
+
+# determine whether we should enable the mysql ccache
+enable_mysql=default
+AC_ARG_ENABLE([mysql],
+       AC_HELP_STRING([--disable-mysql], [disable the MySQL Credential Cache]))
+if test "x$enable_mysql" = "x" ; then
+   enable_mysql=yes
+fi
+
+# Are we trying to build MySQL?
+AC_MSG_CHECKING(whether to build the MySQL ccache)
+if test "$enable_mysql" = "yes" -o "$enable_mysql" = "default" ; then
+   build_mysql=yes
+   AC_MSG_RESULT(yes)
+else
+   build_mysql=no
+   AC_MSG_RESULT(no)
+fi
+
+# If we're trying to build MySQL, try to find the mysql_config program,
+# verify we've got mysql >= 4, and make sure we can build with mysqld
+if test "$build_mysql" = "yes" ; then
+   mysql_dir=""
+   AC_ARG_WITH(mysql,
+       AC_HELP_STRING([--with-mysql=PATH], [directory where mysql is installed]),
+           [if test "$with_mysql" = no ; then
+               AC_MSG_ERROR([Try running --disable-mysql instead.])
+             elif test "$with_mysql" != yes ; then
+               mysql_dir="$with_mysql/bin"
+             fi ])
+
+   # Try to find the mysql_config program
+   AC_PATH_PROG(MYSQL_CONFIG, mysql_config, no, $mysql_dir $PATH )
+
+   if test "$MYSQL_CONFIG" = no ; then
+      if test "$enable_mysql" = yes ; then
+        AC_MSG_ERROR(Cannot find mysql_config)
+      else
+        AC_MSG_WARN(MySQL not found.  skipping.)
+      fi
+   fi
+fi
+
+# if we found mysql_config then build_mysql is 'yes'
+if test "$MYSQL_CONFIG" != no ; then
+   AC_MSG_CHECKING(for mysql version >= 4)
+   mysql_version=`$MYSQL_CONFIG --version`
+   mysql_major_version=`echo $mysql_version | awk -F. '{print $1}'`
+   mysql_version_ok=yes
+   if test $mysql_major_version -lt 4 ; then
+     mysql_version_ok=no
+     if test "$enable_mysql" = yes ; then
+       AC_MSG_ERROR(You need MySQL version >= 4, found $mysql_version)
+     fi
+     AC_MSG_RESULT(no.. skipping MySQL)
+   else
+     AC_MSG_RESULT(yes)
+   fi
+fi
+
+# if mysql_version_ok is 'yes', then we've made it this far.. ;)
+if test "$mysql_version_ok" = "yes" ; then
+   AC_MSG_CHECKING(for embedded-MySQL libraries)
+   MYSQL_LIBS=`$MYSQL_CONFIG --libmysqld-libs`
+   if test $? != 0 ; then
+      found_mysql=no
+      if test "$enable_mysql" = yes ; then
+        AC_MSG_ERROR(Could not find the MySQL Embedded-server libraries.)
+      else
+        AC_MSG_RESULT(no.. skipping MySQL)
+      fi
+   else
+      found_mysql=yes
+      AC_MSG_RESULT(yes)
+   fi
+fi
+
+# if found_mysql=yes then test that we can actually build mysql
+if test "$found_mysql" = yes ; then
+   MYSQL_CFLAGS=`$MYSQL_CONFIG --cflags`
+   MYSQL_CFLAGS=`eval echo $MYSQL_CFLAGS`
+   MYSQL_LIBS=`eval echo $MYSQL_LIBS`
+
+   save_CPPFLAGS="$CPPFLAGS"
+   CPPFLAGS="$CPPFLAGS $MYSQL_CFLAGS"
+
+   AC_CHECK_HEADER([mysql.h], [have_mysql_h=yes], [have_mysql_h=no])
+   if test "$have_mysql_h" = no -a "$enable_mysql" = yes ; then
+     AC_MSG_ERROR(unable to find MySQL header files)
+   fi
+
+   if test "$have_mysql_h" = yes ; then
+      save_LIBS="$LIBS"
+      LIBS="$LIBS $MYSQL_LIBS"
+      AC_MSG_CHECKING(if we can link againt mysql)
+      AC_TRY_LINK(
+        [#include <mysql.h>],
+        [mysql_server_init(0, NULL, NULL)],
+       [have_mysql_libs=yes],
+       [have_mysql_libs=no])
+      LIBS="$save_LIBS"
+
+      if test "$have_mysql_libs" = no ; then
+         if "$enable_mysql" = yes ; then
+            AC_MSG_ERROR([unable to link with MySQL Embedded Server Library])
+        else
+           AC_MSG_RESULT(no.  skipping MySQL)
+        fi
+      fi
+   fi
+
+   CPPFLAGS="$save_CPPFLAGS"
+fi
+
+# if have_mysql_libs=yes then go ahead with building MySQL
+if test "$have_mysql_libs" = yes ; then
+   # this AC_MSG_RESULT is from above!
+   AC_MSG_RESULT(yes)
+   WANT_SUBDIRS="$WANT_SUBDIRS shib-mysql-ccache"
+   AC_SUBST(MYSQL_CFLAGS)
+   AC_SUBST(MYSQL_LIBS)
+fi
+
+
 AC_SUBST(WANT_SUBDIRS)
 
 if test -n "$APXS_CC" && test "$APXS_CC" != "$CC" ; then