]> granicus.if.org Git - apache/blob - configure.in
3b180d26c7dabbde14b99088060cf5420fe933cd
[apache] / configure.in
1 dnl
2 dnl Autoconf configuration for Apache httpd
3 dnl
4 dnl     Use ./buildconf to produce a configure script
5 dnl
6
7 AC_PREREQ(2.50)
8 AC_INIT(ABOUT_APACHE)
9
10 AC_CONFIG_HEADER(include/ap_config_auto.h)
11 AC_CONFIG_AUX_DIR(build)
12
13 dnl #
14 dnl # Include our own M4 macros along with those for APR and libtool
15 dnl #
16 sinclude(build/apr_common.m4)
17 sinclude(build/find_apr.m4)
18 sinclude(build/find_apu.m4)
19 sinclude(acinclude.m4)
20
21 dnl Later versions of autoconf (>= 2.62) by default cause the produced
22 dnl configure script to emit at least warnings when it comes across unknown
23 dnl command line options. These versions also have the macro
24 dnl AC_DISABLE_OPTION_CHECKING defined which turns this off by default.
25 dnl We want to have this turned off here since our configure calls can
26 dnl contain options for APR / APR-UTIL configure that are unknown to us.
27 dnl So avoid confusing the user by turning this off. See also PR 45221.
28 ifdef([AC_DISABLE_OPTION_CHECKING], [AC_DISABLE_OPTION_CHECKING])
29
30 dnl XXX we can't just use AC_PREFIX_DEFAULT because that isn't subbed in
31 dnl by configure until it is too late.  Is that how it should be or not?
32 dnl Something seems broken here.                                               
33 AC_PREFIX_DEFAULT(/usr/local/apache2)
34
35 dnl Get the layout here, so we can pass the required variables to apr
36 APR_ENABLE_LAYOUT(Apache, [errordir iconsdir htdocsdir cgidir])
37
38 dnl reparse the configure arguments.
39 APR_PARSE_ARGUMENTS
40
41 dnl export expanded and relative configure argument variables
42 APACHE_EXPORT_ARGUMENTS
43
44 dnl Save user-defined environment settings for later restoration
45 dnl
46 APR_SAVE_THE_ENVIRONMENT(CPPFLAGS)
47 APR_SAVE_THE_ENVIRONMENT(CFLAGS)
48 APR_SAVE_THE_ENVIRONMENT(CXXFLAGS)
49 APR_SAVE_THE_ENVIRONMENT(LDFLAGS)
50 APR_SAVE_THE_ENVIRONMENT(LIBS)
51 APR_SAVE_THE_ENVIRONMENT(INCLUDES)
52
53 dnl Generate ./config.nice for reproducing runs of configure
54 dnl
55 APR_CONFIG_NICE(config.nice)
56
57 nl='
58 '
59 dnl Check that mkdir -p works
60 APR_MKDIR_P_CHECK($top_srcdir/build/mkdir.sh)
61
62 dnl ## Run configure for packages Apache uses
63
64 dnl shared library support for these packages doesn't currently
65 dnl work on some platforms
66
67 AC_CANONICAL_SYSTEM
68
69 orig_prefix="$prefix"
70
71 echo $ac_n "${nl}Configuring Apache Portable Runtime library ...${nl}"
72
73 AC_ARG_WITH(included-apr,
74 APACHE_HELP_STRING(--with-included-apr,Use bundled copies of APR/APR-Util))
75
76 if test "x$with_included_apr" = "xyes"; then
77    apr_found=reconfig
78 else 
79    APR_FIND_APR("$srcdir/srclib/apr", "./srclib/apr", 1, 1 2)
80 fi
81
82 if test "$apr_found" = "no"; then
83   AC_MSG_ERROR([APR not found.  Please read the documentation.])
84 fi
85
86 if test "$apr_found" = "reconfig"; then
87   APR_SUBDIR_CONFIG(srclib/apr,
88                     [$apache_apr_flags --prefix=$prefix --exec-prefix=$exec_prefix --libdir=$libdir --includedir=$includedir --bindir=$bindir --datadir=$datadir --with-installbuilddir=$installbuilddir],
89                     [--enable-layout=*|\'--enable-layout=*])
90   dnl We must be the first to build and the last to be cleaned
91   AP_BUILD_SRCLIB_DIRS="apr $AP_BUILD_SRCLIB_DIRS"
92   AP_CLEAN_SRCLIB_DIRS="$AP_CLEAN_SRCLIB_DIRS apr"
93
94   dnl We have to find apr-N-config when we reconfigure APR.
95   for majorver in 1 2; do
96     test_apr_config="$srcdir/srclib/apr/apr-${majorver}-config"
97     if test -f $test_apr_config; then
98       apr_config=$test_apr_config
99     fi
100   done
101 fi
102
103 APR_SETIFNULL(CC, `$apr_config --cc`)
104 APR_SETIFNULL(CPP, `$apr_config --cpp`)
105 APR_ADDTO(CFLAGS, `$apr_config --cflags`)
106 APR_ADDTO(CPPFLAGS, `$apr_config --cppflags`)
107 APR_ADDTO(LDFLAGS, `$apr_config --ldflags`)
108 SHLIBPATH_VAR=`$apr_config --shlib-path-var`
109 APR_BINDIR=`$apr_config --bindir`
110 APR_INCLUDEDIR=`$apr_config --includedir`
111 APR_INCLUDES=`$apr_config --includes`
112 APR_VERSION=`$apr_config --version`
113 apr_major_version=`echo ${APR_VERSION} | sed 's,\..*,,'`
114 APR_CONFIG="$APR_BINDIR/apr-${apr_major_version}-config"
115
116 echo $ac_n "${nl}Configuring Apache Portable Runtime Utility library...${nl}"
117
118 if test "x${apr_major_version}" = "x2"; then
119    apu_found=obsolete
120 elif test "x$with_included_apr" = "xyes"; then
121    apu_found=reconfig
122 else 
123    dnl If httpd is buildconf'ed against an apr 2.x tree, then 1.x
124    dnl isn't supported. 
125    ifdef([APR_FIND_APU], [
126      APR_FIND_APU("$srcdir/srclib/apr-util", "./srclib/apr-util", 
127                   1, ${apr_major_version})
128    ], [apu_found=no])
129 fi
130
131 if test "$apu_found" = "no"; then
132   AC_MSG_ERROR([APR-util not found.  Please read the documentation.])
133 fi
134
135 # Catch some misconfigurations:
136 case ${apr_found}.${apu_found} in
137 reconfig.yes)
138   AC_MSG_ERROR([Cannot use an external APR-util with the bundled APR])
139   ;;
140 yes.reconfig)
141   AC_MSG_ERROR([Cannot use an external APR with the bundled APR-util])
142   ;;
143 esac  
144
145 if test "$apu_found" = "reconfig"; then
146   APR_SUBDIR_CONFIG(srclib/apr-util,
147                     [--with-apr=../apr --prefix=$prefix --exec-prefix=$exec_prefix --libdir=$libdir --includedir=$includedir --bindir=$bindir],
148                     [--enable-layout=*|\'--enable-layout=*])
149   dnl We must be the last to build and the first to be cleaned
150   AP_BUILD_SRCLIB_DIRS="$AP_BUILD_SRCLIB_DIRS apr-util"
151   AP_CLEAN_SRCLIB_DIRS="apr-util $AP_CLEAN_SRCLIB_DIRS"
152   dnl APR and APR-Util major versions must match
153   apu_config="${srcdir}/srclib/apr-util/apu-${apr_major_version}-config"
154 fi
155
156 if test "$apu_found" = "obsolete"; then
157   AC_MSG_NOTICE([APR-util obsoleted, woohoo])
158 else
159   APR_ADDTO(LDFLAGS, `$apu_config --ldflags`)
160   APU_BINDIR=`$apu_config --bindir`
161   APU_INCLUDEDIR=`$apu_config --includedir`
162   APU_INCLUDES=`$apu_config --includes`
163   APU_VERSION=`$apu_config --version`
164   APU_CONFIG="$APU_BINDIR/apu-`echo ${APU_VERSION} | sed 's,\..*,,'`-config"
165 fi
166
167 dnl In case we picked up CC and CPP from APR, get that info into the
168 dnl config cache so that PCRE uses it.  Otherwise, CC and CPP used for
169 dnl PCRE and for our config tests will be whatever PCRE determines.
170 AC_PROG_CC
171 AC_PROG_CPP
172
173 if test "x${cache_file}" = "x/dev/null"; then
174   # Likewise, ensure that CC and CPP are passed through to the pcre
175   # configure script iff caching is disabled (the autoconf 2.5x default).
176   export CC; export CPP
177 fi
178
179 dnl Absolute source/build directory
180 abs_srcdir=`(cd $srcdir && pwd)`
181 abs_builddir=`pwd`
182
183 AC_ARG_WITH(pcre,
184 APACHE_HELP_STRING(--with-pcre=PATH,Use external PCRE library))
185
186 AC_PATH_PROG(PCRE_CONFIG, pcre-config, false)
187 if test -d "$with_pcre" && test -x "$with_pcre/bin/pcre-config"; then
188    PCRE_CONFIG=$with_pcre/bin/pcre-config
189 elif test -x "$with_pcre"; then
190    PCRE_CONFIG=$with_pcre
191 fi
192
193 if test "$PCRE_CONFIG" != "false"; then
194   if $PCRE_CONFIG --version >/dev/null 2>&1; then :; else
195     AC_MSG_ERROR([Did not find pcre-config script at $PCRE_CONFIG])
196   fi
197   AC_MSG_NOTICE([Using external PCRE library from $PCRE_CONFIG])
198   APR_ADDTO(PCRE_INCLUDES, [`$PCRE_CONFIG --cflags`])
199   APR_ADDTO(PCRE_LIBS, [`$PCRE_CONFIG --libs`])
200 else
201   AC_MSG_ERROR([pcre-config for libpcre not found. PCRE is required and available from http://pcre.org/])
202 fi
203 APACHE_SUBST(PCRE_LIBS)
204
205 dnl Add PCRE_LIBS to HTTPD_LDFLAGS
206 APR_ADDTO(HTTPD_LDFLAGS, [\$(PCRE_LIBS)])
207
208 echo $ac_n "${nl}Configuring Apache httpd ...${nl}"
209
210 dnl If the source dir is not equal to the build dir, 
211 dnl then we are running in VPATH mode.
212
213 APR_ADDTO(INCLUDES, [-I.])
214
215 if test "$abs_builddir" != "$abs_srcdir"; then
216   APR_ADDTO(INCLUDES, [-I\$(top_builddir)/include])
217 fi
218
219 APR_ADDTO(INCLUDES, [-I\$(top_srcdir)/os/\$(OS_DIR) -I\$(top_srcdir)/modules/http -I\$(top_srcdir)/modules/aaa -I\$(top_srcdir)/modules/filters -I\$(top_srcdir)/modules/proxy -I\$(top_srcdir)/modules/session -I\$(top_srcdir)/include -I\$(top_srcdir)/modules/generators -I\$(top_srcdir)/modules/mappers -I\$(top_srcdir)/modules/database])
220
221 # apr/apr-util --includes may pick up system paths for dependent
222 # libraries, so ensure these are later in INCLUDES than local source
223 # directories.
224 APR_ADDTO(INCLUDES, $APR_INCLUDES)
225 APR_ADDTO(INCLUDES, $APU_INCLUDES)
226
227 dnl Add in path to PCRE includes
228 APR_ADDTO(INCLUDES, $PCRE_INCLUDES)
229
230 if test "x$LTFLAGS" = "x"; then
231     LTFLAGS='--silent'
232 fi
233 my_libtool=`$apr_config --apr-libtool`
234 LIBTOOL="$my_libtool \$(LTFLAGS)"
235 libtoolversion=`$my_libtool --version`
236 case $libtoolversion in
237     *1.[[45]]* | *[[2-9]].[[0-9]]*)
238         SH_LIBTOOL='$(LIBTOOL)'
239         SHLTCFLAGS="-prefer-pic"
240         LTCFLAGS="-prefer-non-pic -static"
241         ;;
242     *)
243         SH_LIBTOOL='$(SHELL) $(top_builddir)/shlibtool $(LTFLAGS)'
244         SHLTCFLAGS=""
245         LTCFLAGS=""
246         ;;
247 esac
248 APACHE_SUBST(SHLTCFLAGS)
249 APACHE_SUBST(LTCFLAGS)
250
251 echo $ac_n "${nl}Applying OS-specific hints for httpd ...${nl}"
252
253 case $host in
254   *-apple-aux3*)
255       APR_SETVAR(APACHE_MPM, [prefork])
256       APR_SETVAR(SINGLE_LISTEN_UNSERIALIZED_ACCEPT, [1])
257       ;;
258   *-linux-*)
259       case `uname -r` in
260         2.[[2-9]]* ) 
261             APR_SETVAR(SINGLE_LISTEN_UNSERIALIZED_ACCEPT, [1])
262             ;;
263         * )
264             ;;
265       esac
266       ;;
267   *486-*-bsdi* | *-netbsd* | *-freebsd* | *-apple-darwin* | *-dec-osf* | *-qnx)
268       APR_SETVAR(SINGLE_LISTEN_UNSERIALIZED_ACCEPT, [1])
269       ;;
270   *-solaris2*)
271       dnl This is a hack -- we should be using AC_TRY_RUN instead
272       ap_platform_runtime_link_flag="-R"
273       dnl solaris 8 and above don't have a thundering herd
274       dnl not sure about rev's before this one.
275       case `uname -r` in
276         5.[567]*)
277             ;;
278         * )
279             APR_SETVAR(SINGLE_LISTEN_UNSERIALIZED_ACCEPT, [1])
280             ;;
281       esac
282       ;;
283   *cygwin*)
284       APR_SETVAR(APACHE_MPM, [prefork])
285       APR_SETVAR(SINGLE_LISTEN_UNSERIALIZED_ACCEPT, [1])
286       ;;
287   *mingw32*)
288       APR_SETVAR(APACHE_MPM, [winnt])
289       APR_ADDTO(CPPFLAGS, [-DAP_DECLARE_EXPORT])
290       APR_SETIFNULL(ac_cv_func_times, [no])
291       APR_SETIFNULL(ac_cv_func_getpwnam, [no])
292       APR_SETIFNULL(ac_cv_func_getgrnam, [no])
293       ;;
294   *aix*)
295       aixver=`echo $host | sed 's/^[[^0-9]]*//' | sed 's/\.//g'`
296       if test $aixver -ge 4320; then
297         APR_SETVAR(SINGLE_LISTEN_UNSERIALIZED_ACCEPT, [1])
298       fi
299       ;;
300   *os390*)
301       APR_SETVAR(SINGLE_LISTEN_UNSERIALIZED_ACCEPT, [1])
302       ;;
303 esac
304
305 APR_SETVAR(AP_NONBLOCK_WHEN_MULTI_LISTEN, [1])
306
307 dnl
308 dnl Process command line arguments. This is done early in the process so the
309 dnl user can get feedback quickly in case of an error.
310 dnl
311 dnl ### need to move some of the arguments "up here"
312
313 dnl ## Check for programs
314
315 AC_PATH_PROG(RM, rm)
316 AC_PATH_PROG(PKGCONFIG, pkg-config)
317 AC_PATH_PROG(RSYNC, rsync)
318 AC_PROG_AWK
319 AC_PROG_LN_S
320 AC_CHECK_TOOL(RANLIB, ranlib, true)
321 dnl AC_PATH_PROG(PERL_PATH, perl)
322 AC_CHECK_PROGS(LYNX_PATH,[lynx links elinks], [lynx])
323
324 # Hard-coded install programs
325 MKINSTALLDIRS="\$(abs_srcdir)/build/mkdir.sh"
326 INSTALL="\$(LIBTOOL) --mode=install \$(abs_srcdir)/build/install.sh -c"
327 APACHE_SUBST(MKINSTALLDIRS)
328 APACHE_SUBST(INSTALL)
329
330 dnl Various OS checks that apparently set required flags
331 ifdef([AC_USE_SYSTEM_EXTENSIONS], [
332 AC_USE_SYSTEM_EXTENSIONS
333 ], [
334 AC_AIX
335 AC_MINIX
336 ])
337
338 AC_ISC_POSIX
339
340 # Ensure that satisfactory versions of apr and apr-util are 
341 # found if external copies are configured.
342 if test "${apr_found}" = "yes"; then
343   # Require at least APR 1.3.x otherwise fail
344   APACHE_CHECK_APxVER([apr], 1, 3)
345 fi
346
347 if test "${apu_found}" = "yes"; then
348   # Require at least APR-util 1.3.x otherwise fail
349   APACHE_CHECK_APxVER([apu], 1, 3)
350 fi
351
352 dnl Check for what we can generate dependency files with
353 APR_CHECK_DEPEND
354
355 dnl ## Check for libraries
356
357 dnl ## Check for header files
358
359 dnl I think these are just used all over the place, so just check for
360 dnl them at the base of the tree. If some are specific to a single
361 dnl directory, they should be moved (Comment #Spoon)
362
363 dnl Regarding standard header files: AC_HEADER_STDC doesn't set symbols
364 dnl HAVE_STRING_H, HAVE_STDLIB_H, etc., so those are checked for
365 dnl explicitly so that the normal HAVE_xxx_H symbol is defined.
366
367 AC_HEADER_STDC
368 AC_CHECK_HEADERS( \
369 string.h \
370 limits.h \
371 unistd.h \
372 sys/socket.h \
373 pwd.h \
374 grp.h \
375 strings.h \
376 sys/prctl.h \
377 sys/processor.h \
378 sys/sem.h \
379 sys/sdt.h
380 )
381 AC_HEADER_SYS_WAIT
382
383 dnl ## Check for typedefs, structures, and compiler characteristics.
384
385 AC_C_CONST
386
387 dnl ## Check for library functions
388 dnl ## sqrt() only needed in support/ab.c
389 saved_LIBS="$LIBS"
390 LIBS=""
391 AC_SEARCH_LIBS(sqrt, m)
392 MATH_LIBS="$LIBS"
393 APACHE_SUBST(MATH_LIBS)
394 LIBS="$saved_LIBS"
395
396 dnl See Comment #Spoon
397
398 AC_CHECK_FUNCS( \
399 getpwnam \
400 getgrnam \
401 initgroups \
402 bindprocessor \
403 prctl \
404 timegm \
405 getpgid
406 )
407
408 dnl confirm that a void pointer is large enough to store a long integer
409 APACHE_CHECK_VOID_PTR_LEN
410
411 dnl ## Check for the tm_gmtoff field in struct tm to get the timezone diffs
412 AC_CACHE_CHECK([for tm_gmtoff in struct tm], ac_cv_struct_tm_gmtoff,
413 [AC_TRY_COMPILE([#include <sys/types.h>
414 #include <time.h>], [struct tm tm; tm.tm_gmtoff;],
415   ac_cv_struct_tm_gmtoff=yes, ac_cv_struct_tm_gmtoff=no)])
416 if test "$ac_cv_struct_tm_gmtoff" = "yes"; then
417     AC_DEFINE(HAVE_GMTOFF, 1, [Define if struct tm has a tm_gmtoff field])
418 fi
419
420 dnl ## Set up any appropriate OS-specific environment variables for apachectl
421
422 case $host in
423     *aix*)
424         # for 32-bit builds, increase MAXDATA to allow lots of threads
425         if test x$OBJECT_MODE != x64; then
426             OS_SPECIFIC_VARS="LDR_CNTRL=\"MAXDATA=0x80000000\" ; export LDR_CNTRL ;"
427         fi
428         OS_SPECIFIC_VARS="$OS_SPECIFIC_VARS AIXTHREAD_SCOPE=S ; export AIXTHREAD_SCOPE"
429         OS_SPECIFIC_VARS="$OS_SPECIFIC_VARS ; AIXTHREAD_MUTEX_DEBUG=OFF ; export AIXTHREAD_MUTEX_DEBUG"
430         OS_SPECIFIC_VARS="$OS_SPECIFIC_VARS ; AIXTHREAD_RWLOCK_DEBUG=OFF ; export AIXTHREAD_RWLOCK_DEBUG"
431         OS_SPECIFIC_VARS="$OS_SPECIFIC_VARS ; AIXTHREAD_COND_DEBUG=OFF ; export AIXTHREAD_COND_DEBUG"
432         OS_SPECIFIC_VARS="$OS_SPECIFIC_VARS ; SPINLOOPTIME=1000 ; export SPINLOOPTIME"
433         OS_SPECIFIC_VARS="$OS_SPECIFIC_VARS ; YIELDLOOPTIME=8 ; export YIELDLOOPTIME"
434         OS_SPECIFIC_VARS="$OS_SPECIFIC_VARS ; MALLOCMULTIHEAP=considersize,heaps:8 ; export MALLOCMULTIHEAP"
435         ;;
436     *os390*)
437         OS_SPECIFIC_VARS="export _CEE_RUNOPTS=\"STACK(,,ANY)\" ; export _EDC_ADD_ERRNO2=1"
438         ;;
439     *)
440         OS_SPECIFIC_VARS=""
441 esac
442       
443 AC_ARG_WITH(port,APACHE_HELP_STRING(--with-port=PORT,Port on which to listen (default is 80)),
444         [if test "$withval" = "yes"; then AC_MSG_ERROR('option --with-port requires a value (the TCP port number)'); else PORT="$withval"; fi],
445         [PORT=80])
446
447 AC_ARG_WITH(sslport,APACHE_HELP_STRING(--with-sslport=SSLPORT,Port on which to securelisten (default is 443)),
448         [if test "$withval" = "yes"; then AC_MSG_ERROR('option --with-sslport requires a value (the SSL TCP port number)'); else SSLPORT="$withval"; fi],
449         [SSLPORT=443])
450
451 DTRACE=true
452 AC_ARG_ENABLE(dtrace,APACHE_HELP_STRING(--enable-dtrace,Enable DTrace probes),
453 [
454   enable_dtrace=$enableval
455   APR_ADDTO(CPPFLAGS, -DAPR_DTRACE_PROVIDER)
456   AC_MSG_ERROR('DTrace Support in the build system is not complete. Patches Welcome!')
457 ],
458 [
459   enable_dtrace=no
460 ])
461
462 dnl Disabled dtrace build for now.
463 enable_dtrace=no
464
465 case $host in
466   *-solaris2*)
467     if test $enable_dtrace = "yes" -a "$ac_cv_header_sys_sdt_h" = "yes"; then
468         AC_DEFINE(AP_ENABLE_DTRACE, 1,
469                   [Enable DTrace probes])
470         DTRACE="/usr/sbin/dtrace $DTRACEFLAGS"
471         test -f include/apache_probes.h || $DTRACE -h -s apache_probes.d -o include/apache_probes.h
472     fi
473     ;;
474 esac
475
476 APACHE_SUBST(DTRACE)
477
478 APR_CHECK_APR_DEFINE(APR_HAVE_IPV6)
479
480 AC_ARG_ENABLE(v4-mapped,APACHE_HELP_STRING(--enable-v4-mapped,Allow IPv6 sockets to handle IPv4 connections),
481
482   v4mapped=$enableval
483 ],
484 [
485     case $host in
486     *freebsd5*|*netbsd*|*openbsd*)
487         v4mapped=no
488         ;;
489     *)
490         v4mapped=yes
491         ;;
492 esac
493 ])
494
495 if test $v4mapped = "yes" -a $ac_cv_define_APR_HAVE_IPV6 = "yes"; then
496     AC_DEFINE(AP_ENABLE_V4_MAPPED, 1,
497               [Allow IPv4 connections on IPv6 listening sockets])
498 fi
499
500 AC_ARG_ENABLE(exception-hook,APACHE_HELP_STRING(--enable-exception-hook,Enable fatal exception hook),
501 [
502     AC_DEFINE(AP_ENABLE_EXCEPTION_HOOK, 1,
503               [Allow modules to run hook after a fatal exception])
504 ])dnl
505
506 AC_ARG_ENABLE(maintainer-mode,APACHE_HELP_STRING(--enable-maintainer-mode,Turn on debugging and compile time warnings),
507 [
508   APR_ADDTO(CPPFLAGS, -DAP_DEBUG)
509 ])dnl
510
511 dnl Conditionally enable PIE support for GNU toolchains.
512 AC_ARG_ENABLE(pie,APACHE_HELP_STRING(--enable-pie,Build httpd as a Position Independent Executable))
513 if test "$enable_pie" = "yes"; then
514    AC_CACHE_CHECK([whether $CC accepts PIE flags], [ap_cv_cc_pie], [
515      save_CFLAGS=$CFLAGS
516      save_LDFLAGS=$LDFLAGS
517      CFLAGS="$CFLAGS -fPIE"
518      LDFLAGS="$LDFLAGS -pie"
519      AC_TRY_RUN([static int foo[30000]; int main () { return 0; }],
520       [ap_cv_cc_pie=yes], [ap_cv_cc_pie=no], [ap_cv_cc_pie=yes])
521      CFLAGS=$save_CFLAGS
522      LDFLAGS=$save_LDFLAGS
523    ])
524    if test "$ap_cv_cc_pie" = "yes"; then
525      PICFLAGS="-fPIE"
526      PILDFLAGS="-pie"
527    else
528      AC_ERROR([--enable-pie requested but $CC failed using PIE flags])
529    fi
530 fi
531 AC_SUBST(PICFLAGS)
532 AC_SUBST(PILDFLAGS)
533
534 prefix="$orig_prefix"
535 APACHE_ENABLE_MODULES
536
537 dnl reading config stubs
538 esyscmd(./build/config-stubs .)
539
540 APACHE_SUBST(progname)
541 APACHE_SUBST(OS)
542 APACHE_SUBST(OS_DIR)
543 APACHE_SUBST(BUILTIN_LIBS)
544 APACHE_SUBST(SHLIBPATH_VAR)
545 APACHE_SUBST(OS_SPECIFIC_VARS)
546
547 PRE_SHARED_CMDS='echo ""'
548 POST_SHARED_CMDS='echo ""'
549
550 dnl apache_need_shared tells us if Apache modules are being built as DSOs
551
552 if test "$apache_need_shared" = "yes"; then
553   if test -f $ac_aux_dir/ltconfig; then
554     $SHELL $ac_aux_dir/ltconfig --output=shlibtool --disable-static --srcdir=$ac_aux_dir --cache-file=./config.cache $ac_aux_dir/ltmain.sh
555   fi
556   shared_build="shared-build"
557 fi
558
559 dnl enable_so tells us if *any* modules can be built as DSOs
560
561 if test "$enable_so" = "yes"; then
562   case $host in
563     *-ibm-aix*)
564       APR_ADDTO(HTTPD_LDFLAGS, [-Wl,-uXML_Parse -Wl,-bE:$abs_builddir/server/httpd.exp])
565       APR_ADDTO(SH_LDFLAGS, [\$(EXTRA_LDFLAGS) \$(EXTRA_LIBS)])
566       APR_ADDTO(UTIL_LDFLAGS, [-Wl,-uXML_Parse])
567       ;;
568     *os390)
569       APR_ADDTO(HTTPD_LDFLAGS, [--main=$abs_srcdir/server/main.o --core-dll=$abs_srcdir/apachecore.dll])
570       APR_ADDTO(SH_LDFLAGS, [--core-dll=$abs_srcdir/apachecore.dll])
571   esac
572   MOD_SO_ENABLED=yes
573 fi
574 AC_SUBST(MOD_SO_ENABLED)
575
576 APACHE_SUBST(PRE_SHARED_CMDS)
577 APACHE_SUBST(POST_SHARED_CMDS)
578 APACHE_SUBST(shared_build)
579
580 AC_ARG_WITH(program-name,
581 APACHE_HELP_STRING(--with-program-name,alternate executable name),[
582   progname="$withval" ], [
583   progname="httpd"] )
584
585 # SuExec parameters
586 AC_ARG_WITH(suexec-bin,
587 APACHE_HELP_STRING(--with-suexec-bin,Path to suexec binary),[
588   AC_DEFINE_UNQUOTED(SUEXEC_BIN, "$withval", [Path to suexec binary] )
589 ] )
590
591 AC_ARG_WITH(suexec-caller,
592 APACHE_HELP_STRING(--with-suexec-caller,User allowed to call SuExec),[
593   AC_DEFINE_UNQUOTED(AP_HTTPD_USER, "$withval", [User allowed to call SuExec] ) ] )
594
595 AC_ARG_WITH(suexec-userdir,
596 APACHE_HELP_STRING(--with-suexec-userdir,User subdirectory),[
597   AC_DEFINE_UNQUOTED(AP_USERDIR_SUFFIX, "$withval", [User subdirectory] ) ] )
598
599 AC_ARG_WITH(suexec-docroot,
600 APACHE_HELP_STRING(--with-suexec-docroot,SuExec root directory),[
601   AC_DEFINE_UNQUOTED(AP_DOC_ROOT, "$withval", [SuExec root directory] ) ] )
602
603 AC_ARG_WITH(suexec-uidmin,
604 APACHE_HELP_STRING(--with-suexec-uidmin,Minimal allowed UID),[
605   AC_DEFINE_UNQUOTED(AP_UID_MIN, $withval, [Minimum allowed UID] ) ] )
606
607 AC_ARG_WITH(suexec-gidmin,
608 APACHE_HELP_STRING(--with-suexec-gidmin,Minimal allowed GID),[
609   AC_DEFINE_UNQUOTED(AP_GID_MIN, $withval, [Minimum allowed GID] ) ] )
610
611 AC_ARG_WITH(suexec-logfile,
612 APACHE_HELP_STRING(--with-suexec-logfile,Set the logfile),[
613   AC_DEFINE_UNQUOTED(AP_LOG_EXEC, "$withval", [SuExec log file] ) ] )
614
615 AC_ARG_WITH(suexec-safepath,
616 APACHE_HELP_STRING(--with-suexec-safepath,Set the safepath),[
617   AC_DEFINE_UNQUOTED(AP_SAFE_PATH, "$withval", [safe shell path for SuExec] ) ] )
618
619 AC_ARG_WITH(suexec-umask,
620 APACHE_HELP_STRING(--with-suexec-umask,umask for suexec'd process),[
621   AC_DEFINE_UNQUOTED(AP_SUEXEC_UMASK, 0$withval, [umask for suexec'd process] ) ] )
622
623 dnl APR should go after the other libs, so the right symbols can be picked up
624 if test x${apu_found} != xobsolete; then
625   AP_LIBS="$AP_LIBS `$apu_config --avoid-ldap --link-libtool --libs`"
626 fi
627 AP_LIBS="$AP_LIBS `$apr_config --link-libtool --libs`" 
628 APACHE_SUBST(AP_LIBS)
629 APACHE_SUBST(AP_BUILD_SRCLIB_DIRS)
630 APACHE_SUBST(AP_CLEAN_SRCLIB_DIRS)
631
632 AC_DEFINE(AP_USING_AUTOCONF, 1,
633                 [Using autoconf to configure Apache])
634
635 if test "$SINGLE_LISTEN_UNSERIALIZED_ACCEPT" = "1"; then
636     AC_DEFINE(SINGLE_LISTEN_UNSERIALIZED_ACCEPT, 1, 
637               [This platform doesn't suffer from the thundering herd problem])
638 fi
639
640 if test "$AP_NONBLOCK_WHEN_MULTI_LISTEN" = "1"; then
641     AC_DEFINE(AP_NONBLOCK_WHEN_MULTI_LISTEN, 1, 
642               [Listening sockets are non-blocking when there are more than 1])
643 fi
644
645
646 APACHE_FAST_OUTPUT(Makefile modules/Makefile srclib/Makefile) 
647 APACHE_FAST_OUTPUT(os/Makefile server/Makefile)
648 APACHE_FAST_OUTPUT(support/Makefile)
649
650 if test -d ./test; then
651     APACHE_FAST_OUTPUT(test/Makefile)
652 fi
653
654 dnl ## Finalize the variables
655 echo $ac_n "${nl}Restore user-defined environment settings...${nl}"
656
657 APR_RESTORE_THE_ENVIRONMENT(CPPFLAGS, EXTRA_)
658 APR_RESTORE_THE_ENVIRONMENT(CFLAGS, EXTRA_)
659 APR_RESTORE_THE_ENVIRONMENT(CXXFLAGS, EXTRA_)
660 APR_RESTORE_THE_ENVIRONMENT(LDFLAGS, EXTRA_)
661 APR_RESTORE_THE_ENVIRONMENT(LIBS, EXTRA_)
662 APR_RESTORE_THE_ENVIRONMENT(INCLUDES, EXTRA_)
663
664 echo $ac_n "${nl}Construct makefiles and header files...${nl}"
665
666 APACHE_GEN_CONFIG_VARS
667
668 dnl ## Build modules.c
669 rm -f modules.c
670 echo $MODLIST | $AWK -f $srcdir/build/build-modules-c.awk > modules.c
671
672 APR_EXPAND_VAR(ap_prefix, $prefix)
673 AC_DEFINE_UNQUOTED(HTTPD_ROOT, "${ap_prefix}",
674         [Root directory of the Apache install area])
675 AC_DEFINE_UNQUOTED(SERVER_CONFIG_FILE, "${rel_sysconfdir}/${progname}.conf",
676         [Location of the config file, relative to the Apache root directory])
677 AC_DEFINE_UNQUOTED(AP_TYPES_CONFIG_FILE, "${rel_sysconfdir}/mime.types",
678         [Location of the MIME types config file, relative to the Apache root directory])
679
680 perlbin=`$ac_aux_dir/PrintPath perl`
681 if test "x$perlbin" = "x"; then
682     perlbin="/replace/with/path/to/perl/interpreter"
683 fi
684 AC_SUBST(perlbin)
685
686 dnl If we are running on BSD/OS, we need to use the BSD .include syntax.
687
688 BSD_MAKEFILE=no
689 ap_make_include=include
690 ap_make_delimiter=' '
691 case $host in
692 *bsdi*)
693     # Check whether they've installed GNU make
694     if make --version > /dev/null 2>&1; then
695         true
696     else
697         BSD_MAKEFILE=yes
698         ap_make_include=.include
699         ap_make_delimiter='"'
700     fi
701     ;;
702 esac
703 AC_SUBST(ap_make_include)
704 AC_SUBST(ap_make_delimiter)
705
706 dnl Ensure that docs/conf is created.
707 test -d docs/conf||$mkdir_p docs/conf
708
709 dnl Ensure that the httpd version is included
710 HTTPD_VERSION=`$abs_srcdir/build/get-version.sh all $abs_srcdir/include/ap_release.h AP_SERVER`
711 AC_SUBST(HTTPD_VERSION)
712
713 AC_OUTPUT($APACHE_OUTPUT_FILES docs/conf/httpd.conf docs/conf/extra/httpd-autoindex.conf docs/conf/extra/httpd-dav.conf docs/conf/extra/httpd-default.conf docs/conf/extra/httpd-info.conf docs/conf/extra/httpd-languages.conf docs/conf/extra/httpd-manual.conf docs/conf/extra/httpd-mpm.conf docs/conf/extra/httpd-multilang-errordoc.conf docs/conf/extra/httpd-ssl.conf docs/conf/extra/httpd-userdir.conf docs/conf/extra/httpd-vhosts.conf include/ap_config_layout.h support/apxs support/apachectl support/dbmmanage support/envvars-std support/log_server_status support/logresolve.pl support/phf_abuse_log.cgi support/split-logfile build/rules.mk build/pkg/pkginfo build/config_vars.sh,[true],[
714   APACHE_GEN_MAKEFILES
715 ])