]> granicus.if.org Git - apache/blob - acinclude.m4
Removes 1.3-specific phrasing in a few places.
[apache] / acinclude.m4
1
2 dnl APACHE_HELP_STRING(LHS, RHS)
3 dnl Autoconf 2.50 can not handle substr correctly.  It does have 
4 dnl AC_HELP_STRING, so let's try to call it if we can.
5 dnl Note: this define must be on one line so that it can be properly returned
6 dnl as the help string.
7 AC_DEFUN(APACHE_HELP_STRING,[ifelse(regexp(AC_ACVERSION, 2\.1), -1, AC_HELP_STRING($1,$2),[  ]$1 substr([                       ],len($1))$2)])dnl
8
9 dnl APACHE_SUBST(VARIABLE)
10 dnl Makes VARIABLE available in generated files
11 dnl (do not use @variable@ in Makefiles, but $(variable))
12 AC_DEFUN(APACHE_SUBST,[
13   APACHE_VAR_SUBST="$APACHE_VAR_SUBST $1"
14   AC_SUBST($1)
15 ])
16
17 dnl APACHE_FAST_OUTPUT(FILENAME)
18 dnl Perform substitutions on FILENAME (Makefiles only)
19 AC_DEFUN(APACHE_FAST_OUTPUT,[
20   APACHE_FAST_OUTPUT_FILES="$APACHE_FAST_OUTPUT_FILES $1"
21 ])
22
23 dnl APACHE_GEN_CONFIG_VARS
24 dnl Creates config_vars.mk
25 AC_DEFUN(APACHE_GEN_CONFIG_VARS,[
26   APACHE_SUBST(abs_srcdir)
27   APACHE_SUBST(bindir)
28   APACHE_SUBST(sbindir)
29   APACHE_SUBST(cgidir)
30   APACHE_SUBST(logfiledir)
31   APACHE_SUBST(exec_prefix)
32   APACHE_SUBST(datadir)
33   APACHE_SUBST(localstatedir)
34   APACHE_SUBST(mandir)
35   APACHE_SUBST(libdir)
36   APACHE_SUBST(libexecdir)
37   APACHE_SUBST(htdocsdir)
38   APACHE_SUBST(manualdir)
39   APACHE_SUBST(includedir)
40   APACHE_SUBST(errordir)
41   APACHE_SUBST(iconsdir)
42   APACHE_SUBST(sysconfdir)
43   APACHE_SUBST(installbuilddir)
44   APACHE_SUBST(runtimedir)
45   APACHE_SUBST(proxycachedir)
46   APACHE_SUBST(other_targets)
47   APACHE_SUBST(progname)
48   APACHE_SUBST(prefix)
49   APACHE_SUBST(AWK)
50   APACHE_SUBST(CC)
51   APACHE_SUBST(CPP)
52   APACHE_SUBST(CXX)
53   APACHE_SUBST(CPPFLAGS)
54   APACHE_SUBST(CFLAGS)
55   APACHE_SUBST(CXXFLAGS)
56   APACHE_SUBST(LTFLAGS)
57   APACHE_SUBST(LDFLAGS)
58   APACHE_SUBST(LT_LDFLAGS)
59   APACHE_SUBST(SH_LDFLAGS)
60   APACHE_SUBST(HTTPD_LDFLAGS)
61   APACHE_SUBST(UTIL_LDFLAGS)
62   APACHE_SUBST(LIBS)
63   APACHE_SUBST(DEFS)
64   APACHE_SUBST(INCLUDES)
65   APACHE_SUBST(NOTEST_CPPFLAGS)
66   APACHE_SUBST(NOTEST_CFLAGS)
67   APACHE_SUBST(NOTEST_CXXFLAGS)
68   APACHE_SUBST(NOTEST_LDFLAGS)
69   APACHE_SUBST(NOTEST_LIBS)
70   APACHE_SUBST(EXTRA_CPPFLAGS)
71   APACHE_SUBST(EXTRA_CFLAGS)
72   APACHE_SUBST(EXTRA_CXXFLAGS)
73   APACHE_SUBST(EXTRA_LDFLAGS)
74   APACHE_SUBST(EXTRA_LIBS)
75   APACHE_SUBST(EXTRA_INCLUDES)
76   APACHE_SUBST(LIBTOOL)
77   APACHE_SUBST(SHELL)
78   APACHE_SUBST(RSYNC)
79   APACHE_SUBST(MODULE_DIRS)
80   APACHE_SUBST(MODULE_CLEANDIRS)
81   APACHE_SUBST(PORT)
82   APACHE_SUBST(SSLPORT)
83   APACHE_SUBST(nonssl_listen_stmt_1)
84   APACHE_SUBST(nonssl_listen_stmt_2)
85   APACHE_SUBST(CORE_IMPLIB_FILE)
86   APACHE_SUBST(CORE_IMPLIB)
87   APACHE_SUBST(SH_LIBS)
88   APACHE_SUBST(SH_LIBTOOL)
89   APACHE_SUBST(MK_IMPLIB)
90   APACHE_SUBST(MKDEP)
91   APACHE_SUBST(INSTALL_PROG_FLAGS)
92   APACHE_SUBST(DSO_MODULES)
93   APACHE_SUBST(APR_BINDIR)
94   APACHE_SUBST(APR_INCLUDEDIR)
95   APACHE_SUBST(APR_VERSION)
96   APACHE_SUBST(APR_CONFIG)
97   APACHE_SUBST(APU_BINDIR)
98   APACHE_SUBST(APU_INCLUDEDIR)
99   APACHE_SUBST(APU_VERSION)
100   APACHE_SUBST(APU_CONFIG)
101
102   abs_srcdir="`(cd $srcdir && pwd)`"
103
104   echo creating config_vars.mk
105   test -d build || $mkdir_p build
106   > build/config_vars.mk
107   for i in $APACHE_VAR_SUBST; do
108     eval echo "$i = \$$i" >> build/config_vars.mk
109   done
110 ])
111
112 dnl APACHE_GEN_MAKEFILES
113 dnl Creates Makefiles
114 AC_DEFUN(APACHE_GEN_MAKEFILES,[
115   $SHELL $srcdir/build/fastgen.sh $srcdir $ac_cv_mkdir_p $BSD_MAKEFILE $APACHE_FAST_OUTPUT_FILES
116 ])
117
118 dnl ## APACHE_OUTPUT(file)
119 dnl ## adds "file" to the list of files generated by AC_OUTPUT
120 dnl ## This macro can be used several times.
121 AC_DEFUN(APACHE_OUTPUT, [
122   APACHE_OUTPUT_FILES="$APACHE_OUTPUT_FILES $1"
123 ])
124
125 dnl
126 dnl APACHE_TYPE_RLIM_T
127 dnl
128 dnl If rlim_t is not defined, define it to int
129 dnl
130 AC_DEFUN(APACHE_TYPE_RLIM_T, [
131   AC_CACHE_CHECK([for rlim_t], ac_cv_type_rlim_t, [
132     AC_TRY_COMPILE([
133 #include <sys/types.h>
134 #include <sys/time.h>
135 #include <sys/resource.h>
136 ], [rlim_t spoon;], [
137       ac_cv_type_rlim_t=yes
138     ],[ac_cv_type_rlim_t=no
139     ])
140   ])
141   if test "$ac_cv_type_rlim_t" = "no" ; then
142       AC_DEFINE(rlim_t, int,
143           [Define to 'int' if <sys/resource.h> doesn't define it for us])
144   fi
145 ])
146
147 dnl APACHE_MODPATH_INIT(modpath)
148 AC_DEFUN(APACHE_MODPATH_INIT,[
149   current_dir=$1
150   modpath_current=modules/$1
151   modpath_static=
152   modpath_shared=
153   test -d $1 || $srcdir/build/mkdir.sh $modpath_current
154   > $modpath_current/modules.mk
155 ])dnl
156 dnl
157 AC_DEFUN(APACHE_MODPATH_FINISH,[
158   echo "DISTCLEAN_TARGETS = modules.mk" >> $modpath_current/modules.mk
159   echo "static = $modpath_static" >> $modpath_current/modules.mk
160   echo "shared = $modpath_shared" >> $modpath_current/modules.mk
161   if test ! -z "$modpath_static" -o ! -z "$modpath_shared"; then
162     MODULE_DIRS="$MODULE_DIRS $current_dir"
163   else
164     MODULE_CLEANDIRS="$MODULE_CLEANDIRS $current_dir"
165   fi
166   APACHE_FAST_OUTPUT($modpath_current/Makefile)
167 ])dnl
168 dnl
169 dnl APACHE_MODPATH_ADD(name[, shared[, objects [, ldflags[, libs]]]])
170 AC_DEFUN(APACHE_MODPATH_ADD,[
171   if test -z "$3"; then
172     objects="mod_$1.lo"
173   else
174     objects="$3"
175   fi
176
177   if test -z "$module_standalone"; then
178     if test -z "$2"; then
179       # The filename of a convenience library must have a "lib" prefix:
180       libname="libmod_$1.la"
181       BUILTIN_LIBS="$BUILTIN_LIBS $modpath_current/$libname"
182       modpath_static="$modpath_static $libname"
183       cat >>$modpath_current/modules.mk<<EOF
184 $libname: $objects
185         \$(MOD_LINK) $objects $5
186 EOF
187       if test ! -z "$5"; then
188         APR_ADDTO(AP_LIBS, [$5])
189       fi
190     else
191       apache_need_shared=yes
192       libname="mod_$1.la"
193       shobjects=`echo $objects | sed 's/\.lo/.slo/g'`
194       modpath_shared="$modpath_shared $libname"
195       cat >>$modpath_current/modules.mk<<EOF
196 $libname: $shobjects
197         \$(SH_LINK) -rpath \$(libexecdir) -module -avoid-version $4 $objects $5
198 EOF
199     fi
200   fi
201 ])dnl
202
203 dnl
204 dnl APACHE_MPM_MODULE(name[, shared[, objects[, config[, path]]]])
205 dnl
206 dnl Provide information for building the MPM.  (Enablement is handled using
207 dnl --with-mpm/--enable-mpms-shared.)
208 dnl
209 dnl name     -- name of MPM, same as MPM directory name
210 dnl shared   -- "shared" to indicate shared module build, empty string otherwise
211 dnl objects  -- one or more .lo files to link into the MPM module (default: mpmname.lo)
212 dnl config   -- configuration logic to run if the MPM is enabled
213 dnl path     -- relative path to MPM (default: server/mpm/mpmname)
214 dnl
215 AC_DEFUN(APACHE_MPM_MODULE,[
216     if ap_mpm_is_enabled $1; then
217         if test -z "$3"; then
218             objects="$1.lo"
219         else
220             objects="$3"
221         fi
222
223         if test -z "$5"; then
224             mpmpath="server/mpm/$1"
225         else
226             mpmpath=$5
227         fi
228
229         dnl VPATH support
230         test -d $mpmpath || $srcdir/build/mkdir.sh $mpmpath
231
232         APACHE_FAST_OUTPUT($mpmpath/Makefile)
233
234         if test -z "$2"; then
235             libname="lib$1.la"
236             cat >$mpmpath/modules.mk<<EOF
237 $libname: $objects
238         \$(MOD_LINK) $objects
239 DISTCLEAN_TARGETS = modules.mk
240 static = $libname
241 shared =
242 EOF
243         else
244             apache_need_shared=yes
245             libname="mod_mpm_$1.la"
246             shobjects=`echo $objects | sed 's/\.lo/.slo/g'`
247             cat >$mpmpath/modules.mk<<EOF
248 $libname: $shobjects
249         \$(SH_LINK) -rpath \$(libexecdir) -module -avoid-version $objects
250 DISTCLEAN_TARGETS = modules.mk
251 static =
252 shared = $libname
253 EOF
254             # add default MPM to LoadModule list
255             if test $1 = $default_mpm; then
256                 DSO_MODULES="$DSO_MODULES mpm_$1"
257             fi
258         fi
259         $4
260     fi
261 ])dnl
262
263 dnl
264 dnl APACHE_MODULE(name, helptext[, objects[, structname[, default[, config]]]])
265 dnl
266 dnl default is one of:
267 dnl   yes    -- enabled by default. user must explicitly disable.
268 dnl   no     -- disabled under default, most, all. user must explicitly enable.
269 dnl   most   -- disabled by default. enabled explicitly or with most or all.
270 dnl   static -- enabled as static by default, must be explicitly changed.
271 dnl   ""     -- disabled under default, most. enabled explicitly or with all.
272 dnl
273 dnl basically: yes/no is a hard setting. "most" means follow the "most"
274 dnl            setting. otherwise, fall under the "all" setting.
275 dnl            explicit yes/no always overrides.
276 dnl
277 AC_DEFUN(APACHE_MODULE,[
278   AC_MSG_CHECKING(whether to enable mod_$1)
279   define([optname],[--]ifelse($5,yes,disable,enable)[-]translit($1,_,-))dnl
280   AC_ARG_ENABLE(translit($1,_,-),APACHE_HELP_STRING(optname(),$2),,enable_$1=ifelse($5,,maybe-all,$5))
281   undefine([optname])dnl
282   _apmod_extra_msg=""
283   dnl When --enable-modules=most is set and the module was not explicitly
284   dnl requested, allow a module to disable itself if its pre-reqs fail.
285   if test "$module_selection" = "most" -a "$enable_$1" = "most"; then
286     _apmod_error_fatal="no"
287   else
288     _apmod_error_fatal="yes"
289   fi
290   if test "$enable_$1" = "static"; then
291     enable_$1=yes
292   elif test "$enable_$1" = "yes"; then
293     enable_$1=$module_default
294     _apmod_extra_msg=" ($module_selection)"
295   elif test "$enable_$1" = "most"; then
296     if test "$module_selection" = "most" -o "$module_selection" = "all"; then
297       enable_$1=$module_default
298       _apmod_extra_msg=" ($module_selection)"
299     elif test "$enable_$1" != "yes"; then
300       enable_$1=no
301     fi
302   elif test "$enable_$1" = "maybe-all"; then
303     if test "$module_selection" = "all"; then
304       enable_$1=$module_default
305       _apmod_extra_msg=" (all)"
306     else
307       enable_$1=no
308     fi
309   fi
310   if test "$enable_$1" != "no"; then
311     dnl If we plan to enable it, allow the module to run some autoconf magic
312     dnl that may disable it because of missing dependencies.
313     ifelse([$6],,:,[AC_MSG_RESULT([checking dependencies])
314                     $6
315                     AC_MSG_CHECKING(whether to enable mod_$1)
316                     if test "$enable_$1" = "no"; then
317                       if test "$_apmod_error_fatal" = "no"; then
318                         _apmod_extra_msg=" (disabled)"
319                       else
320                         AC_MSG_ERROR([mod_$1 has been requested but can not be built due to prerequisite failures])
321                       fi
322                     fi])
323   fi
324   AC_MSG_RESULT($enable_$1$_apmod_extra_msg)
325   if test "$enable_$1" != "no"; then
326     case "$enable_$1" in
327     shared*)
328       enable_$1=`echo $enable_$1|sed 's/shared,*//'`
329       sharedobjs=yes
330       shared=yes
331       DSO_MODULES="$DSO_MODULES $1"
332       ;;
333     *)
334       MODLIST="$MODLIST ifelse($4,,$1,$4)"
335       if test "$1" = "so"; then
336           sharedobjs=yes
337       fi
338       shared="";;
339     esac
340     define([modprefix], [MOD_]translit($1, [a-z-], [A-Z_]))
341     APACHE_MODPATH_ADD($1, $shared, $3,, [\$(]modprefix[_LDADD)])
342     APACHE_SUBST(modprefix[_LDADD])
343     undefine([modprefix])
344   fi
345 ])dnl
346
347 dnl
348 dnl APACHE_ENABLE_MODULES
349 dnl
350 AC_DEFUN(APACHE_ENABLE_MODULES,[
351   module_selection=default
352   module_default=yes
353
354   AC_ARG_ENABLE(modules,
355   APACHE_HELP_STRING(--enable-modules=MODULE-LIST,Space-separated list of modules to enable | "all" | "most" | "none"),[
356     if test "$enableval" = "none"; then
357        module_default=no
358        module_selection=none
359     else
360       for i in $enableval; do
361         if test "$i" = "all" -o "$i" = "most"; then
362           module_selection=$i
363         else
364           i=`echo $i | sed 's/-/_/g'`
365           eval "enable_$i=yes"
366         fi
367       done
368     fi
369   ])
370   
371   AC_ARG_ENABLE(mods-shared,
372   APACHE_HELP_STRING(--enable-mods-shared=MODULE-LIST,Space-separated list of shared modules to enable | "all" | "most"),[
373     for i in $enableval; do
374       if test "$i" = "all" -o "$i" = "most"; then
375         module_selection=$i
376         module_default=shared
377       else
378         i=`echo $i | sed 's/-/_/g'`
379         eval "enable_$i=shared"
380       fi
381     done
382   ])
383 ])
384
385 AC_DEFUN(APACHE_REQUIRE_CXX,[
386   if test -z "$apache_cxx_done"; then
387     AC_PROG_CXX
388     AC_PROG_CXXCPP
389     apache_cxx_done=yes
390   fi
391 ])
392
393 dnl
394 dnl APACHE_CHECK_SSL_TOOLKIT
395 dnl
396 dnl Configure for the detected openssl/ssl-c toolkit installation, giving
397 dnl preference to "--with-ssl=<path>" if it was specified.
398 dnl
399 AC_DEFUN(APACHE_CHECK_SSL_TOOLKIT,[
400 if test "x$ap_ssltk_configured" = "x"; then
401   dnl initialise the variables we use
402   ap_ssltk_found=""
403   ap_ssltk_base=""
404   ap_ssltk_libs=""
405   ap_ssltk_type=""
406
407   dnl Determine the SSL/TLS toolkit's base directory, if any
408   AC_MSG_CHECKING([for user-provided SSL/TLS toolkit base])
409   AC_ARG_WITH(sslc, APACHE_HELP_STRING(--with-sslc=DIR,RSA SSL-C SSL/TLS toolkit), [
410     dnl If --with-sslc specifies a directory, we use that directory or fail
411     if test "x$withval" != "xyes" -a "x$withval" != "x"; then
412       dnl This ensures $withval is actually a directory and that it is absolute
413       ap_ssltk_base="`cd $withval ; pwd`"
414     fi
415     ap_ssltk_type="sslc"
416   ])
417   AC_ARG_WITH(ssl, APACHE_HELP_STRING(--with-ssl=DIR,OpenSSL SSL/TLS toolkit), [
418     dnl If --with-ssl specifies a directory, we use that directory or fail
419     if test "x$withval" != "xyes" -a "x$withval" != "x"; then
420       dnl This ensures $withval is actually a directory and that it is absolute
421       ap_ssltk_base="`cd $withval ; pwd`"
422     fi
423   ])
424   if test "x$ap_ssltk_base" = "x"; then
425     AC_MSG_RESULT(none)
426   else
427     AC_MSG_RESULT($ap_ssltk_base)
428   fi
429
430   dnl Run header and version checks
431   saved_CPPFLAGS="$CPPFLAGS"
432   saved_LIBS="$LIBS"
433   saved_LDFLAGS="$LDFLAGS"
434   SSL_LIBS=""
435
436   dnl Before doing anything else, load in pkg-config variables (if not sslc).
437   if test "x$ap_ssltk_type" = "x" -a -n "$PKGCONFIG"; then
438     saved_PKG_CONFIG_PATH="$PKG_CONFIG_PATH"
439     if test "x$ap_ssltk_base" != "x" -a \
440             -f "${ap_ssltk_base}/lib/pkgconfig/openssl.pc"; then
441       dnl Ensure that the given path is used by pkg-config too, otherwise
442       dnl the system openssl.pc might be picked up instead.
443       PKG_CONFIG_PATH="${ap_ssltk_base}/lib/pkgconfig${PKG_CONFIG_PATH+:}${PKG_CONFIG_PATH}"
444       export PKG_CONFIG_PATH
445     fi
446     ap_ssltk_libs="`$PKGCONFIG --libs-only-l openssl 2>&1`"
447     if test $? -eq 0; then
448       ap_ssltk_found="yes"
449       pkglookup="`$PKGCONFIG --cflags-only-I openssl`"
450       APR_ADDTO(CPPFLAGS, [$pkglookup])
451       APR_ADDTO(INCLUDES, [$pkglookup])
452       pkglookup="`$PKGCONFIG --libs-only-L --libs-only-other openssl`"
453       APR_ADDTO(LDFLAGS, [$pkglookup])
454       APR_ADDTO(SSL_LIBS, [$pkglookup])
455     fi
456     PKG_CONFIG_PATH="$saved_PKG_CONFIG_PATH"
457   fi
458   if test "x$ap_ssltk_base" != "x" -a "x$ap_ssltk_found" = "x"; then
459     APR_ADDTO(CPPFLAGS, [-I$ap_ssltk_base/include])
460     APR_ADDTO(INCLUDES, [-I$ap_ssltk_base/include])
461     APR_ADDTO(LDFLAGS, [-L$ap_ssltk_base/lib])
462     APR_ADDTO(SSL_LIBS, [-L$ap_ssltk_base/lib])
463     if test "x$ap_platform_runtime_link_flag" != "x"; then
464       APR_ADDTO(LDFLAGS, [$ap_platform_runtime_link_flag$ap_ssltk_base/lib])
465       APR_ADDTO(SSL_LIBS, [$ap_platform_runtime_link_flag$ap_ssltk_base/lib])
466     fi
467   fi
468   if test "x$ap_ssltk_type" = "x"; then
469     dnl First check for manditory headers
470     AC_CHECK_HEADERS([openssl/opensslv.h openssl/ssl.h], [ap_ssltk_type="openssl"], [])
471     if test "$ap_ssltk_type" = "openssl"; then
472       dnl so it's OpenSSL - test for a good version
473       AC_MSG_CHECKING([for OpenSSL version])
474       AC_TRY_COMPILE([#include <openssl/opensslv.h>],[
475 #if !defined(OPENSSL_VERSION_NUMBER)
476 #error "Missing openssl version"
477 #endif
478 #if  (OPENSSL_VERSION_NUMBER < 0x009060af) \
479  || ((OPENSSL_VERSION_NUMBER > 0x00907000) && (OPENSSL_VERSION_NUMBER < 0x0090702f))
480 #error "Insecure openssl version " OPENSSL_VERSION_TEXT
481 #endif],
482       [AC_MSG_RESULT(OK)],
483       [dnl Replace this with OPENSSL_VERSION_TEXT from opensslv.h?
484        AC_MSG_RESULT([not encouraging])
485        AC_MSG_WARN([OpenSSL version may contain security vulnerabilities!]
486                    [ Ensure the latest security patches have been applied!])
487       ])
488     else
489       AC_MSG_RESULT([no OpenSSL headers found])
490     fi
491   fi
492   if test "$ap_ssltk_type" != "openssl"; then
493     dnl Might be SSL-C - report, then test anything relevant
494     AC_CHECK_HEADERS([sslc.h], [ap_ssltk_type="sslc"], [ap_ssltk_type=""])
495     if test "$ap_ssltk_type" = "sslc"; then
496       ap_ssltk_libs="-lsslc"
497       AC_MSG_CHECKING([for SSL-C version])
498       AC_TRY_COMPILE([#include <sslc.h>],[
499 #if !defined(SSLC_VERSION_NUMBER)
500 #error "Missing SSL-C version"
501 #endif
502 #if SSLC_VERSION_NUMBER < 0x2310
503 #define stringize_ver(x) #x
504 #error "Insecure SSL-C version " stringize_ver(SSLC_VERSION_NUMBER)
505 #endif],
506       [AC_MSG_RESULT(OK)],
507       [dnl Replace this with SSLC_VERSION_NUMBER?
508        AC_MSG_RESULT([not encouraging])
509        echo "WARNING: SSL-C version may contain security vulnerabilities!"
510        echo "         Ensure the latest security patches have been applied!"
511       ])
512     else
513       AC_MSG_RESULT([no SSL-C headers found])
514     fi
515   fi
516   if test "x$ap_ssltk_type" = "x"; then
517     AC_MSG_ERROR([...No recognized SSL/TLS toolkit detected])
518   fi
519
520   if test "$ap_ssltk_type" = "openssl" -a "x$ap_ssltk_found" = "x"; then
521     ap_ssltk_found="yes"
522     ap_ssltk_libs="-lssl -lcrypto `$apr_config --libs`"
523   fi
524   APR_ADDTO(SSL_LIBS, [$ap_ssltk_libs])
525   APR_ADDTO(LIBS, [$ap_ssltk_libs])
526   APACHE_SUBST(SSL_LIBS)
527
528   dnl Run library and function checks
529   liberrors=""
530   if test "$ap_ssltk_type" = "openssl"; then
531     AC_CHECK_HEADERS([openssl/engine.h])
532     AC_CHECK_FUNCS([SSLeay_version SSL_CTX_new], [], [liberrors="yes"])
533     AC_CHECK_FUNCS([ENGINE_init ENGINE_load_builtin_engines])
534   else
535     AC_CHECK_FUNCS([SSLC_library_version SSL_CTX_new], [], [liberrors="yes"])
536     AC_CHECK_FUNCS(SSL_set_state)
537   fi
538   dnl restore
539   CPPFLAGS="$saved_CPPFLAGS"
540   LIBS="$saved_LIBS"
541   LDFLAGS="$saved_LDFLAGS"
542   if test "x$liberrors" != "x"; then
543     AC_MSG_ERROR([... Error, SSL/TLS libraries were missing or unusable])
544   fi
545
546   dnl Adjust apache's configuration based on what we found above.
547   dnl (a) define preprocessor symbols
548   if test "$ap_ssltk_type" = "openssl"; then
549     AC_DEFINE(HAVE_OPENSSL, 1, [Define if SSL is supported using OpenSSL])
550   else
551     AC_DEFINE(HAVE_SSLC, 1, [Define if SSL is supported using SSL-C])
552   fi
553 fi
554 ])
555
556 dnl
557 dnl APACHE_EXPORT_ARGUMENTS
558 dnl Export (via APACHE_SUBST) the various path-related variables that
559 dnl apache will use while generating scripts like autoconf and apxs and
560 dnl the default config file.
561
562 AC_DEFUN(APACHE_SUBST_EXPANDED_ARG,[
563   APR_EXPAND_VAR(exp_$1, [$]$1)
564   APACHE_SUBST(exp_$1)
565   APR_PATH_RELATIVE(rel_$1, [$]exp_$1, ${prefix})
566   APACHE_SUBST(rel_$1)
567 ])
568
569 AC_DEFUN(APACHE_EXPORT_ARGUMENTS,[
570   APACHE_SUBST_EXPANDED_ARG(exec_prefix)
571   APACHE_SUBST_EXPANDED_ARG(bindir)
572   APACHE_SUBST_EXPANDED_ARG(sbindir)
573   APACHE_SUBST_EXPANDED_ARG(libdir)
574   APACHE_SUBST_EXPANDED_ARG(libexecdir)
575   APACHE_SUBST_EXPANDED_ARG(mandir)
576   APACHE_SUBST_EXPANDED_ARG(sysconfdir)
577   APACHE_SUBST_EXPANDED_ARG(datadir)
578   APACHE_SUBST_EXPANDED_ARG(installbuilddir)
579   APACHE_SUBST_EXPANDED_ARG(errordir)
580   APACHE_SUBST_EXPANDED_ARG(iconsdir)
581   APACHE_SUBST_EXPANDED_ARG(htdocsdir)
582   APACHE_SUBST_EXPANDED_ARG(manualdir)
583   APACHE_SUBST_EXPANDED_ARG(cgidir)
584   APACHE_SUBST_EXPANDED_ARG(includedir)
585   APACHE_SUBST_EXPANDED_ARG(localstatedir)
586   APACHE_SUBST_EXPANDED_ARG(runtimedir)
587   APACHE_SUBST_EXPANDED_ARG(logfiledir)
588   APACHE_SUBST_EXPANDED_ARG(proxycachedir)
589 ])
590
591 dnl 
592 dnl APACHE_CHECK_APxVER({apr|apu}, major, minor, 
593 dnl                     [actions-if-ok], [actions-if-not-ok])
594 dnl
595 dnl Checks for APR or APR-util of given major/minor version or later; 
596 dnl if so, runs actions-if-ok; otherwise runs actions-if-not-ok if given.
597 dnl If the version is not satisfactory and actions-if-not-ok is not
598 dnl given, then an error is printed and the configure script is aborted.
599 dnl
600 dnl The first argument must be [apr] or [apu].
601 dnl
602 AC_DEFUN([APACHE_CHECK_APxVER], [
603 define(ap_ckver_major, translit($1, [apru], [APRU])[_MAJOR_VERSION])
604 define(ap_ckver_minor, translit($1, [apru], [APRU])[_MINOR_VERSION])
605 define(ap_ckver_cvar, [ap_cv_$1ver$2$3])
606 define(ap_ckver_name, ifelse([$1],[apr],[APR],[APR-util]))
607
608 ap_ckver_CPPFLAGS="$CPPFLAGS"
609 CPPFLAGS="$CPPFLAGS `$[$1]_config --includes`"
610
611 AC_CACHE_CHECK([for ap_ckver_name version $2.$3.0 or later], ap_ckver_cvar, [
612 AC_EGREP_CPP([good], [
613 #include <$1_version.h>
614 #if ]ap_ckver_major[ > $2 || (]ap_ckver_major[ == $2 && ]ap_ckver_minor[ >= $3)
615 good
616 #endif
617 ], [ap_ckver_cvar=yes], [ap_ckver_cvar=no])])
618
619 if test "$ap_ckver_cvar" = "yes"; then
620   ifelse([$4],[],[:],[$4])
621 else
622   ifelse([$5],[],[AC_MSG_ERROR([ap_ckver_name version $2.$3.0 or later is required])], [$5])
623 fi
624
625 CPPFLAGS="$ap_ckver_CPPFLAGS"
626
627 undefine([ap_ckver_major])
628 undefine([ap_ckver_minor])
629 undefine([ap_ckver_cvar])
630 undefine([ap_ckver_name])
631 ])
632
633 dnl
634 dnl APACHE_CHECK_VOID_PTR_LEN
635 dnl
636 dnl Checks if the size of a void pointer is at least as big as a "long" 
637 dnl integer type.
638 dnl
639 AC_DEFUN([APACHE_CHECK_VOID_PTR_LEN], [
640
641 AC_CACHE_CHECK([for void pointer length], [ap_cv_void_ptr_lt_long],
642 [AC_TRY_RUN([
643 int main(void)
644 {
645     return sizeof(void *) < sizeof(long); 
646 }], [ap_cv_void_ptr_lt_long=no], [ap_cv_void_ptr_lt_long=yes], 
647     [ap_cv_void_ptr_lt_long=yes])])
648
649 if test "$ap_cv_void_ptr_lt_long" = "yes"; then
650     AC_MSG_ERROR([Size of "void *" is less than size of "long"])
651 fi
652 ])