SSPCPP-568 The INSTALL_DIR has to have a trailing backslash or else keygen fails.
[shibboleth/cpp-sp.git] / configure.ac
1 AC_PREREQ([2.50])
2 AC_INIT([shibboleth],[2.5.2],[https://issues.shibboleth.net/],[shibboleth-sp])
3 AC_CONFIG_SRCDIR(shibsp)
4 AC_CONFIG_AUX_DIR(build-aux)
5 AC_CONFIG_MACRO_DIR(m4)
6 AM_INIT_AUTOMAKE
7 AC_DISABLE_STATIC
8 AC_PROG_LIBTOOL
9
10 # Docygen features
11 DX_HTML_FEATURE(ON)
12 DX_CHM_FEATURE(OFF)
13 DX_CHI_FEATURE(OFF)
14 DX_MAN_FEATURE(OFF)
15 DX_RTF_FEATURE(OFF)
16 DX_XML_FEATURE(OFF)
17 DX_PDF_FEATURE(OFF)
18 DX_PS_FEATURE(OFF)
19 DX_INIT_DOXYGEN(shibboleth, doxygen.cfg, doc/api)
20 DX_INCLUDE=
21
22 AC_ARG_ENABLE(debug,
23     AS_HELP_STRING([--enable-debug],[Have GCC compile with symbols (Default = no)]),
24     enable_debug=$enableval, enable_debug=no)
25
26 if test "$enable_debug" = "yes" ; then
27     GCC_CFLAGS="$CFLAGS -g -D_DEBUG"
28     GCC_CXXFLAGS="$CXXFLAGS -g -D_DEBUG"
29 else
30     GCC_CFLAGS="$CFLAGS -O2 -DNDEBUG"
31     GCC_CXXFLAGS="$CXXFLAGS -O2 -DNDEBUG"
32 fi
33
34 AC_CONFIG_HEADERS([config.h shibsp/config_pub.h])
35 AC_CONFIG_FILES([shibboleth.spec])
36
37 AC_PROG_CC([gcc gcc3 cc])
38 AC_PROG_CXX([g++ g++3 c++ CC])
39 AC_CANONICAL_HOST
40
41 if test "$GCC" = "yes" ; then
42 #    AC_HAVE_GCC_VERSION(4,0,0,0,
43 #        [
44 #        AC_DEFINE(GCC_HASCLASSVISIBILITY,1,
45 #            [Define to enable class visibility control in gcc.])
46 #        GCC_CFLAGS="$GCC_CFLAGS -fvisibility=hidden -fvisibility-inlines-hidden"
47 #        GCC_CXXFLAGS="$GCC_CXXFLAGS -fvisibility=hidden -fvisibility-inlines-hidden"
48 #        ])
49     CFLAGS="-Wall $GCC_CFLAGS"
50     CXXFLAGS="-Wall $GCC_CXXFLAGS"
51 fi
52
53 # Fix for Sun Workshop compiler in debug mode, may be Sun case #6360993
54 # Also enables POSIX semantics for some functions.
55 case "${host_cpu}-${host_os}" in
56     *solaris*)
57         CFLAGS="$CFLAGS -D_POSIX_PTHREAD_SEMANTICS"
58         CXXFLAGS="$CXXFLAGS -D_POSIX_PTHREAD_SEMANTICS"
59         if test "$CXX" = "CC" ; then
60                 CXXFLAGS="$CXXFLAGS -Qoption ccfe -stabs=no%dfltlit+no%dflthlp"
61         fi
62     ;;
63         *osf*)
64         CXXFLAGS="$CXXFLAGS -D_POSIX_PII_SOCKET"
65         ;;
66 esac
67
68 AC_LANG(C)
69
70 # Checks for typedefs, structures, and compiler characteristics.
71 AC_C_CONST
72 AC_TYPE_SIZE_T
73 AC_STRUCT_TM
74
75 # Checks for library functions.
76 AC_FUNC_STRFTIME
77 AC_FUNC_STRERROR_R
78 AC_CHECK_HEADERS([sys/utsname.h grp.h pwd.h])
79 AC_CHECK_HEADERS([sys/socket.h], [AC_DEFINE([SHIBSP_HAVE_SYS_SOCKET_H],[1],[Define to 1 if you have the <sys/socket> header file.])], [])
80 AC_CHECK_FUNCS([strchr strdup strstr timegm gmtime_r localtime_r strtok_r strcasecmp getpwnam getgrnam])
81 AC_CHECK_TYPES([struct sockaddr_storage], [], [], [[#include <sys/socket.h>]])
82 AC_CHECK_MEMBERS([struct sockaddr.sa_len], [], [], [[#include <sys/socket.h>]])
83
84 AC_CACHE_CHECK([for SOCK_CLOEXEC support], [shib_cv_sock_cloexec],
85 [AC_TRY_RUN([
86 #include <sys/types.h>
87 #include <sys/socket.h>
88 int main()
89 {
90 return socket(AF_INET, SOCK_STREAM|SOCK_CLOEXEC, 0) == -1;
91 }], [shib_cv_sock_cloexec=yes], [shib_cv_sock_cloexec=no], [shib_cv_sock_cloexec=no])])
92
93 if test "$shib_cv_sock_cloexec" = "yes"; then
94         AC_DEFINE([HAVE_SOCK_CLOEXEC], 1, [Define if the SOCK_CLOEXEC flag is supported])
95 fi
96
97 # checks for pthreads
98 ACX_PTHREAD([enable_threads="pthread"],[enable_threads="no"])
99 if test $enable_threads != "pthread"; then
100     AC_MSG_ERROR([unable to find pthreads, currently this is required])
101 else
102     AC_DEFINE([HAVE_PTHREAD],[1],[Define if you have POSIX threads libraries and header files.])
103     LIBS="$PTHREAD_LIBS $LIBS"
104     CFLAGS="$PTHREAD_CFLAGS $CFLAGS"
105     CXXFLAGS="$PTHREAD_CFLAGS $CXXFLAGS"
106 fi
107
108 # OpenSSL settings
109 AC_ARG_WITH(openssl,
110     AS_HELP_STRING([--with-openssl=PATH],[where openssl is installed]),
111     [if test x_$with_openssl != x_/usr; then
112         SSLFLAGS="-I${with_openssl}/include"
113     fi])
114
115 if test "x$with_openssl" = "x" ; then
116     AC_PATH_PROG(PKG_CONFIG, pkg-config)
117     if test "x$PKG_CONFIG" != x && test "x$PKG_CONFIG" != "xno" ; then
118         if pkg-config openssl ; then
119             SSLFLAGS="`$PKG_CONFIG --cflags openssl`"
120         else
121             AC_MSG_WARN([OpenSSL not supported by pkg-config, try --with-openssl instead])
122         fi
123     fi
124 fi
125
126 AC_MSG_CHECKING(for OpenSSL cflags)
127 AC_MSG_RESULT($SSLFLAGS)
128 CPPFLAGS="$SSLFLAGS $CPPFLAGS"
129
130 AC_CHECK_HEADER([openssl/x509.h],,AC_MSG_ERROR([unable to find openssl header files]))
131
132 AC_LANG([C++])
133
134 # C++ requirements
135 AC_CXX_NAMESPACES
136 AC_CXX_REQUIRE_STL
137
138 # Boost
139 BOOST_REQUIRE
140 BOOST_BIND
141 BOOST_LAMBDA
142 BOOST_PTR_CONTAINER
143 BOOST_SMART_PTR
144 BOOST_STRING_ALGO
145 BOOST_TUPLE
146 CPPFLAGS="$BOOST_CPPFLAGS $CPPFLAGS"
147
148 # Thank you Solaris, really.
149 AC_MSG_CHECKING(for ctime_r)
150 if test -z "$ac_cv_ctime_args"; then
151     AC_COMPILE_IFELSE(
152         [AC_LANG_PROGRAM([[#include <time.h>]], [[time_t clock; char buf[26]; ctime_r(&clock, buf);]])],
153         [ac_cv_ctime_args=2],[])
154
155     AC_COMPILE_IFELSE(
156         [AC_LANG_PROGRAM([[#include <time.h>]], [[time_t clock; char buf[26]; ctime_r(&clock, buf, 26);]])],
157         [ac_cv_ctime_args=3],[])
158 fi
159 if test -z "$ac_cv_ctime_args"; then
160     AC_MSG_RESULT(no)
161 else
162     if test "$ac_cv_ctime_args" = 2; then
163         AC_DEFINE([HAVE_CTIME_R_2],[1],[Define if ctime_r is present with 2 parameters.])
164     elif test "$ac_cv_ctime_args" = 3; then
165         AC_DEFINE([HAVE_CTIME_R_3],[1],[Define if ctime_r is present with 3 parameters.])
166     fi
167     AC_MSG_RESULT([yes, and it takes $ac_cv_ctime_args arguments])
168 fi 
169
170 # log4shib settings (favor this version over the log4cpp code)
171 AC_PATH_PROG(LOG4SHIB_CONFIG,log4shib-config)
172 AC_ARG_WITH(log4shib,
173     AS_HELP_STRING([--with-log4shib=PATH],[where log4shib-config is installed]),
174     [
175     LOG4SHIB_CONFIG="${with_log4shib}"
176     if ! test -f "${LOG4SHIB_CONFIG}"; then
177         LOG4SHIB_CONFIG="${with_log4shib}/bin/log4shib-config"
178     fi
179     ])
180 if test -f "${LOG4SHIB_CONFIG}" ; then
181     LIBS="`${LOG4SHIB_CONFIG} --libs` $LIBS"
182     CPPFLAGS="`${LOG4SHIB_CONFIG} --cflags` $CPPFLAGS"
183     AC_CHECK_HEADER([log4shib/CategoryStream.hh],,AC_MSG_ERROR([unable to find log4shib header files]))
184     AC_LINK_IFELSE(
185         [AC_LANG_PROGRAM([[#include <log4shib/Category.hh>
186 #include <log4shib/CategoryStream.hh>]],
187             [[log4shib::Category::getInstance("foo").errorStream() << log4shib::eol]])],
188         [AC_DEFINE([SHIBSP_LOG4SHIB],[1],[Define to 1 if log4shib library is used.])],
189         [AC_MSG_ERROR([unable to link with log4shib])])
190 else
191     AC_MSG_WARN([log4shib-config not found, may need to use --with-log4shib option])
192     AC_MSG_WARN([will look for original log4cpp library])
193     
194     # log4cpp settings
195     AC_PATH_PROG(LOG4CPP_CONFIG,log4cpp-config)
196     AC_ARG_WITH(log4cpp,
197         AS_HELP_STRING([--with-log4cpp=PATH],[where log4cpp-config is installed]),
198         [
199         LOG4CPP_CONFIG="${with_log4cpp}"
200         if ! test -f "${LOG4CPP_CONFIG}"; then
201             LOG4CPP_CONFIG="${with_log4cpp}/bin/log4cpp-config"
202         fi
203         ])
204     if test -f "${LOG4CPP_CONFIG}"; then
205         AC_MSG_WARN([will try to use log4cpp, note that most non-Internet2 supplied versions are not thread-safe])
206         LIBS="`${LOG4CPP_CONFIG} --libs` $LIBS"
207         CPPFLAGS="`${LOG4CPP_CONFIG} --cflags` $CPPFLAGS"
208         AC_CHECK_HEADER([log4cpp/CategoryStream.hh],,AC_MSG_ERROR([unable to find log4cpp header files]))
209         AC_LINK_IFELSE(
210             [AC_LANG_PROGRAM([[#include <log4cpp/Category.hh>
211 #include <log4cpp/CategoryStream.hh>]],
212                 [[log4cpp::Category::getInstance("foo").errorStream() << log4cpp::eol]])],
213             [AC_DEFINE([SHIBSP_LOG4CPP],[1],[Define to 1 if log4cpp library is used.])],
214             [AC_MSG_ERROR([unable to link with log4cpp, need version 1.0 or later])])
215     else
216         AC_MSG_ERROR([log4cpp-config not found, may need to use --with-log4cpp option])
217     fi
218 fi
219
220 # Xerces settings
221 AC_ARG_WITH(xerces,
222     AS_HELP_STRING([--with-xerces=PATH],[where xerces-c is installed]),,
223     [with_xerces=/usr])
224 if test x_$with_xerces != x_/usr; then
225     CPPFLAGS="-I${with_xerces}/include $CPPFLAGS"
226     LIBS="-L${with_xerces}/lib -lxerces-c $LIBS"
227 else
228     LIBS="-lxerces-c $LIBS"
229 fi
230
231 AC_CHECK_HEADER([xercesc/dom/DOM.hpp],,AC_MSG_ERROR([unable to find xerces header files]))
232 AC_MSG_CHECKING([Xerces version])
233 AC_PREPROC_IFELSE(
234     [AC_LANG_PROGRAM([#include <xercesc/util/XercesVersion.hpp>],
235 [#if  _XERCES_VERSION >= 20700
236 int i = 0;
237 #else
238 #error version 2.7.0 or above required
239 #endif])],
240     [AC_MSG_RESULT(OK)],
241     [AC_MSG_FAILURE([Xerces-C v2.7.0 or higher is required, v3.x preferred])])
242 AC_LINK_IFELSE(
243     [AC_LANG_PROGRAM([[#include <xercesc/util/PlatformUtils.hpp>]],[[xercesc::XMLPlatformUtils::Initialize()]])],
244     ,[AC_MSG_ERROR([unable to link with Xerces])])
245
246 AC_MSG_CHECKING([whether Xerces XMLString::release(XMLByte**) exists])
247 AC_COMPILE_IFELSE(
248     [AC_LANG_PROGRAM([[#include <xercesc/util/XMLString.hpp>]],
249     [[using namespace XERCES_CPP_NAMESPACE; XMLByte* buf=NULL; XMLString::release(&buf);]])],
250     [AC_MSG_RESULT([yes])AC_DEFINE([SHIBSP_XERCESC_HAS_XMLBYTE_RELEASE],[1],[Define to 1 if Xerces XMLString includes XMLByte release.])],
251     [AC_MSG_RESULT([no])])
252
253 AC_MSG_CHECKING([whether Xerces DOMNodeFilter API returns a short])
254 AC_COMPILE_IFELSE(
255     [AC_LANG_PROGRAM([[#include <xercesc/dom/DOM.hpp>]],
256         [[using namespace XERCES_CPP_NAMESPACE;
257       class Blocker : public DOMNodeFilter {
258       public:
259         short acceptNode(const DOMNode* node) const {
260             return FILTER_REJECT;
261         }
262       };
263       static Blocker g_Blocker;
264     ]])],
265     [AC_MSG_RESULT([yes])AC_DEFINE([SHIBSP_XERCESC_SHORT_ACCEPTNODE],[1],[Define to 1 if Xerces DOMNodeFilter API returns a short.])],
266     [AC_MSG_RESULT([no])])
267
268 # XML-Security settings
269 AC_ARG_WITH(xmlsec,
270     AS_HELP_STRING([--with-xmlsec=PATH],[where xmlsec is installed]),,
271     [with_xmlsec=/usr])
272 if test x_$with_xmlsec != x_/usr; then
273     CPPFLAGS="-I${with_xmlsec}/include $CPPFLAGS"
274     XMLSEC_LIBS="-L${with_xmlsec}/lib -lxml-security-c $XMLSEC_LIBS"
275 else
276     XMLSEC_LIBS="-lxml-security-c $XMLSEC_LIBS"
277 fi
278
279 # save and append master libs
280 save_LIBS="$LIBS"
281 LIBS="$XMLSEC_LIBS $LIBS"
282
283 AC_CHECK_HEADER([xsec/utils/XSECPlatformUtils.hpp],,AC_MSG_ERROR([unable to find XML-Security-C header files]))
284 AC_MSG_CHECKING([XML-Security-C version])
285 AC_PREPROC_IFELSE(
286     [AC_LANG_PROGRAM([#include <xsec/utils/XSECPlatformUtils.hpp>],
287     [#if XSEC_VERSION_MAJOR > 1 || (XSEC_VERSION_MAJOR == 1 && XSEC_VERSION_MEDIUM > 3)
288 int i = 0;
289 #else
290 #error need version 1.4.0 or later
291 #endif])],
292     [AC_MSG_RESULT(OK)],
293     [AC_MSG_FAILURE([XML-Security-C version 1.4.0 or greater is required.])])
294 AC_LINK_IFELSE(
295     [AC_LANG_PROGRAM([[#include <xsec/utils/XSECPlatformUtils.hpp>]],
296         [[XSECPlatformUtils::Initialise()]])],,
297     [AC_MSG_ERROR([unable to link with XML-Security])])
298
299 AC_MSG_CHECKING([whether XML-Security-C supports white/blacklisting of algorithms])
300 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <xsec/framework/XSECAlgorithmMapper.hpp>]], [[XSECAlgorithmMapper* mapper; mapper->whitelistAlgorithm(NULL);]])],[AC_MSG_RESULT([yes])
301       AC_DEFINE([SHIBSP_XMLSEC_WHITELISTING],[1],[Define to 1 if XML-Security-C supports white/blacklisting algorithms.])],[AC_MSG_RESULT([no])])
302
303 # restore master libs
304 LIBS="$save_LIBS"
305
306 #XML-Tooling settings
307 AC_ARG_WITH(xmltooling,
308     AS_HELP_STRING([--with-xmltooling=PATH],[where xmltooling is installed]),,
309     [with_xmltooling=/usr])
310 if test x_$with_xmltooling != x_/usr; then
311     CPPFLAGS="-I${with_xmltooling}/include $CPPFLAGS"
312     DX_INCLUDE="${with_xmltooling}/include"
313     LITE_LIBS="-L${with_xmltooling}/lib -lxmltooling-lite"
314     XMLSEC_LIBS="-L${with_xmltooling}/lib -lxmltooling $XMLSEC_LIBS"
315 else
316     LITE_LIBS="-lxmltooling-lite"
317     XMLSEC_LIBS="-lxmltooling $XMLSEC_LIBS"
318 fi
319
320 AC_CHECK_HEADER([xmltooling/base.h],,AC_MSG_ERROR([unable to find xmltooling header files]))
321
322 # save and append master libs
323 save_LIBS="$LIBS"
324 LIBS="$XMLSEC_LIBS $LIBS"
325
326 AC_LINK_IFELSE(
327     [AC_LANG_PROGRAM([[#include <xmltooling/XMLToolingConfig.h>
328 #include <xmltooling/version.h>]],
329         [[#if _XMLTOOLING_VERSION >= 10500
330 xmltooling::XMLToolingConfig::getConfig();
331 #else
332 #error Need XMLTooling version 1.5 or higher
333 #endif]])],
334     ,[AC_MSG_ERROR([unable to link with XMLTooling, or version was too old])])
335
336 # restore master libs
337 LIBS="$save_LIBS"
338
339 # Establish location of xmltooling catalog.
340 XMLTOOLINGXMLDIR=""
341 if test "x$with_xmltooling" = "x" ; then
342    with_xmltooling="/usr"
343 fi
344 if test -f $with_xmltooling/share/xml/xmltooling/catalog.xml ; then
345     XMLTOOLINGXMLDIR="$with_xmltooling"
346 elif test -f $with_xerces/share/xml/xmltooling/catalog.xml ; then
347     XMLTOOLINGXMLDIR="$with_xerces"
348 elif test -f $with_log4shib/share/xml/xmltooling/catalog.xml ; then
349     XMLTOOLINGXMLDIR="$with_log4shib"
350 fi
351 if test "x$XMLTOOLINGXMLDIR" = "x" ; then
352     AC_MSG_ERROR([xmltooling XML catalog not found, may need to use --with-xmltooling option])
353 fi
354 XMLTOOLINGXMLDIR="$XMLTOOLINGXMLDIR/share/xml/xmltooling"
355 AC_SUBST(XMLTOOLINGXMLDIR)
356
357 # OpenSAML settings
358 AC_ARG_WITH(saml,
359     AS_HELP_STRING([--with-saml=PATH],[where opensaml is installed]),,
360     [with_saml=/usr])
361 if test x_$with_xmltooling != x_/usr; then
362     CPPFLAGS="-I${with_saml}/include $CPPFLAGS"
363     DX_INCLUDE="$DX_INCLUDE ${with_saml}/include"
364     XMLSEC_LIBS="-L${with_saml}/lib -lsaml $XMLSEC_LIBS"
365 else
366     XMLSEC_LIBS="-lsaml $XMLSEC_LIBS"
367 fi
368
369 # save and append master libs
370 save_LIBS="$LIBS"
371 LIBS="$XMLSEC_LIBS $LIBS"
372
373 AC_CHECK_HEADER([saml/saml2/metadata/Metadata.h],,AC_MSG_ERROR([unable to find OpenSAML header files]))
374 AC_LINK_IFELSE(
375     [AC_LANG_PROGRAM([[#include <saml/SAMLConfig.h>
376 #include <saml/version.h>]],
377 [[#if _OPENSAML_VERSION >= 20500
378 opensaml::SAMLConfig::getConfig();
379 #else
380 #error Need OpenSAML version 2.5 or higher
381 #endif]])],
382     ,[AC_MSG_ERROR([unable to link with OpenSAML, or version was too old])
383         ])
384
385 # restore master libs
386 LIBS="$save_LIBS"
387
388 # Establish location of opensaml catalogs.
389 OPENSAMLXMLDIR=""
390 if test "x$with_saml" = "x" ; then
391     with_saml="/usr"
392 fi
393 if test -f $with_saml/share/xml/opensaml/saml20-catalog.xml ; then
394     OPENSAMLXMLDIR="$with_saml"
395 elif test -f $with_xmltooling/share/xml/opensaml/saml20-catalog.xml ; then
396     OPENSAMLXMLDIR="$with_xmltooling"
397 elif test -f $with_xerces/share/xml/opensaml/saml20-catalog.xml ; then
398     OPENSAMLXMLDIR="$with_xerces"
399 elif test -f $with_log4shib/share/xml/opensaml/saml20-catalog.xml ; then
400     OPENSAMLXMLDIR="$with_log4shib"
401 fi
402 if test "x$OPENSAMLXMLDIR" = "x" ; then
403     AC_MSG_ERROR([opensaml XML catalogs not found, may need to use --with-saml option])
404 fi
405 OPENSAMLXMLDIR="$OPENSAMLXMLDIR/share/xml/opensaml"
406 AC_SUBST(OPENSAMLXMLDIR)
407
408 AC_SUBST(LITE_LIBS)
409 AC_SUBST(XMLSEC_LIBS)
410
411 # output the underlying makefiles
412 WANT_SUBDIRS="doc schemas configs shibsp plugins shibd util"
413 AC_CONFIG_FILES([Makefile doc/Makefile schemas/Makefile \
414         configs/Makefile shibsp/Makefile plugins/Makefile \
415         shibd/Makefile util/Makefile selinux/Makefile])
416
417 ## ADFS?
418 AC_CONFIG_FILES([adfs/Makefile])
419 AC_ARG_ENABLE([adfs],
420     AS_HELP_STRING([--disable-adfs],[don't build the ADFS module]),
421     [adfs_enabled=$enableval], [adfs_enabled=yes])
422 if test "x$adfs_enabled" = "x" ; then
423     adfs_enabled=yes
424 fi
425 AC_MSG_CHECKING(whether to build the ADFS module)
426 if test "$adfs_enabled" = "no" ; then
427     AC_MSG_RESULT(no)
428 else
429     AC_MSG_RESULT(yes)
430     WANT_SUBDIRS="$WANT_SUBDIRS adfs"
431 fi
432
433
434 #
435 # Build NSAPI module?
436 #
437 AC_MSG_CHECKING(for NSAPI module option)
438 AC_ARG_WITH(nsapi,
439     AS_HELP_STRING([--with-nsapi=DIR],[Build NSAPI module for Netscape/iPlanet/SunONE]),
440     [WANT_NSAPI=$withval],[WANT_NSAPI=no])
441 AC_MSG_RESULT($WANT_NSAPI)
442
443 if test "$WANT_NSAPI" != "no"; then
444   if test ! -d $WANT_NSAPI/bin ; then
445     AC_MSG_ERROR([Please specify the path to the root of your Netscape/iPlanet/SunONE server using --with-nsapi=DIR])
446   fi
447   AC_MSG_CHECKING(for NSAPI include files)
448   if test -d $WANT_NSAPI/include ; then
449     NSAPI_INCLUDE=$WANT_NSAPI/include
450     AC_MSG_RESULT(Netscape-Enterprise 3.x style)
451     AC_CHECK_HEADERS([$NSAPI_INCLUDE/nsapi.h],,,[#define XP_UNIX])
452     NSAPI_INCLUDE="$NSAPI_INC_DIR -I$NSAPI_INCLUDE"
453   fi
454   if test -d $WANT_NSAPI/plugins/include ; then
455     test -n "$NSAPI_INCLUDE" && NSAPI_INC_DIR="-I$NSAPI_INCLUDE"
456     NSAPI_INCLUDE="$WANT_NSAPI/plugins/include"
457     AC_MSG_RESULT(iPlanet 4.x / SunONE 6.x style)
458     AC_CHECK_HEADERS([$NSAPI_INCLUDE/nsapi.h],,,[#define XP_UNIX])
459     NSAPI_INCLUDE="$NSAPI_INC_DIR -I$NSAPI_INCLUDE"
460   fi
461   if test "$NSAPI_INCLUDE" = ""; then
462     AC_MSG_ERROR([Please check you have nsapi.h in either $WANT_NSAPI/include or $WANT_NSAPI/plugins/include])
463   fi
464 fi
465
466 AC_SUBST(NSAPI_INCLUDE)
467
468 # always output the Makefile, even if you don't use it
469 AC_CONFIG_FILES([nsapi_shib/Makefile])
470 AM_CONDITIONAL(BUILD_NSAPI,test ! "$WANT_NSAPI" = "no")
471
472 # add the NSAPI module to the list of wanted subdirs..
473 if test ! "$WANT_NSAPI" = "no" ; then
474     WANT_SUBDIRS="$WANT_SUBDIRS nsapi_shib"
475 fi
476
477
478 #
479 # Build FastCGI support?
480 #
481 AC_MSG_CHECKING(for FastCGI support)
482 AC_ARG_WITH(fastcgi,
483     AS_HELP_STRING([--with-fastcgi=DIR],[Build FastCGI support]),
484     [WANT_FASTCGI=$withval],[WANT_FASTCGI=no])
485 AC_MSG_RESULT($WANT_FASTCGI)
486
487 if test "$WANT_FASTCGI" != "no"; then
488     if test "$WANT_FASTCGI" != "yes"; then
489         if test x_$WANT_FASTCGI != x_/usr; then
490             FASTCGI_INCLUDE="-I$WANT_FASTCGI/include"
491             FASTCGI_LDFLAGS="-L$WANT_FASTCGI/lib"
492         fi
493     fi
494     AC_CHECK_HEADER([fcgio.h],,AC_MSG_ERROR([unable to find FastCGI header files]))
495     FASTCGI_LIBS="-lfcgi -lfcgi++"
496 fi
497
498 AC_SUBST(FASTCGI_INCLUDE)
499 AC_SUBST(FASTCGI_LDFLAGS)
500 AC_SUBST(FASTCGI_LIBS)
501
502 # always output the Makefile, even if you don't use it
503 AC_CONFIG_FILES([fastcgi/Makefile])
504 AM_CONDITIONAL(BUILD_FASTCGI,test ! "$WANT_FASTCGI" = "no")
505
506 if test ! "$WANT_FASTCGI" = "no" ; then
507     WANT_SUBDIRS="$WANT_SUBDIRS fastcgi"
508 fi
509
510 #
511 # Build Memcached support?
512 #
513 AC_MSG_CHECKING(for Memcached support)
514 AC_ARG_WITH(memcached,
515     AS_HELP_STRING([--with-memcached=DIR],[Build Memcached support]),
516     [WANT_MEMCACHED=$withval],[WANT_MEMCACHED=no])
517 AC_MSG_RESULT($WANT_MEMCACHED)
518
519 if test "$WANT_MEMCACHED" != "no"; then
520     if test "$WANT_MEMCACHED" != "yes"; then
521         if test x_$WANT_MEMCACHED != x_/usr; then
522             MEMCACHED_INCLUDE="-I$WANT_MEMCACHED/include"
523             MEMCACHED_LDFLAGS="-L$WANT_MEMCACHED/lib"
524         fi
525     fi
526     AC_CHECK_HEADER([libmemcached/memcached.h],,
527         AC_MSG_ERROR([unable to find Memcached header files]))
528     AC_CHECK_DECL([memcached_last_error_message],
529         [AC_DEFINE([HAVE_MEMCACHED_LAST_ERROR_MESSAGE],[1],[Define to 1 if libmemcached supports error handling function.])],,
530         [#include <libmemcached/memcached.h>])
531     MEMCACHED_LIBS="-lmemcached"
532 fi
533
534 AC_SUBST(MEMCACHED_INCLUDE)
535 AC_SUBST(MEMCACHED_LDFLAGS)
536 AC_SUBST(MEMCACHED_LIBS)
537
538 # always output the Makefile, even if you don't use it
539 AC_CONFIG_FILES([memcache-store/Makefile])
540 AM_CONDITIONAL(BUILD_MEMCACHED,test ! "$WANT_MEMCACHED" = "no")
541
542 if test ! "$WANT_MEMCACHED" = "no" ; then
543     WANT_SUBDIRS="$WANT_SUBDIRS memcache-store"
544 fi
545
546
547 #
548 # If no --enable-apache-xx specified 
549 # find a default and fake the specific parameters
550 #
551
552 # simple macro to peek at an enable or a with
553 AC_DEFUN([Peek],
554 if test "[${[$1]_][$2]+set}" = set; then
555   peekval="${[$1]_[$2]}"
556   $3
557 fi; dnl
558 )
559
560 AC_MSG_CHECKING(if default apache needed)
561 need_default=yes
562 Peek(enable,apache_13,need_default=no)
563 Peek(enable,apache_20,need_default=no)
564 Peek(enable,apache_22,need_default=no)
565 Peek(enable,apache_24,need_default=no)
566 AC_MSG_RESULT($need_default)
567
568 if test "$need_default" = "yes"; then
569   # find an apxs, then the httpd
570   xs=
571   Peek(with,apxs,xs="$peekval")
572   Peek(with,apxs2,xs="$peekval")
573   Peek(with,apxs22,xs="$peekval")
574   Peek(with,apxs24,xs="$peekval")
575   if test "x$xs" = "x"; then
576      AC_PATH_PROGS(xs, apxs2 apxs,
577         AC_MSG_ERROR(No apxs, no Apache found. Try --with-apxs, --with-apxs2, etc.),
578         [/usr/local/apache2/bin:/usr/local/apache/bin:/usr/sbin:$PATH])
579   fi
580   # ask the daemon for the version and set parameters
581   AC_MSG_CHECKING(default apache version)
582   httpd="`$xs -q SBINDIR`/`$xs -q TARGET`"
583   if test "x$httpd" != "x" && test -f $httpd ; then
584      v=`$httpd -v|$SED -n -e 's/.*Apache\/\.*//p'`
585      case $v in
586        1.3*)   [enable_apache_13]=yes
587                [with_apxs]=$xs
588                AC_MSG_RESULT(1.3)
589                ;;
590        2.0*)   [enable_apache_20]=yes
591                [with_apxs2]=$xs
592                AC_MSG_RESULT(2.0)
593                ;;
594        2.2*)   [enable_apache_22]=yes
595                [with_apxs22]=$xs
596                AC_MSG_RESULT(2.2)
597                ;;
598        2.4*)   [enable_apache_24]=yes
599                [with_apxs24]=$xs
600                AC_MSG_RESULT(2.4)
601                ;;
602        *)      AC_MSG_ERROR(unusable Apache versions: $v. Try setting --with-apxs, --with=apxs2, etc.)
603      esac
604   else 
605      AC_MSG_RESULT(cannot determine Apache version. Try setting --with-apxs, --with-apxs2, etc.)
606   fi
607 fi
608
609 # Apache 1.3 (mod_shib_13)
610 #   --enable-apache-13
611 #   --with-apxs      (DSO build, the normal way, uses apxs to derive build flags)
612
613 AC_ARG_ENABLE(apache-13,
614         AS_HELP_STRING([--enable-apache-13],[enable the Apache 1.3 module]),
615         [if test "x$enableval" = "x" ; then
616          WANT_APACHE_13=yes
617          else
618              WANT_APACHE_13="$enableval"
619          fi
620         ],[ WANT_APACHE_13=no ])
621 AC_MSG_CHECKING(whether to build Apache 1.3 module)
622 if test "$WANT_APACHE_13" != yes && test "$WANT_APACHE_13" != no ; then
623    WANT_APACHE_13=yes
624 fi
625 AC_MSG_RESULT($WANT_APACHE_13)
626
627 if test "$WANT_APACHE_13" = "yes" ; then
628     AC_ARG_WITH(apxs, 
629         AS_HELP_STRING([--with-apxs=FILE],[Specifies where to find the Apache 1.3 apxs script.]),
630         [
631         AC_MSG_CHECKING(for user-specified apxs name/location)
632         if test "$withval" != "no" ; then
633           if test "$withval" != "yes"; then
634             APXS=$withval
635             AC_MSG_RESULT("$withval")
636           fi
637         fi
638         ],
639         [
640         AC_PATH_PROG(APXS, apxs, no)
641         if test "$APXS" = "no" ; then
642           for i in /usr/sbin /usr/local/apache/bin ; do
643             if test "$APXS" = "no" && test -f "$i/apxs"; then
644               APXS="$i/apxs"
645             fi
646           done
647         fi
648         ])
649
650     AC_MSG_CHECKING([to see if apxs was located])
651     if test ! -f "$APXS" ; then
652         AC_MSG_RESULT(no)
653         AC_MSG_ERROR([Unable to locate apxs script. An Apache development package may be missing from your server, or you may need to use the --with-apxs option.])
654     fi
655     AC_MSG_RESULT($APXS)
656     AC_SUBST(APXS)
657
658     # extract settings we need from APXS -q
659     APXS_CC="`$APXS -q CC`"
660     APXS_CFLAGS="`$APXS -q CFLAGS` `$APXS -q CFLAGS_SHLIB`"
661     APXS_INCLUDE="`$APXS -q INCLUDEDIR`"
662 fi
663
664 AC_SUBST(APXS_CFLAGS)
665 AC_SUBST(APXS_INCLUDE)
666
667
668 # Apache 2.0 (mod_shib_20)
669 #   --enable-apache-20
670 #   --with-apxs2      (DSO build, the normal way, uses apxs to derive build flags)
671 #   --with-apr        (DSO build, APR development package installed separately)
672 #   --with-apu        (DSO build, APR-UTIL development package installed separately)
673
674 AC_ARG_ENABLE(apache-20,
675         AS_HELP_STRING([--enable-apache-20],[enable the Apache 2.0 module]),
676         [if test "x$enableval" = "x" ; then
677          WANT_APACHE_20=yes
678          else
679              WANT_APACHE_20="$enableval"
680          fi
681         ],[ WANT_APACHE_20=no ])
682 AC_MSG_CHECKING(whether to build Apache 2.0 module)
683 if test "$WANT_APACHE_20" != yes && test "$WANT_APACHE_20" != no ; then
684     WANT_APACHE_20=yes
685 fi
686 AC_MSG_RESULT($WANT_APACHE_20)
687
688 if test "$WANT_APACHE_20" = "yes" ; then
689     AC_ARG_WITH(apxs2, 
690         AS_HELP_STRING([--with-apxs2=FILE],[Specifies where to find the Apache 2.0 apxs script.]),
691         [
692         AC_MSG_CHECKING(for user-specified Apache 2.0 apxs name/location)
693         if test "$withval" != "no" ; then
694           if test "$withval" != "yes"; then
695             APXS2=$withval
696             AC_MSG_RESULT("$withval")
697           fi
698         fi
699         ],
700         [
701         AC_PATH_PROG(APXS2, apxs2, no)
702         if test "$APXS2" = "no" ; then
703             AC_PATH_PROG(APXS2, apxs, no)
704         fi
705         if test "$APXS2" = "no" ; then
706           for i in /usr/sbin /usr/local/apache2/bin /usr/local/apache/bin ; do
707             if test "$APXS2" = "no" && test -f "$i/apxs2" ; then
708               APXS2="$i/apxs2"
709             fi
710           done
711           if test "$APXS2" = "no" ; then
712             for i in /usr/sbin /usr/local/apache2/bin /usr/local/apache/bin ; do
713               if test "$APXS2" = "no" && test -f "$i/apxs" ; then
714                 APXS2="$i/apxs"
715               fi
716             done
717           fi
718         fi
719         ])
720
721     AC_MSG_CHECKING([to see if Apache 2.0 apxs was located])
722     if test ! -f "$APXS2" ; then
723         AC_MSG_RESULT(no)
724         AC_MSG_ERROR([Unable to locate Apache 2.0 apxs script. An Apache development package may be missing from your server, or you may need to use the --with-apxs2 option.])
725     fi
726     AC_MSG_RESULT($APXS2)
727     AC_SUBST(APXS2)
728
729     # APR settings
730     AC_ARG_WITH(apr, 
731         AS_HELP_STRING([--with-apr=PATH],[where apr-config is installed]),
732         [
733         AC_MSG_CHECKING(for user-specified apr-config name/location)
734         if test "$withval" != "no" ; then
735             if test "$withval" != "yes"; then
736                 APR_CONFIG=$withval
737                 AC_MSG_RESULT("$withval")
738             fi
739         fi
740         ],
741         [
742         AC_PATH_PROG(APR_CONFIG, apr-config,,[`$APXS2 -q SBINDIR`]:[$PATH])
743         ])
744         if test -f "${APR_CONFIG}"; then
745         APR_CFLAGS="`${APR_CONFIG} --cflags` `${APR_CONFIG} --cppflags` `${APR_CONFIG} --includes`"
746     else
747         AC_MSG_ERROR([Unable to locate apr-config, may need --with-apr option.])
748     fi
749
750     # APU settings
751     AC_ARG_WITH(apu, 
752         AS_HELP_STRING([--with-apu=PATH],[where apu-config is installed]),
753         [
754         AC_MSG_CHECKING(for user-specified apu-config name/location)
755         if test "$withval" != "no" ; then
756             if test "$withval" != "yes"; then
757                 APU_CONFIG=$withval
758                 AC_MSG_RESULT("$withval")
759             fi
760         fi
761         ],
762         [
763         AC_PATH_PROG(APU_CONFIG, apu-config,,[`$APXS2 -q SBINDIR`]:[$PATH])
764         ])
765     if test -f "${APU_CONFIG}"; then
766         APU_CFLAGS="`${APU_CONFIG} --includes`"
767     else
768         AC_MSG_ERROR([Unable to locate apu-config, may need --with-apu option.])
769     fi
770
771     # extract settings we need from APXS2 -q
772     APXS2_CC="`$APXS2 -q CC`"
773     APXS2_CFLAGS="`$APXS2 -q CPPFLAGS` `$APXS2 -q CFLAGS` $APR_CFLAGS $APU_CFLAGS"
774     APXS2_INCLUDE="`$APXS2 -q INCLUDEDIR`"
775 fi
776
777 AC_SUBST(APXS2_CFLAGS)
778 AC_SUBST(APXS2_INCLUDE)
779
780
781 # Apache 2.2 (mod_shib_22)
782 #   --enable-apache-22
783 #   --with-apxs22     (DSO build, the normal way, uses apxs to derive build flags)
784 #   --with-apr1       (DSO build, APR development package installed separately)
785 #   --with-apu1       (DSO build, APR-UTIL development package installed separately)
786
787 AC_ARG_ENABLE(apache-22,
788         AS_HELP_STRING([--enable-apache-22],[enable the Apache 2.2 module]),
789         [if test "x$enableval" = "x" ; then
790          WANT_APACHE_22=yes
791          else
792              WANT_APACHE_22="$enableval"
793          fi
794         ],[ WANT_APACHE_22=no ])
795 AC_MSG_CHECKING(whether to build Apache 2.2 module)
796 if test "$WANT_APACHE_22" != yes && test "$WANT_APACHE_22" != no ; then
797     WANT_APACHE_22=yes
798 fi
799 AC_MSG_RESULT($WANT_APACHE_22)
800
801 if test "$WANT_APACHE_22" = "yes" ; then
802     AC_ARG_WITH(apxs22, 
803         AS_HELP_STRING([--with-apxs22=FILE],[Specifies where to find the Apache 2.2 apxs script.]),
804         [
805         AC_MSG_CHECKING(for user-specified Apache 2.2 apxs name/location)
806         if test "$withval" != "no" ; then
807           if test "$withval" != "yes"; then
808             APXS22=$withval
809             AC_MSG_RESULT("$withval")
810           fi
811         fi
812         ],
813         [
814         AC_PATH_PROG(APXS22, apxs2, no)
815         if test "$APXS22" = "no" ; then
816             AC_PATH_PROG(APXS22, apxs, no)
817         fi
818         if test "$APXS22" = "no" ; then
819           for i in /usr/sbin /usr/local/apache2/bin /usr/local/apache/bin ; do
820             if test "$APXS22" = "no" && test -f "$i/apxs2" ; then
821               APXS22="$i/apxs2"
822             fi
823           done
824           if test "$APXS22" = "no" ; then
825             for i in /usr/sbin /usr/local/apache2/bin /usr/local/apache/bin ; do
826               if test "$APXS22" = "no" && test -f "$i/apxs" ; then
827                 APXS22="$i/apxs"
828               fi
829             done
830           fi
831         fi
832         ])
833
834     AC_MSG_CHECKING([to see if Apache 2.2 apxs was located])
835     if test ! -f "$APXS22" ; then
836         AC_MSG_RESULT(no)
837         AC_MSG_ERROR([Unable to locate Apache 2.2 apxs script. An Apache development package may be missing from your server, or you may need to use the --with-apxs22 option.])
838     fi
839     AC_MSG_RESULT($APXS22)
840     AC_SUBST(APXS22)
841
842     # APR1 settings
843     AC_ARG_WITH(apr1, 
844         AS_HELP_STRING([--with-apr1=PATH],[where apr-1-config is installed]),
845         [
846         AC_MSG_CHECKING(for user-specified apr-1-config name/location)
847         if test "$withval" != "no" ; then
848             if test "$withval" != "yes"; then
849                 APR1_CONFIG=$withval
850                 AC_MSG_RESULT("$withval")
851             fi
852         fi
853         ],
854         [
855         AC_PATH_PROG(APR1_CONFIG, apr-1-config,,[`$APXS22 -q SBINDIR`]:[$PATH])
856         ])
857         if test -f "${APR1_CONFIG}"; then
858         APR1_CFLAGS="`${APR1_CONFIG} --cflags` `${APR1_CONFIG} --cppflags` `${APR1_CONFIG} --includes`"
859     else
860         AC_MSG_ERROR([Unable to locate apr-1-config, may need --with-apr1 option.])
861     fi
862
863     # APU1 settings
864     AC_ARG_WITH(apu1, 
865         AS_HELP_STRING([--with-apu1=PATH],[where apu-1-config is installed]),
866         [
867         AC_MSG_CHECKING(for user-specified apu-1-config name/location)
868         if test "$withval" != "no" ; then
869             if test "$withval" != "yes"; then
870                 APU1_CONFIG=$withval
871                 AC_MSG_RESULT("$withval")
872             fi
873         fi
874         ],
875         [
876         AC_PATH_PROG(APU1_CONFIG, apu-1-config,,[`$APXS22 -q SBINDIR`]:[$PATH])
877         ])
878     if test -f "${APU1_CONFIG}"; then
879         APU1_CFLAGS="`${APU1_CONFIG} --includes`"
880     else
881         AC_MSG_ERROR([Unable to locate apu-1-config, may need --with-apu1 option.])
882     fi
883
884     # extract settings we need from APXS22 -q
885     APXS22_CC="`$APXS22 -q CC`"
886     APXS22_CFLAGS="`$APXS22 -q CPPFLAGS` `$APXS22 -q CFLAGS` $APR1_CFLAGS $APU1_CFLAGS"
887     APXS22_INCLUDE="`$APXS22 -q INCLUDEDIR`"
888 fi
889
890 AC_SUBST(APXS22_CFLAGS)
891 AC_SUBST(APXS22_INCLUDE)
892
893 # Apache 2.4 (mod_shib_24)
894 #   --enable-apache-24
895 #   --with-apxs24     (DSO build, the normal way, uses apxs to derive build flags)
896 #   --with-apr1       (DSO build, APR development package installed separately)
897 #   --with-apu1       (DSO build, APR-UTIL development package installed separately)
898
899 AC_ARG_ENABLE(apache-24,
900         AS_HELP_STRING([--enable-apache-24],[enable the Apache 2.4 module]),
901         [if test "x$enableval" = "x" ; then
902          WANT_APACHE_24=yes
903          else
904              WANT_APACHE_24="$enableval"
905          fi
906         ],[ WANT_APACHE_24=no ])
907 AC_MSG_CHECKING(whether to build Apache 2.4 module)
908 if test "$WANT_APACHE_24" != yes && test "$WANT_APACHE_24" != no ; then
909     WANT_APACHE_24=yes
910 fi
911 AC_MSG_RESULT($WANT_APACHE_24)
912
913 if test "$WANT_APACHE_24" = "yes" ; then
914     AC_ARG_WITH(apxs24, 
915         AS_HELP_STRING([--with-apxs24=FILE],[Specifies where to find the Apache 2.4 apxs script.]),
916         [
917         AC_MSG_CHECKING(for user-specified Apache 2.4 apxs name/location)
918         if test "$withval" != "no" ; then
919           if test "$withval" != "yes"; then
920             APXS24=$withval
921             AC_MSG_RESULT("$withval")
922           fi
923         fi
924         ],
925         [
926         AC_PATH_PROG(APXS24, apxs2, no)
927         if test "$APXS24" = "no" ; then
928             AC_PATH_PROG(APXS24, apxs, no)
929         fi
930         if test "$APXS24" = "no" ; then
931           for i in /usr/sbin /usr/local/apache2/bin /usr/local/apache/bin ; do
932             if test "$APXS24" = "no" && test -f "$i/apxs2" ; then
933               APXS24="$i/apxs2"
934             fi
935           done
936           if test "$APXS24" = "no" ; then
937             for i in /usr/sbin /usr/local/apache2/bin /usr/local/apache/bin ; do
938               if test "$APXS24" = "no" && test -f "$i/apxs" ; then
939                 APXS24="$i/apxs"
940               fi
941             done
942           fi
943         fi
944         ])
945
946     AC_MSG_CHECKING([to see if Apache 2.4 apxs was located])
947     if test ! -f "$APXS24" ; then
948         AC_MSG_RESULT(no)
949         AC_MSG_ERROR([Unable to locate Apache 2.4 apxs script. An Apache development package may be missing from your server, or you may need to use the --with-apxs24 option.])
950     fi
951     AC_MSG_RESULT($APXS24)
952     AC_SUBST(APXS24)
953
954     # If we haven't done this work already for Apache 2.2
955     if test "$WANT_APACHE_22" != "yes" ; then
956         # APR1 settings
957         AC_ARG_WITH(apr1,
958             AS_HELP_STRING([--with-apr1=PATH],[where apr-1-config is installed]),
959             [
960             AC_MSG_CHECKING(for user-specified apr-1-config name/location)
961             if test "$withval" != "no" ; then
962                 if test "$withval" != "yes"; then
963                     APR1_CONFIG=$withval
964                     AC_MSG_RESULT("$withval")
965                 fi
966             fi
967             ],
968             [
969             AC_PATH_PROG(APR1_CONFIG, apr-1-config,,[`$APXS24 -q SBINDIR`]:[$PATH])
970             ])
971         if test -f "${APR1_CONFIG}"; then
972             APR1_CFLAGS="`${APR1_CONFIG} --cflags` `${APR1_CONFIG} --cppflags` `${APR1_CONFIG} --includes`"
973         else
974             AC_MSG_ERROR([Unable to locate apr-1-config, may need --with-apr1 option.])
975         fi
976
977         # APU1 settings
978         AC_ARG_WITH(apu1,
979             AS_HELP_STRING([--with-apu1=PATH],[where apu-1-config is installed]),
980             [
981             AC_MSG_CHECKING(for user-specified apu-1-config name/location)
982             if test "$withval" != "no" ; then
983                 if test "$withval" != "yes"; then
984                     APU1_CONFIG=$withval
985                     AC_MSG_RESULT("$withval")
986                 fi
987             fi
988             ],
989             [
990             AC_PATH_PROG(APU1_CONFIG, apu-1-config,,[`$APXS24 -q SBINDIR`]:[$PATH])
991             ])
992         if test -f "${APU1_CONFIG}"; then
993             APU1_CFLAGS="`${APU1_CONFIG} --includes`"
994         else
995             AC_MSG_ERROR([Unable to locate apu-1-config, may need --with-apu1 option.])
996         fi
997     fi
998     
999     # extract settings we need from APXS24 -q
1000     APXS24_CC="`$APXS24 -q CC`"
1001     APXS24_CFLAGS="`$APXS24 -q CPPFLAGS` `$APXS24 -q CFLAGS` $APR1_CFLAGS $APU1_CFLAGS"
1002     APXS24_INCLUDE="`$APXS24 -q INCLUDEDIR`"
1003 fi
1004
1005 AC_SUBST(APXS24_CFLAGS)
1006 AC_SUBST(APXS24_INCLUDE)
1007
1008 # always output the Makefile, even if you don't use it
1009 AC_CONFIG_FILES([apache/Makefile])
1010 AM_CONDITIONAL(BUILD_AP13,test "$WANT_APACHE_13" = "yes")
1011 AM_CONDITIONAL(BUILD_AP20,test "$WANT_APACHE_20" = "yes")
1012 AM_CONDITIONAL(BUILD_AP22,test "$WANT_APACHE_22" = "yes")
1013 AM_CONDITIONAL(BUILD_AP24,test "$WANT_APACHE_24" = "yes")
1014
1015 # add the apache module to the list of wanted subdirs..
1016 if test "$WANT_APACHE_13" = "yes" || test "$WANT_APACHE_20" = "yes" || test "$WANT_APACHE_22" = "yes" || test "$WANT_APACHE_24" = "yes" ; then
1017     WANT_SUBDIRS="$WANT_SUBDIRS apache"
1018 fi
1019
1020
1021 #
1022 # Implement the checks of the ODBC Storage Service
1023 #
1024 # 1) Assume the user wants ODBC; if it's not found then just continue without
1025 # 2) If the user specifically requested odbc, look for it and ERROR if not found
1026 # 3) If the user specifically requested no odbc, don't build it.
1027 #
1028
1029 AC_CONFIG_FILES([odbc-store/Makefile])
1030
1031 # determine whether we should enable the odbc ccache
1032 AC_ARG_ENABLE([odbc],
1033         AS_HELP_STRING([--disable-odbc],[disable the ODBC Storage Service]),
1034         [odbc_enabled=$enableval], [odbc_enabled=default])
1035 if test "x$odbc_enabled" = "x" ; then
1036     odbc_enabled=yes
1037 fi
1038
1039 # Are we trying to build ODBC?
1040 AC_MSG_CHECKING(whether to build the ODBC storage service)
1041 if test "$odbc_enabled" = "yes" ; then
1042     build_odbc=yes
1043     AC_MSG_RESULT(yes)
1044 elif test "$odbc_enabled" = "default" ; then
1045     build_odbc=yes
1046     AC_MSG_RESULT([yes, if it can be found])
1047 else
1048     build_odbc=no
1049     AC_MSG_RESULT(no)
1050 fi
1051
1052 # If we're trying to build ODBC, try to find the odbc_config program.
1053 if test "$build_odbc" = "yes" ; then
1054     odbc_dir=""
1055     AC_ARG_WITH(odbc,
1056            AS_HELP_STRING([--with-odbc=PATH],[directory where odbc is installed]),
1057             [if test "$with_odbc" = no ; then
1058             AC_MSG_ERROR([Try running --disable-odbc instead.])
1059          elif test "$with_odbc" != yes ; then
1060             odbc_dir="$with_odbc/bin"
1061             if test "$with_odbc" != /usr ; then
1062                 ODBC_CFLAGS="-I$with_odbc/include"
1063                 ODBC_LIBS="-L$with_odbc/lib"
1064             fi
1065          fi])
1066
1067    AC_PATH_PROG(ODBC_CONFIG, odbc_config, no, $odbc_dir $PATH )
1068    if test "$ODBC_CONFIG" = no ; then
1069       AC_MSG_WARN([Cannot find odbc_config, will try to guess settings.])
1070       ODBC_LIBS="$ODBC_LIBS -lodbc"
1071    else
1072       ODBC_CFLAGS=`$ODBC_CONFIG --cflags`
1073       ODBC_LIBS=`$ODBC_CONFIG --libs`
1074    fi
1075
1076    save_CPPFLAGS="$CPPFLAGS"
1077    CPPFLAGS="$CPPFLAGS $ODBC_CFLAGS"
1078
1079    AC_CHECK_HEADER([sql.h], [have_sql_h=yes], [have_sql_h=no])
1080    if test "$have_sql_h" = no -a "$odbc_enabled" = "yes" ; then
1081      AC_MSG_ERROR(unable to find ODBC header files)
1082    fi
1083
1084    if test "$have_sql_h" = yes ; then
1085       save_LIBS="$LIBS"
1086       LIBS="$LIBS $ODBC_LIBS"
1087       AC_MSG_CHECKING(if we can link againt ODBC)
1088       AC_LINK_IFELSE(
1089         [AC_LANG_PROGRAM([[#include <sql.h>
1090  #include <sqlext.h>
1091  #include <stdio.h>]],
1092             [[SQLSetEnvAttr(SQL_NULL_HANDLE, SQL_ATTR_CONNECTION_POOLING, (void*)SQL_CP_ONE_PER_HENV, 0)]])],
1093         [have_odbc_libs=yes],[have_odbc_libs=no])
1094       LIBS="$save_LIBS"
1095       if test "$have_odbc_libs" = no ; then
1096          if test "$odbc_enabled" = "yes" ; then
1097             AC_MSG_ERROR([unable to link with ODBC Library])
1098          else
1099             AC_MSG_RESULT([no, skipping ODBC])
1100          fi
1101       fi
1102    fi
1103
1104    CPPFLAGS="$save_CPPFLAGS"
1105 fi
1106
1107 # if have_odbc_libs=yes then go ahead with building ODBC
1108 if test "$have_odbc_libs" = yes ; then
1109    # this AC_MSG_RESULT is from above!
1110    AC_MSG_RESULT(yes)
1111    WANT_SUBDIRS="$WANT_SUBDIRS odbc-store"
1112    AC_SUBST(ODBC_CFLAGS)
1113    AC_SUBST(ODBC_LIBS)
1114 fi
1115
1116 # GSS-API checking
1117
1118 GSSAPI_ROOT="/usr"
1119 AC_ARG_WITH(gssapi-includes,
1120   AS_HELP_STRING([--with-gssapi-includes=DIR],[Specify location of GSSAPI header]),
1121   [ GSSAPI_INCS="-I$withval"
1122     want_gss="yes" ]
1123 )
1124
1125 AC_ARG_WITH(gssapi-libs,
1126   AS_HELP_STRING([--with-gssapi-libs=DIR],[Specify location of GSSAPI libs]),
1127   [ GSSAPI_LIB_DIR="-L$withval"
1128     want_gss="yes" ]
1129 )
1130
1131 AC_ARG_WITH(gssapi,
1132   AS_HELP_STRING([--with-gssapi=DIR],[Where to look for GSSAPI]),
1133   [ GSSAPI_ROOT="$withval"
1134   if test x"$GSSAPI_ROOT" != xno; then
1135     want_gss="yes"
1136     if test x"$GSSAPI_ROOT" = xyes; then
1137       dnl if yes, then use default root
1138       GSSAPI_ROOT="/usr"
1139     fi
1140   fi
1141 ])
1142
1143 save_CPPFLAGS="$CPPFLAGS"
1144 AC_MSG_CHECKING([if GSSAPI support is requested])
1145 if test x"$want_gss" = xyes; then
1146   AC_MSG_RESULT(yes)
1147
1148   if test -z "$GSSAPI_INCS"; then
1149      if test -f "$GSSAPI_ROOT/bin/krb5-config"; then
1150         GSSAPI_INCS=`$GSSAPI_ROOT/bin/krb5-config --cflags gssapi`
1151      elif test "$GSSAPI_ROOT" != "yes"; then
1152         GSSAPI_INCS="-I$GSSAPI_ROOT/include"
1153      fi
1154   fi
1155
1156   CPPFLAGS="$CPPFLAGS $GSSAPI_INCS"
1157
1158   AC_CHECK_HEADER(gss.h,
1159     [
1160       dnl found in the given dirs
1161       AC_DEFINE([SHIBSP_HAVE_GSSGNU],[1],[if you have the GNU gssapi libraries])
1162       gnu_gss=yes
1163     ],
1164     [
1165       dnl not found, check Heimdal or MIT
1166       AC_CHECK_HEADERS([gssapi/gssapi.h], [], [not_mit=1])
1167       AC_CHECK_HEADERS(
1168         [gssapi/gssapi_generic.h gssapi/gssapi_krb5.h],
1169         [],
1170         [not_mit=1],
1171         [
1172 AC_INCLUDES_DEFAULT
1173 #ifdef HAVE_GSSAPI_GSSAPI_H
1174 #include <gssapi/gssapi.h>
1175 #endif
1176         ])
1177       if test "x$not_mit" = "x1"; then
1178         dnl MIT not found, check for Heimdal
1179         AC_CHECK_HEADER([gssapi.h],
1180             [
1181               dnl found
1182               AC_DEFINE([SHIBSP_HAVE_GSSHEIMDAL],[1],[if you have the Heimdal gssapi libraries])
1183             ],
1184             [
1185               dnl no header found, disabling GSS
1186               want_gss=no
1187               AC_MSG_WARN([disabling GSSAPI since no header files was found])
1188             ]
1189           )
1190       else
1191         dnl MIT found
1192         AC_DEFINE([SHIBSP_HAVE_GSSMIT],[1],[if you have the MIT gssapi libraries])
1193         dnl check if we have a really old MIT kerberos (<= 1.2)
1194         AC_MSG_CHECKING([if gssapi headers declare GSS_C_NT_HOSTBASED_SERVICE])
1195         AC_COMPILE_IFELSE([
1196           AC_LANG_PROGRAM([[
1197 #include <gssapi/gssapi.h>
1198 #include <gssapi/gssapi_generic.h>
1199 #include <gssapi/gssapi_krb5.h>
1200           ]],[[
1201             gss_import_name(
1202                             (OM_uint32 *)0,
1203                             (gss_buffer_t)0,
1204                             GSS_C_NT_HOSTBASED_SERVICE,
1205                             (gss_name_t *)0);
1206           ]])
1207         ],[
1208           AC_MSG_RESULT([yes])
1209         ],[
1210           AC_MSG_RESULT([no])
1211           AC_DEFINE([HAVE_OLD_GSSMIT],[1],[if you have an old MIT gssapi library, lacking GSS_C_NT_HOSTBASED_SERVICE])
1212         ])
1213       fi
1214     ]
1215   )
1216 else
1217   AC_MSG_RESULT(no)
1218 fi
1219 if test x"$want_gss" = xyes; then
1220   AC_DEFINE([SHIBSP_HAVE_GSSAPI],[1],[if you have the gssapi libraries])
1221
1222   if test -n "$gnu_gss"; then
1223     LDFLAGS="$LDFLAGS $GSSAPI_LIB_DIR"
1224     LIBS="$LIBS -lgss"
1225   else
1226     if test -z "$GSSAPI_LIB_DIR"; then
1227       GSSAPI_LIB_DIR="$GSSAPI_ROOT/lib$libsuff"
1228     fi
1229     if test "$GSSAPI_ROOT" != "yes"; then
1230        LDFLAGS="$LDFLAGS -L$GSSAPI_ROOT/lib$libsuff"
1231     fi
1232     if test -f "$GSSAPI_ROOT/bin/krb5-config"; then
1233       dnl krb5-config doesn't have --libs-only-L or similar, put everything
1234       dnl into LIBS
1235       gss_libs=`$GSSAPI_ROOT/bin/krb5-config --libs gssapi`
1236     else
1237       if test "x$not_mit" = "x1"; then
1238         gss_libs="-lgssapi"
1239       else
1240         gss_libs="-lgssapi_krb5"
1241       fi
1242     fi
1243     LIBS="$LIBS $gss_libs"
1244   fi
1245
1246   AC_MSG_CHECKING([whether GSS-API naming extensions are available])
1247   AC_COMPILE_IFELSE(
1248     [AC_LANG_PROGRAM([[
1249 #ifdef SHIBSP_HAVE_GSSGNU
1250 # include <gss.h>
1251 #elif defined SHIBSP_HAVE_GSSMIT
1252 # include <gssapi/gssapi.h>
1253 # include <gssapi/gssapi_ext.h>
1254 #else
1255 # include <gssapi.h>
1256 #endif]],
1257     [[gss_get_name_attribute(NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL);]])],
1258     [AC_MSG_RESULT([yes])AC_DEFINE([HAVE_GSSAPI_NAMINGEXTS],[1],[Define to 1 if GSS-API naming extensions are available.])],
1259     [AC_MSG_RESULT([no])])
1260
1261   AC_MSG_CHECKING([whether GSS-API composite name import is available])
1262   AC_COMPILE_IFELSE(
1263     [AC_LANG_PROGRAM([[
1264 #ifdef SHIBSP_HAVE_GSSGNU
1265 # include <gss.h>
1266 #elif defined SHIBSP_HAVE_GSSMIT
1267 # include <gssapi/gssapi.h>
1268 # include <gssapi/gssapi_ext.h>
1269 #else
1270 # include <gssapi.h>
1271 #endif]],
1272     [[
1273     OM_uint32 minor;
1274     gss_name_t srcname;
1275     gss_buffer_desc importbuf;
1276     gss_import_name(&minor, &importbuf, GSS_C_NT_EXPORT_NAME_COMPOSITE, &srcname);
1277     ]])],
1278     [AC_MSG_RESULT([yes])AC_DEFINE([HAVE_GSSAPI_COMPOSITE_NAME],[1],[Define to 1 if GSS-API composite name import is available.])],
1279     [AC_MSG_RESULT([no])])
1280     
1281 else
1282   CPPFLAGS="$save_CPPFLAGS"
1283 fi
1284
1285
1286 AC_SUBST(WANT_SUBDIRS)
1287
1288 if test -n "$APXS_CC" && test "$APXS_CC" != "$CC" ; then
1289   echo "=================================================================="
1290   echo "WARNING: You have chosen to compile Apache-1.3 modules with a different"
1291   echo "         compiler than the one used to compile Apache."
1292   echo ""
1293   echo "    Current compiler:      $CC"
1294   echo "   Apache's compiler:      $APXS_CC"
1295   echo ""
1296   echo "This could cause problems."
1297   echo "=================================================================="
1298 fi
1299
1300 if test -n "$APXS2_CC" && test "$APXS2_CC" != "$CC" ; then
1301   echo "=================================================================="
1302   echo "WARNING: You have chosen to compile Apache-2.0 modules with a different"
1303   echo "         compiler than the one used to compile Apache."
1304   echo ""
1305   echo "    Current compiler:      $CC"
1306   echo "   Apache's compiler:      $APXS2_CC"
1307   echo ""
1308   echo "This could cause problems."
1309   echo "=================================================================="
1310 fi
1311
1312 if test -n "$APXS22_CC" && test "$APXS22_CC" != "$CC" ; then
1313   echo "=================================================================="
1314   echo "WARNING: You have chosen to compile Apache-2.2 modules with a different"
1315   echo "         compiler than the one used to compile Apache."
1316   echo ""
1317   echo "    Current compiler:      $CC"
1318   echo "   Apache's compiler:      $APXS22_CC"
1319   echo ""
1320   echo "This could cause problems."
1321   echo "=================================================================="
1322 fi
1323
1324 if test -n "$APXS24_CC" && test "$APXS24_CC" != "$CC" ; then
1325   echo "=================================================================="
1326   echo "WARNING: You have chosen to compile Apache-2.4 modules with a different"
1327   echo "         compiler than the one used to compile Apache."
1328   echo ""
1329   echo "    Current compiler:      $CC"
1330   echo "   Apache's compiler:      $APXS24_CC"
1331   echo ""
1332   echo "This could cause problems."
1333   echo "=================================================================="
1334 fi
1335
1336 LIBTOOL="$LIBTOOL --silent"
1337
1338 AC_OUTPUT