]> git.sur5r.net Git - openldap/blob - configure.in
Add lutil_entropy(). Currently only supports /dev/urandom or
[openldap] / configure.in
1 dnl $OpenLDAP$
2 dnl
3 dnl Copyright 1998,1999 The OpenLDAP Foundation.  All Rights Reserved.
4 dnl 
5 dnl Redistribution and use in source and binary forms are permitted only
6 dnl as authorized by the OpenLDAP Public License.  A copy of this
7 dnl license is available at http://www.OpenLDAP.org/license.html or
8 dnl in file LICENSE in the top-level directory of the distribution.
9 dnl
10 dnl ----------------------------------------------------------------
11 dnl Redefine AC_INIT_BINSH to provide RCS IDs and copyright notice
12 dnl at top of generated configure script.  Prints simple copyright.
13 define([AC_INIT_BINSH],
14 [[#! /bin/sh
15 # $]OpenLDAP[$
16 # from] translit([$OpenLDAP$], $")] [
17
18 # Copyright 1998,1999 The OpenLDAP Foundation.  All Rights Reserved.
19
20 # Redistribution and use in source and binary forms are permitted only
21 # as authorized by the OpenLDAP Public License.  A copy of this
22 # license is available at http://www.OpenLDAP.org/license.html or
23 # in file LICENSE in the top-level directory of the distribution.
24
25 echo "Copyright 1998-1999 The OpenLDAP Foundation,  All Rights Reserved."
26 echo "Copying restrictions apply, see COPYRIGHT file."
27 ])dnl
28 dnl ----------------------------------------------------------------
29 dnl Disable config.cache!
30 define([AC_CACHE_LOAD], )dnl
31 define([AC_CACHE_SAVE], )dnl
32 dnl ================================================================
33 dnl Configure.in for OpenLDAP
34 AC_INIT(build/version)dnl
35 AC_CONFIG_AUX_DIR(build)dnl
36
37 OL_VERSION=`cat $ac_aux_dir/version`
38 if test -z "$OL_VERSION"; then
39         AC_MSG_ERROR([could not determine version])
40 fi
41
42 echo "Configuring OpenLDAP $OL_VERSION ..."
43
44 dnl Determine host platform
45 dnl             we try not to use this for much
46 AC_CANONICAL_SYSTEM
47
48 AM_INIT_AUTOMAKE(OpenLDAP,[$OL_VERSION], [no defines])dnl
49 AC_SUBST(PACKAGE)
50 AC_SUBST(VERSION)
51 AC_DEFINE_UNQUOTED(OPENLDAP_PACKAGE,"$PACKAGE",Package)
52 AC_DEFINE_UNQUOTED(OPENLDAP_VERSION,"$VERSION",Version)
53
54 dnl We use autoconf features new to 2.13.
55 dnl aclocal.m4 should be built using aclocal from automake 1.4
56 dnl libtool 1.3.3 should be installed.
57 AC_PREREQ(2.13)dnl Required Autoconf version
58
59 AC_CONFIG_HEADER(include/portable.h include/ldap_features.h include/lber_types.h)dnl
60
61 dnl ================================================================
62 dnl Start Args
63 AC_MSG_CHECKING(configure arguments)
64 AC_PREFIX_DEFAULT(/usr/local)
65
66 top_builddir=`pwd`
67 AC_SUBST(top_builddir)dnl
68
69 dnl ----------------------------------------------------------------
70 dnl --with-subdir
71 ldap_subdir="/openldap"
72
73 AC_ARG_WITH(subdir,
74 [  --with-subdir=DIR change default subdirectory used for installs],
75 [case "$withval" in
76         no) ldap_subdir=""
77                 ;;
78         yes)
79                 ;;
80         /*|\\*)
81                 ldap_subdir="$withval"
82                 ;;
83         *)
84                 ldap_subdir="/$withval"
85                 ;;
86 esac
87 ])dnl
88
89 AC_SUBST(ldap_subdir)dnl
90
91 dnl ----------------------------------------------------------------
92 dnl General "enable" options
93 OL_ARG_ENABLE(debug,[  --enable-debug   enable debugging], yes)dnl
94 OL_ARG_ENABLE(syslog,[  --enable-syslog enable syslog support], auto)dnl
95 OL_ARG_ENABLE(proctitle,[  --enable-proctitle   enable proctitle support], yes)dnl
96 OL_ARG_ENABLE(cache,[  --enable-cache   enable caching], yes)dnl
97 OL_ARG_ENABLE(dns,[  --enable-dns               enable V2 DX Referrals extension], no)dnl
98 OL_ARG_ENABLE(referrals,[  --enable-referrals   enable V2 Referrals extension], yes)dnl
99 OL_ARG_ENABLE(cldap,[  --enable-cldap   enable connectionless ldap], no)dnl
100 OL_ARG_ENABLE(x_compile,[  --enable-x-compile   enable cross compiling],
101         no, [yes no])dnl
102
103 dnl ----------------------------------------------------------------
104 dnl General "with" options
105 OL_ARG_ENABLE(dmalloc,[  --enable-dmalloc       enable debug malloc support], no)dnl
106
107 OL_ARG_WITH(cyrus_sasl,[  --with-cyrus-sasl     with Cyrus SASL support],
108         auto, [auto yes no] )
109 OL_ARG_WITH(fetch,[  --with-fetch               with fetch URL support],
110         auto, [auto yes no] )
111 OL_ARG_WITH(kerberos,[  --with-kerberos with Kerberos support],
112         auto, [auto k5 kth k4 afs yes no])
113 OL_ARG_WITH(readline,[  --with-readline with readline support],
114         auto, [auto yes no] )
115 OL_ARG_WITH(threads,[  --with-threads   use threads],
116         auto, [auto posix mach pth lwp yes no manual] )
117 OL_ARG_WITH(tls,[  --with-tls           with TLS/SSL support],
118         auto, [auto ssleay openssl yes no] )
119 OL_ARG_WITH(yielding_select,[  --with-yielding-select   with implicitly yielding select],
120         auto, [auto yes no manual] )
121
122 dnl ----------------------------------------------------------------
123 dnl Server options
124 dnl ----------------------------------------------------------------
125 dnl LDAPD OPTIONS
126 AC_ARG_WITH(xxldapdoptions,[LDAPD (X.500-to-LDAP Gateway) Options:])
127 OL_ARG_ENABLE(ldapd,[  --enable-ldapd   enable building ldapd], no)dnl
128
129 dnl ----------------------------------------------------------------
130 dnl SLAPD OPTIONS
131 AC_ARG_WITH(xxslapdoptions,[SLAPD (Standalone LDAP Daemon) Options:])
132 OL_ARG_ENABLE(slapd,[  --enable-slapd   enable building slapd], yes)dnl
133 OL_ARG_ENABLE(cleartext,[    --enable-cleartext enable cleartext passwords], yes)dnl
134 OL_ARG_ENABLE(crypt,[    --enable-crypt enable crypt(3) passwords], auto)dnl
135 OL_ARG_ENABLE(modules,[    --enable-modules     enable dynamic module support], no)dnl
136 OL_ARG_ENABLE(multimaster,[    --enable-multimaster     enable multimaster replication], no)dnl
137 OL_ARG_ENABLE(phonetic,[    --enable-phonetic   enable phonetic/soundex], no)dnl
138 OL_ARG_ENABLE(quipu,[    --enable-quipu build quipu migration tools], no)dnl
139 OL_ARG_ENABLE(rlookups,[    --enable-rlookups   enable reverse lookups], auto)dnl
140 OL_ARG_ENABLE(aci,[    --enable-aci     enable per-object ACIs], no)dnl
141 OL_ARG_ENABLE(discreteaci,[    --enable-discreteaci     enable discrete rights in ACIs], no)dnl
142 OL_ARG_ENABLE(wrappers,[    --enable-wrappers   enable tcp wrapper support], no)dnl
143 OL_ARG_ENABLE(dynamic,[    --enable-dynamic     enable linking built binaries with dynamic libs], no)dnl
144
145 dnl SLAPD Backend options
146 OL_ARG_ENABLE(bdb2,[    --enable-bdb2   enable bdb2 backend], no)dnl
147 OL_ARG_WITH(bdb2_module,[      --with-bdb2-module       module type], static,
148         [static dynamic])
149 OL_ARG_ENABLE(ldap,[    --enable-ldap   enable ldap backend], no)dnl
150 OL_ARG_WITH(ldap_module,[      --with-ldap-module       module type], static,
151         [static dynamic])
152 OL_ARG_ENABLE(ldbm,[    --enable-ldbm   enable ldbm backend], yes)dnl
153 OL_ARG_WITH(ldbm_api,[      --with-ldbm-api     use LDBM API], auto,
154         [auto db2 db mdbm gdbm ndbm manual])
155 OL_ARG_WITH(ldbm_module,[      --with-ldbm-module       module type], static,
156         [static dynamic])
157 OL_ARG_WITH(ldbm_type,[      --with-ldbm-type   use LDBM type], auto,
158         [auto btree hash])
159
160 OL_ARG_ENABLE(passwd,[    --enable-passwd       enable passwd backend], no)dnl
161 OL_ARG_WITH(passwd_module,[      --with-passwd-module   module type], static,
162         [static dynamic])
163 OL_ARG_ENABLE(perl,[    --enable-perl   enable perl backend], no)dnl
164 OL_ARG_WITH(perl_module,[      --with-perl-module       module type], static,
165         [static dynamic])
166 OL_ARG_ENABLE(shell,[    --enable-shell enable shell backend], no)dnl
167 OL_ARG_WITH(shell_module,[      --with-shell-module     module type], static,
168         [static dynamic])
169 OL_ARG_ENABLE(tcl,[    --enable-tcl     enable tcl backend], no)dnl
170 OL_ARG_WITH(tcl_module,[      --with-tcl-module module type], static,
171         [static dynamic])
172
173 dnl ----------------------------------------------------------------
174 dnl SLURPD OPTIONS
175 AC_ARG_WITH(xxslurpdoptions,[SLURPD (Replication Daemon) Options:])
176 OL_ARG_ENABLE(slurpd,[  --enable-slurpd enable building slurpd], auto)dnl
177
178 dnl ----------------------------------------------------------------
179 AC_ARG_WITH(xxliboptions,[Library Generation & Linking Options])
180 AC_ENABLE_STATIC
181 dnl AC_DISABLE_SHARED
182 AC_ENABLE_SHARED
183
184 dnl ----------------------------------------------------------------
185
186 dnl General "enable" options
187 # validate options
188 if test $ol_enable_dns = yes ; then
189         if test $ol_enable_referrals = no ; then
190                 AC_MSG_ERROR([DNS requires --enable-referrals])
191         fi
192         if test $ol_enable_referrals = auto ; then
193                 AC_MSG_WARN([DNS requires referrals, adding --enable-referrals])
194                 ol_enable_referrals=yes
195         fi
196 fi
197
198 if test $ol_enable_slapd = no ; then
199         dnl SLAPD was specificallly disabled
200         if test $ol_enable_bdb2 = yes ; then
201                 AC_MSG_WARN([slapd disabled, ignoring --enable-bdb2 argument])
202         fi
203         if test $ol_enable_ldap = yes ; then
204                 AC_MSG_WARN([slapd disabled, ignoring --enable-ldap argument])
205         fi
206         if test $ol_enable_ldbm = yes ; then
207                 AC_MSG_WARN([slapd disabled, ignoring --enable-ldbm argument])
208         fi
209         if test $ol_enable_passwd = yes ; then
210                 AC_MSG_WARN([slapd disabled, ignoring --enable-passwd argument])
211         fi
212         if test $ol_enable_perl = yes ; then
213                 AC_MSG_WARN([slapd disabled, ignoring --enable-perl argument])
214         fi
215         if test $ol_enable_shell = yes ; then
216                 AC_MSG_WARN([slapd disabled, ignoring --enable-shell argument])
217         fi
218         if test $ol_enable_tcl = yes ; then
219                 AC_MSG_WARN([slapd disabled, ignoring --enable-tcl argument])
220         fi
221         if test $ol_enable_modules = yes ; then
222                 AC_MSG_WARN([slapd disabled, ignoring --enable-modules argument])
223         fi
224         if test $ol_enable_multimaster = yes ; then
225                 AC_MSG_WARN([slapd disabled, ignoring --enable-multimaster argument])
226         fi
227         if test $ol_enable_wrappers = yes ; then
228                 AC_MSG_WARN([slapd disabled, ignoring --enable-wrappers argument])
229         fi
230         if test $ol_enable_phonetic = yes ; then
231                 AC_MSG_WARN([slapd disabled, ignoring --enable-phonetic argument])
232         fi
233         if test $ol_enable_quipu = yes ; then
234                 AC_MSG_WARN([slapd disabled, ignoring --enable-quipu argument])
235         fi
236         if test $ol_enable_rlookups = yes ; then
237                 AC_MSG_WARN([slapd disabled, ignoring --enable-rlookups argument])
238         fi
239         if test $ol_enable_aci = yes ; then
240                 AC_MSG_WARN([slapd disabled, ignoring --enable-aci argument])
241         fi
242         if test $ol_enable_discreteaci = yes ; then
243                 AC_MSG_WARN([slapd disabled, ignoring --enable-discreteaci argument])
244         fi
245         if test $ol_with_ldbm_api != auto ; then
246                 AC_MSG_WARN([slapd disabled, ignoring --with-ldbm-api argument])
247         fi
248         if test $ol_with_ldbm_type != auto ; then
249                 AC_MSG_WARN([slapd disabled, ignoring --with-ldbm-type argument])
250         fi
251         if test $ol_with_bdb2_module != static ; then
252                 AC_MSG_WARN([slapd disabled, ignoring --with-bdb2-module argument])
253         fi
254         if test $ol_with_ldap_module != static ; then
255                 AC_MSG_WARN([slapd disabled, ignoring --with-ldap-module argument])
256         fi
257         if test $ol_with_ldbm_module != static ; then
258                 AC_MSG_WARN([slapd disabled, ignoring --with-ldbm-module argument])
259         fi
260         if test $ol_with_passwd_module != static ; then
261                 AC_MSG_WARN([slapd disabled, ignoring --with-passwd-module argument])
262         fi
263         if test $ol_with_perl_module != static ; then
264                 AC_MSG_WARN([slapd disabled, ignoring --with-perl-module argument])
265         fi
266         if test $ol_with_shell_module != static ; then
267                 AC_MSG_WARN([slapd disabled, ignoring --with-shell-module argument])
268         fi
269         if test $ol_with_tcl_module != static ; then
270                 AC_MSG_WARN([slapd disabled, ignoring --with-tcl-module argument])
271         fi
272         if test $ol_enable_slurpd = yes ; then
273                 AC_MSG_ERROR([slurpd requires slapd])
274         fi
275
276         # force settings to no
277         ol_enable_bdb2=no
278         ol_enable_ldap=no
279         ol_enable_ldbm=no
280         ol_enable_passwd=no
281         ol_enable_perl=no
282         ol_enable_shell=no
283         ol_enable_tcl=no
284
285         ol_enable_modules=no
286         ol_enable_multimaster=no
287         ol_enable_phonetic=no
288         ol_enable_quipu=no
289         ol_enable_rlookups=no
290         ol_enable_aci=no
291         ol_enable_discreteaci=no
292         ol_enable_wrappers=no
293         ol_enable_dynamic=no
294
295         ol_with_ldbm_api=no
296         ol_with_ldbm_type=no
297
298         ol_with_bdb2_module=static
299         ol_with_ldap_module=static
300         ol_with_ldbm_module=static
301         ol_with_passwd_module=static
302         ol_with_perl_module=static
303         ol_with_shell_module=static
304         ol_with_tcl_module=static
305
306         ol_enable_slurpd=no
307
308 elif test $ol_enable_ldbm = no ; then
309         dnl SLAPD without LDBM
310
311         if test $ol_with_ldbm_api != auto ; then
312                 AC_MSG_WARN([LDBM disabled, ignoring --with-ldbm-api argument])
313         fi
314
315         if test $ol_with_ldbm_type != auto ; then
316                 AC_MSG_WARN([LDBM disabled, ignoring --with-ldbm-type argument])
317         fi
318
319         if test $ol_with_ldbm_module != static ; then
320                 AC_MSG_WARN([LDBM disabled, ignoring --with-ldbm-module argument])
321         fi
322
323         if test $ol_enable_bdb2 = yes ; then
324                 AC_MSG_ERROR([BDB2 requires --enable-ldbm])
325         fi
326
327         if test $ol_enable_modules != yes -a \
328                 $ol_enable_ldap = no -a \
329                 $ol_enable_passwd = no -a \
330                 $ol_enable_perl = no -a \
331                 $ol_enable_shell = no -a \
332                 $ol_enable_tcl = no ; then
333                 AC_MSG_ERROR([slapd requires a backend])
334         fi
335
336         ol_with_ldbm_api=no
337         ol_with_ldbm_type=no
338         ol_with_ldbm_module=static
339
340 elif test $ol_enable_bdb2 = yes ; then
341         dnl SLAPD with BDB2
342
343         if test $ol_with_ldbm_api != auto -a \
344                 $ol_with_ldbm_api != db2 ; then
345                 AC_MSG_ERROR([BDB2 requires LDBM API DB2])
346         fi
347
348         ol_with_ldbm_api=db2
349
350 else
351         dnl SLAPD with LDBM
352
353         if test $ol_enable_bdb2 != no ; then
354                 if test $ol_with_ldbm_api != auto -a \
355                         $ol_with_ldbm_api != db2 ; then
356                         AC_MSG_WARN([BDB2 requires LDBM api db2 or auto])
357                         ol_enable_bdb2=no
358                 fi
359         fi
360
361         if test $ol_with_ldbm_api = gdbm -a \
362                 $ol_with_ldbm_type = btree ; then
363                 AC_MSG_ERROR([GDBM only supports LDBM type hash])
364         fi
365         if test $ol_with_ldbm_api = mdbm -a \
366                 $ol_with_ldbm_type = btree ; then
367                 AC_MSG_ERROR([MDBM only supports LDBM type hash])
368         fi
369         if test $ol_with_ldbm_api = ndbm -a \
370                 $ol_with_ldbm_type = btree ; then
371                 AC_MSG_ERROR([NDBM only supports LDBM type hash])
372         fi
373 fi
374
375 if test $ol_enable_slurpd = yes ; then
376         dnl SLURPD was specifically enabled
377         if test $ol_with_threads = no ; then
378                 AC_MSG_ERROR([slurpd requires threads])
379         fi
380 fi
381
382 AC_MSG_RESULT(done)
383
384 dnl ----------------------------------------------------------------
385 dnl Initialize vars
386 LDAP_LIBS=
387 LDIF_LIBS=
388 LDBM_LIBS=
389 LTHREAD_LIBS=
390 LUTIL_LIBS=
391
392 LDAPD_LIBS=
393 SLAPD_LIBS=
394 SLURPD_LIBS=
395
396 BUILD_LDAPD=no
397 BUILD_SLAPD=no
398 BUILD_SLURPD=no
399
400 BUILD_BDB2=no
401 BUILD_LDAP=no
402 BUILD_LDBM=no
403 BUILD_PASSWD=no
404 BUILD_PERL=no
405 BUILD_QUIPU=no
406 BUILD_SHELL=no
407 BUILD_TCL=no
408 BUILD_THREAD=no
409
410 BUILD_BDB2_DYNAMIC=static
411 BUILD_LDAP_DYNAMIC=static
412 BUILD_LDBM_DYNAMIC=static
413 BUILD_PASSWD_DYNAMIC=static
414 BUILD_PERL_DYNAMIC=static
415 BUILD_SHELL_DYNAMIC=static
416 BUILD_TCL_DYNAMIC=static
417
418 SLAPD_MODULES_LDFLAGS=
419 SLAPD_MODULES_CPPFLAGS=
420 SLAPD_MODULES_LIST=
421
422 SLAPD_PERL_LDFLAGS=
423 MOD_PERL_LDFLAGS=
424 PERL_CPPFLAGS=
425
426 MOD_TCL_LIB=
427 KRB_LIBS=
428 READLINE_LIBS=
429 SASL_LIBS=
430 TERMCAP_LIBS=
431 TLS_LIBS=
432 MODULES_LIBS=
433
434 dnl ================================================================
435 dnl Checks for programs
436
437 dnl AC_PROG_INSTALL
438
439 AC_DEFINE(HAVE_MKVERSION, 1, [define this if you have mkversion])
440
441 dnl ----------------------------------------------------------------
442 dnl
443 dnl Determine which C translator to use
444 dnl
445
446 dnl AIX Thread requires we use cc_r or xlc_r.
447 dnl But only do this IF AIX and CC is not set
448 dnl and threads are auto|yes|posix.
449 dnl
450 dnl If we find cc_r|xlc_r, force pthreads and assume
451 dnl             pthread_create is in $LIBS (ie: don't bring in
452 dnl             any additional thread libraries)
453 dnl If we do not find cc_r|xlc_r, disable threads
454
455 ol_aix_threads=no
456 case "$target" in
457 *-*-aix*) dnl all AIX is not a good idea.
458         if test -z "$CC" ; then
459                 case "$ol_with_threads" in
460                 auto | yes |  posix) ol_aix_threads=yes ;;
461                 esac
462         fi
463 ;;
464 esac
465
466 if test $ol_aix_threads = yes ; then
467         if test -z "${CC}" ; then
468                 AC_CHECK_PROGS(CC,cc_r xlc_r cc)
469
470                 if test "$CC" = cc ; then
471                         dnl no CC! don't allow --with-threads
472                         if test $ol_with_threads != auto ; then
473                                 AC_MSG_ERROR([--with-threads requires cc_r (or other suitable compiler) on AIX])
474                         else
475                                 AC_MSG_WARN([disabling threads, no cc_r on AIX])
476                         fi
477                         ol_with_threads=no
478                 fi
479         fi
480
481         if test "${CC}" = "cc_r" -o "${CC}" = "xlc_r" ; then
482                 ol_with_threads=posix
483                 ol_cv_pthread_create=yes
484         fi
485 fi
486
487 if test -z "${CC}"; then
488         AC_CHECK_PROGS(CC,cc)
489 fi
490
491 dnl The default CFLAGS is empty NOT whatever AC_PROG_CC sets.
492 dnl (for now, let autoconf sort this out)
493 dnl CFLAGS=${CFLAGS-""}
494
495 AC_LIBTOOL_DLOPEN
496 AC_PROG_LIBTOOL
497
498 AC_PROG_AWK
499 OL_PROG_LN_H
500 AC_PROG_LN_S
501
502 if test "$LN_H" = "cp" -a "$LN_S" = "ln"; then
503         LN_S="$LN_H"
504 fi
505
506 AC_PATH_PROG(SENDMAIL, sendmail, /usr/lib/sendmail,
507         $PATH:/usr/libexec:/usr/lib:/usr/sbin:/usr/etc:/etc)
508 AC_PATH_PROG(EDITOR, vi, /usr/ucb/vi, $PATH:/usr/ucb)
509 AC_PATH_PROG(FINGER, finger, /usr/ucb/finger, $PATH:/usr/ucb)
510
511 dnl ----------------------------------------------------------------
512 dnl Perl
513 ol_link_perl=no
514 if test $ol_enable_perl != no ; then
515         AC_PATH_PROG(PERLBIN, perl, /usr/bin/perl)
516
517         if test "no$PERLBIN" = "no" ; then
518                 if test $ol_enable_perl = yes ; then
519                         AC_MSG_ERROR([could not locate perl])
520                 fi
521
522         else
523                 PERL_CPPFLAGS="`$PERLBIN -MExtUtils::Embed -e ccopts`"
524                 if test x"$ol_with_perl_module" == "xstatic" ; then
525                         SLAPD_PERL_LDFLAGS="`$PERLBIN -MExtUtils::Embed -e ldopts|sed -e s/-lc//`"
526                 else
527                         MOD_PERL_LDFLAGS="`$PERLBIN -MExtUtils::Embed -e ldopts|sed -e s/-lc//`"
528                 fi
529                 dnl should check perl version
530                 ol_link_perl=yes
531         fi
532 fi
533
534 AC_PROG_CPP
535
536 dnl ----------------------------------------------------------------
537 dnl Cross compiling checks
538 if test $cross_compiling = yes -a $ol_enable_x_compile = yes; then
539         AC_MSG_WARN([cross compiling....  some functionality will be removed.])
540
541 elif test $cross_compiling = no -a $ol_enable_x_compile = yes; then
542         AC_MSG_WARN([programs compiled here do run here...])
543         AC_MSG_ERROR([  if not cross compiling, use --disable-x-compile.])
544
545 elif test $cross_compiling = yes -a $ol_enable_x_compile = no; then
546         AC_MSG_WARN([programs compiled here do not run here...])
547         AC_MSG_ERROR([  if cross compiling,  add --enable-x-compile.])
548 fi
549
550 dnl ----------------------------------------------------------------
551 dnl Checks for UNIX Variants
552 AC_AIX
553 AC_ISC_POSIX
554 AC_MINIX
555
556 dnl ----------------------------------------------------------------
557 dnl Checks for system services
558 AC_CYGWIN
559 AC_MINGW32
560 AC_EXEEXT
561 AC_OBJEXT
562
563 AC_DEFINE_UNQUOTED( EXEEXT, "${EXEEXT}", [defined to be the EXE extension])
564
565 dnl ----------------------------------------------------------------
566 dnl BeOS requires -lbe -lroot -lnet
567 AC_CHECK_LIB(be, be_app, [LIBS="$LIBS -lbe -lroot -lnet"], :, [-lroot -lnet])
568
569 dnl ----------------------------------------------------------------
570 dnl OpenLDAP requires STDC features
571 AM_PROG_CC_STDC
572 if test "X${am_cv_prog_cc_stdc}" = "Xno" ; then
573         AC_MSG_ERROR([OpenLDAP requires compiler to support STDC constructs.])
574 fi
575
576 dnl ----------------------------------------------------------------
577 dnl Check cc depend flags
578 OL_MKDEPEND
579 if test "${ol_cv_mkdep}" = no ; then
580         # this will soon become an error
581         AC_MSG_WARN([do not know how to generate dependencies])
582 fi
583
584 dnl ----------------------------------------------------------------
585 dnl Check for module support
586 ol_link_modules=no
587 if test $ol_enable_modules != no ; then
588         AC_CHECK_HEADERS(ltdl.h)
589
590         if test $ac_cv_header_ltdl_h = no ; then
591                 AC_MSG_ERROR([could not locate libtool ltdl.h])
592         fi
593
594         AC_CHECK_LIB(ltdl, lt_dlinit)
595         if test "$ac_cv_lib_ltdl_lt_dlinit" = no ; then
596                 AC_MSG_ERROR([could not locate libtool -lltdl])
597         fi
598         ol_link_modules=yes
599
600 else
601         ol_with_bdb2_module=static
602         ol_with_ldap_module=static
603         ol_with_ldbm_module=static
604         ol_with_passwd_module=static
605         ol_with_perl_module=static
606         ol_with_shell_module=static
607         ol_with_tcl_module=static
608 fi
609
610 dnl ----------------------------------------------------------------
611 dnl Checks for header files.
612 OL_HEADER_STDC
613
614 if test $ol_cv_header_stdc != yes; then
615         AC_MSG_WARN([could not locate Standard C compliant headers])
616 fi
617
618 AC_HEADER_DIRENT
619 AC_HEADER_SYS_WAIT
620 AM_HEADER_TIOCGWINSZ_NEEDS_SYS_IOCTL
621 if test $am_cv_sys_posix_termios = yes ; then
622         AC_DEFINE(HAVE_POSIX_TERMIOS,1,
623                 [define if you have POSIX termios])
624 fi
625
626 AC_CHECK_HEADERS(       \
627         arpa/inet.h             \
628         arpa/nameser.h  \
629         assert.h                \
630         crypt.h                 \
631         errno.h                 \
632         fcntl.h                 \
633         filio.h                 \
634         getopt.h                \
635         grp.h                   \
636         libutil.h               \
637         limits.h                \
638         locale.h                \
639         netinet/tcp.h   \
640         malloc.h                \
641         memory.h                \
642         psap.h                  \
643         pwd.h                   \
644         resolv.h                \
645         sgtty.h                 \
646         shadow.h                \
647         stddef.h                \
648         string.h                \
649         strings.h               \
650         sysexits.h              \
651         sys/file.h              \
652         sys/filio.h             \
653         sys/errno.h             \
654         sys/ioctl.h             \
655         sys/param.h             \
656         sys/resource.h  \
657         sys/select.h    \
658         sys/socket.h    \
659         sys/syslog.h    \
660         sys/time.h              \
661         sys/types.h             \
662         syslog.h                \
663         termios.h               \
664         unistd.h                \
665 )
666
667 dnl ----------------------------------------------------------------
668 dnl Checks for libraries
669
670 dnl HP-UX requires -lV3
671 AC_CHECK_LIB(V3, sigset)
672
673 dnl Find socket()
674 dnl Likely combinations:
675 dnl             -lsocket [ -lnsl_s | -lnsl ]
676 dnl             -linet
677
678 AC_CHECK_FUNC(socket, :, [      
679 dnl hopefully we won't include too many libraries
680         AC_CHECK_LIB(socket, main)
681         AC_CHECK_LIB(net, main)
682         AC_CHECK_LIB(net, socket)
683         AC_CHECK_LIB(nsl_s, main)
684         AC_CHECK_LIB(nsl, main)
685         AC_CHECK_LIB(inet, socket)
686         AC_CHECK_LIB(gen, main)
687 ])
688
689 dnl require select
690 AC_CHECK_FUNC(select, :, AC_MSG_ERROR([select() required.]))
691 dnl AC_CHECK_FUNCS(socketpair)
692
693 dnl Select arg types
694 dnl (if this detection becomes permenent, it and the select() detection
695 dnl should be done before the yielding select test) 
696 AC_FUNC_SELECT_ARGTYPES
697
698 dnl check to see if system call automatically restart
699 dnl AC_SYS_RESTARTABLE_SYSCALLS
700
701 dnl ----------------------------------------------------------------
702 dnl require POSIX regex
703 AC_CHECK_HEADERS( regex.h )
704 if test "$ac_cv_header_regex_h" != yes ; then
705         AC_MSG_ERROR([POSIX regex.h required.])
706 fi
707 AC_CHECK_FUNC(regfree, :, AC_MSG_ERROR([POSIX regex required.]))
708
709 OL_POSIX_REGEX
710 if test "$ol_cv_c_posix_regex" = no ; then
711         AC_MSG_ERROR([broken POSIX regex!])
712 fi
713
714 dnl ----------------------------------------------------------------
715 dnl Check for resolver routines
716 AC_CHECK_FUNC(res_search,:)
717 if test $ac_cv_func_res_search = no ; then 
718         AC_CHECK_LIB(bind, res_search)
719         ac_cv_func_res_search=$ac_cv_lib_bind_res_search
720 fi
721
722 if test $ac_cv_func_res_search = no ; then 
723         AC_CHECK_LIB(bind, __res_search)
724         ac_cv_func_res_search=$ac_cv_lib_bind___res_search
725 fi
726
727 if test $ac_cv_func_res_search = no ; then 
728         AC_CHECK_LIB(resolv, res_search)
729         ac_cv_func_res_search=$ac_cv_lib_resolv_res_search
730 fi
731
732 if test "$ac_cv_func_res_search" = yes ; then
733         AC_DEFINE(HAVE_RES_SEARCH,1,
734                 [define if you have res_search()])
735 elif test $ol_enable_dns = yes ; then
736         AC_MSG_ERROR([--enable-dns requires res_search])
737 elif test $ol_enable_dns != no ; then
738         AC_MSG_WARN([no res_search, disabling DNS support])
739 fi
740
741
742 dnl ----------------------------------------------------------------
743 dnl ISODE tests
744 ol_link_isode=no
745 if test $ol_enable_ldapd != no ; then
746         AC_MSG_WARN([ldapd is not supported and may suffer from bit rot.])
747
748         dnl look for ISODE libraries
749         AC_CHECK_LIB(xtpp, main, [
750                 ol_link_isode=yes
751                 AC_DEFINE(HAVE_XTPP,1, [define if you have -lxttp])
752                 LDAPD_LIBS="$LDAPD_LIBS -lxtpp -lxtdsap -lxtisode -losi"
753                 ],:,[-lxtdsap -lxtisode -losi])
754         AC_CHECK_LIB(dsap, main, [
755                 ol_link_isode=yes
756                 AC_DEFINE(HAVE_DSAP,1, [define if you have -ldsap])
757                 LDAPD_LIBS="$LDAPD_LIBS -ldsap"
758                 ],:,[-lisode])
759         AC_CHECK_LIB(isode, main, [
760                 ol_link_isode=yes
761                 AC_DEFINE(HAVE_ISODE,1, [define if you have -lisode])
762                 LDAPD_LIBS="$LDAPD_LIBS -lisode"
763                 ],:)
764 fi
765
766 if test $ol_link_isode != no; then
767         AC_CHECK_LIB(pp, main, [
768                 AC_DEFINE(HAVE_PP,1, [define if you have -lpp])
769                 LDAPD_LIBS="-lpp $LDAPD_LIBS"
770                 ],:)
771
772         AC_PATH_PROG(PEPSY, pepsy)
773 fi
774
775 dnl ----------------------------------------------------------------
776 dnl QUIPU
777 if test $ol_enable_quipu != no ; then
778         AC_CHECK_HEADERS(quipu/commonarg.h)
779
780         if test $ac_cv_header_quipu_commonarg_h = yes ; then
781                 BUILD_QUIPU=yes
782         elif test $ol_enable_quipu = auto ; then
783                 AC_MSG_WARN([no quipu for --enable-quipu=auto, disabling])
784         else
785                 AC_MSG_ERROR(no quipu for --enable-quipu=$ol_enable_quipu)
786         fi
787 fi
788
789 dnl ----------------------------------------------------------------
790 dnl Kerberos
791 ol_link_kerberos=no
792
793 if test $ol_with_kerberos = auto -o $ol_with_kerberos = k5 ; then
794         AC_CHECK_HEADERS(kerberosIV/krb.h kerberosIV/des.h)
795
796         if test $ac_cv_header_kerberosIV_krb_h = yes ; then
797                 AC_CHECK_LIB(krb4, main, [have_k5=yes], [have_k5=no],
798                         [-lkrb5 -ldes425])
799
800                 if test $have_k5 = yes ; then
801                         ol_with_kerberos=found
802                         ol_link_kerberos=yes
803
804                         KRB_LIBS="-lkrb4 -lkrb5 -ldes425"
805
806                         LIBS="$KRB_LIBS $LIBS"
807
808                         AC_CACHE_CHECK([for des_debug in Kerberos libraries],
809                                 [ol_cv_var_des_debug], [
810                                 dnl save the flags
811                                 save_LIBS="$LIBS"
812                                 LIBS="$KRB_LIBS $LIBS"
813                                 AC_TRY_LINK([
814 #include <kerberosIV/krb.h>
815 #include <kerberosIV/des.h>
816 extern int des_debug;
817 ],[
818 des_debug = 1;
819 ],                              ol_cv_var_des_debug=yes, ol_cv_var_des_debug=no)
820                                 dnl restore the LIBS
821                                 LIBS="$save_LIBS"
822                         ])
823
824                         if test $ol_cv_var_des_debug = yes ; then
825                                 AC_DEFINE(HAVE_DES_DEBUG,1,
826                                         [define if you have Kerberos des_debug])
827                         fi
828
829                         LIBS="$save_LIBS"
830                 fi
831         fi
832 fi
833
834 if test $ol_with_kerberos = auto -o $ol_with_kerberos = k4 \
835         -o $ol_with_kerberos = kth ; then
836
837         AC_CHECK_HEADERS(krb.h des.h krb-archaeology.h )
838
839         if test $ac_cv_header_krb_h = yes ; then
840                 AC_CHECK_LIB(krb, main, [have_k4=yes], [have_k4=no], [-ldes])
841
842                 if test $have_k4 = yes ; then
843                         ol_with_kerberos=found
844                         ol_link_kerberos=yes
845
846                         KRB_LIBS="-lkrb -ldes"
847
848                         if test $ac_cv_header_krb_archaeology_h = yes ; then
849                                 AC_DEFINE(HAVE_KTH_KERBEROS, 1,
850                                         [define if you have Kth Kerberos])
851                         fi
852                 fi
853         fi
854 fi
855
856 if test $ol_link_kerberos = yes ; then
857         AC_DEFINE(HAVE_KERBEROS, 1, [define if you have Kerberos])
858
859 elif test $ol_with_kerberos != auto -a $ol_with_kerberos != no ; then
860         AC_ERROR([Kerberos detection failed.])
861 fi
862
863 dnl ----------------------------------------------------------------
864 dnl TLS/SSL
865 ol_link_tls=no
866 if test $ol_with_tls != no ; then
867         
868         AC_CHECK_HEADERS(openssl/ssl.h ssl.h)
869         
870         if test $ac_cv_header_openssl_ssl_h = yes -o $ac_cv_header_ssl_h = yes ; then
871                 AC_CHECK_LIB(ssl, SSLeay_add_ssl_algorithms, 
872                         [have_ssleay=yes
873                         need_rsaref=no],
874                         [have_ssleay=no],
875                         [-lcrypto])
876                         
877                 if test $have_ssleay = no ; then
878                         AC_CHECK_LIB(ssl, SSL_library_init,
879                                 [have_ssleay=yes
880                                 need_rsaref=no], [have_ssleay=no],
881                                 [-lcrypto])
882                 fi
883
884                 if test $have_ssleay = no ; then
885                         AC_CHECK_LIB(ssl, ssl3_accept, 
886                                 [have_ssleay=yes
887                                 need_rsaref=yes], [have_ssleay=no],
888                                 [-lcrypto -lRSAglue -lrsaref])
889                 fi
890
891                 if test $have_ssleay = yes ; then
892                         ol_with_tls=found
893                         ol_link_tls=yes
894
895                         AC_DEFINE(HAVE_SSLEAY, 1, 
896                                 [define if you have SSLeay or OpenSSL])
897
898                         if test $need_rsaref = yes; then
899                                 AC_DEFINE(HAVE_RSAREF, 1, 
900                                         [define if you have RSAref])
901
902                                 TLS_LIBS="-lssl -lcrypto -lRSAglue -lrsaref"
903                         else
904                                 TLS_LIBS="-lssl -lcrypto"
905                         fi
906                 fi
907         fi
908 fi
909
910 if test $ol_link_tls = yes ; then
911         AC_DEFINE(HAVE_TLS, 1, [define if you have TLS])
912 fi      
913
914 dnl ----------------------------------------------------------------
915 dnl Tests for reentrant functions necessary to build a
916 dnl thread_safe -lldap.
917 AC_CHECK_FUNCS(         \
918         ctime_r                 \
919         gethostbyname_r gethostbyaddr_r \
920 )
921
922 if test "$ac_cv_func_ctime_r" = no ; then
923         ol_cv_func_ctime_r_nargs=0
924 else
925         OL_FUNC_CTIME_R_NARGS
926 dnl     OL_FUNC_CTIME_R_TYPE
927 fi
928
929 if test "$ac_cv_func_gethostbyname_r" = yes ; then
930         OL_FUNC_GETHOSTBYNAME_R_NARGS
931 else
932         ol_cv_func_gethostbyname_r_nargs=0
933 fi
934  
935 if test "$ac_cv_func_gethostbyaddr_r" = yes ; then
936         OL_FUNC_GETHOSTBYADDR_R_NARGS
937 else
938         ol_cv_func_gethostbyaddr_r_nargs=0
939 fi
940
941 if test "$ac_cv_func_ctime_r" = yes \
942         -a "$ol_cv_func_ctime_r_nargs" -ge 2 \
943         -a "$ol_cv_func_ctime_r_nargs" -le 3 \
944         -a "$ac_cv_func_gethostbyname_r" = yes \
945         -a "$ol_cv_func_gethostbyname_r_nargs" -ge 5 \
946         -a "$ol_cv_func_gethostbyname_r_nargs" -le 6 \
947         -a "$ac_cv_func_gethostbyaddr_r" = yes \
948         -a "$ol_cv_func_gethostbyaddr_r_nargs" -ge 5 \
949         -a "$ol_cv_func_gethostbyaddr_r_nargs" -le 6 \
950         ; then
951  
952         AC_DEFINE(LDAP_API_FEATURE_X_OPENLDAP_REENTRANT,1)
953 fi
954
955 dnl ----------------------------------------------------------------
956 dnl Threads?
957 ol_link_threads=no
958 if test $ol_with_threads = auto -o $ol_with_threads = yes \
959         -o $ol_with_threads = posix ; then
960
961         AC_CHECK_HEADERS(pthread.h)
962
963         if test $ac_cv_header_pthread_h = yes ; then
964                 OL_POSIX_THREAD_VERSION
965
966                 if test $ol_cv_pthread_version = final ; then
967                         AC_DEFINE(HAVE_PTHREADS_FINAL,1,
968                                 [define if pthreads API compatible with final spec])
969                 elif test $ol_cv_pthread_version = draft4 ; then
970                         AC_DEFINE(HAVE_PTHREADS_D4,1,
971                                 [define if pthreads API compatible with draft4 spec])
972                 else
973                         AC_MSG_ERROR([unknown pthread version])
974                 fi
975
976                 # consider threads found
977                 ol_with_threads=found
978
979                 OL_HEADER_LINUX_THREADS
980                 OL_HEADER_GNU_PTH_PTHREAD_H
981
982                 if test $ol_cv_header_gnu_pth_pthread_h = no ; then
983                         AC_CHECK_HEADERS(sched.h)
984                 fi
985
986                 dnl Now the hard part, how to link?
987                 dnl
988                 dnl currently supported checks:
989                 dnl
990                 dnl Check for no flags 
991                 dnl     pthread_create() in $LIBS
992                 dnl
993                 dnl Check special pthread (final) flags
994                 dnl     [skipped] pthread_create() with -mt (Solaris) [disabled]
995                 dnl     pthread_create() with -kthread (FreeBSD)
996                 dnl     pthread_create() with -pthread (FreeBSD/Digital Unix)
997                 dnl     pthread_create() with -pthreads (?)
998                 dnl     pthread_create() with -mthreads (AIX)
999                 dnl     pthread_create() with -thread (?)
1000                 dnl
1001                 dnl Check pthread (final) libraries
1002                 dnl     pthread_mutex_unlock() in -lpthread -lmach -lexc -lc_r (OSF/1)
1003                 dnl     pthread_mutex_lock() in -lpthread -lmach -lexc (OSF/1)
1004                 dnl     [skipped] pthread_mutex_trylock() in -lpthread -lexc (OSF/1)
1005                 dnl     pthread_join() -Wl,-woff,85 -lpthread (IRIX)
1006                 dnl     pthread_create() in -lpthread (many)
1007                 dnl     pthread_create() in -lc_r (FreeBSD)
1008                 dnl
1009                 dnl Check pthread (draft4) flags (depreciated)
1010                 dnl     pthread_create() with -threads (OSF/1)
1011                 dnl
1012                 dnl Check pthread (draft4) libraries (depreciated)
1013                 dnl     pthread_mutex_unlock() in -lpthreads -lmach -lexc -lc_r (OSF/1)
1014                 dnl     pthread_mutex_lock() in -lpthreads -lmach -lexc (OSF/1)
1015                 dnl     pthread_mutex_trylock() in -lpthreads -lexc (OSF/1)
1016                 dnl     pthread_create() in -lpthreads (many)
1017                 dnl
1018
1019                 dnl pthread_create in $LIBS
1020                 AC_CACHE_CHECK([for pthread_create in default libraries],
1021                         ol_cv_pthread_create,[
1022                 AC_TRY_RUN(OL_PTHREAD_TEST_PROGRAM,
1023                         [ol_cv_pthread_create=yes],
1024                         [ol_cv_pthread_create=no],
1025                         [AC_TRY_LINK(OL_PTHREAD_TEST_INCLUDES,OL_PTHREAD_TEST_FUNCTION,
1026                                 [ol_cv_pthread_create=yes],
1027                                 [ol_cv_pthread_create=no])])])
1028
1029                 if test $ol_cv_pthread_create != no ; then
1030                         ol_link_threads=posix
1031                         ol_link_pthreads=""
1032                 fi
1033                 
1034 dnl             OL_PTHREAD_TRY([-mt],           [ol_cv_pthread_mt])
1035                 OL_PTHREAD_TRY([-kthread],      [ol_cv_pthread_kthread])
1036                 OL_PTHREAD_TRY([-pthread],      [ol_cv_pthread_pthread])
1037                 OL_PTHREAD_TRY([-pthreads],     [ol_cv_pthread_pthreads])
1038                 OL_PTHREAD_TRY([-mthreads],     [ol_cv_pthread_mthreads])
1039                 OL_PTHREAD_TRY([-thread],       [ol_cv_pthread_thread])
1040
1041                 OL_PTHREAD_TRY([-lpthread -lmach -lexc -lc_r],
1042                         [ol_cv_pthread_lpthread_lmach_lexc_lc_r])
1043                 OL_PTHREAD_TRY([-lpthread -lmach -lexc],
1044                         [ol_cv_pthread_lpthread_lmach_lexc])
1045 dnl             OL_PTHREAD_TRY([-lpthread -lexc],
1046 dnl                     [ol_cv_pthread_lpthread_lexc])
1047
1048                 OL_PTHREAD_TRY([-lpthread -Wl,-woff,85],
1049                         [ol_cv_pthread_lib_lpthread_woff])
1050
1051                 OL_PTHREAD_TRY([-lpthread],     [ol_cv_pthread_lpthread])
1052                 OL_PTHREAD_TRY([-lc_r],         [ol_cv_pthread_lc_r])
1053
1054                 OL_PTHREAD_TRY([-threads],      [ol_cv_pthread_threads])
1055
1056                 OL_PTHREAD_TRY([-lpthreads -lmach -lexc -lc_r],
1057                         [ol_cv_pthread_lpthreads_lmach_lexc_lc_r])
1058                 OL_PTHREAD_TRY([-lpthreads -lmach -lexc],
1059                         [ol_cv_pthread_lpthreads_lmach_lexc])
1060                 OL_PTHREAD_TRY([-lpthreads -lexc],
1061                         [ol_cv_pthread_lpthreads_lexc])
1062
1063                 OL_PTHREAD_TRY([-lpthreads],[ol_cv_pthread_lib_lpthreads])
1064
1065                 if test $ol_link_threads != no ; then
1066                         AC_DEFINE(HAVE_PTHREADS,1,
1067                                 [define if you have POSIX Threads])
1068
1069                         LTHREAD_LIBS="$LTHREAD_LIBS $ol_link_pthreads"
1070
1071                         dnl save flags
1072                         save_CPPFLAGS="$CPPFLAGS"
1073                         save_LIBS="$LIBS"
1074                         LIBS="$LTHREAD_LIBS $LIBS"
1075
1076                         dnl All POSIX Thread (final) implementations should have
1077                         dnl sched_yield instead of pthread yield.
1078                         dnl check for both
1079                         AC_CHECK_FUNCS(sched_yield pthread_yield)
1080
1081                         if test $ac_cv_func_sched_yield = no -a \
1082                                 $ac_cv_func_pthread_yield = no ; then
1083                                 dnl Digital UNIX has sched_yield() in -lrt
1084                                 AC_CHECK_LIB(rt, sched_yield,
1085                                         [LTHREAD_LIBS="$LTHREAD_LIBS -lrt"
1086                                         AC_DEFINE(HAVE_SCHED_YIELD,1,
1087                                                 [Define if you have the sched_yield function.])
1088                                         ac_cv_func_sched_yield=yes],
1089                                         [ac_cv_func_sched_yield=no])
1090                         fi
1091                         if test $ac_cv_func_sched_yield = no -a \
1092                                 $ac_cv_func_pthread_yield = no ; then
1093                                 dnl Solaris has sched_yield() stub in -lposix4
1094                                 dnl but we'll use thr_yield instead.
1095                                 AC_CHECK_FUNCS(thr_yield)
1096                         fi
1097                         if test $ac_cv_func_sched_yield = no -a \
1098                                 $ac_cv_func_pthread_yield = no -a \
1099                                 "$ac_cv_func_thr_yield" = no ; then
1100                                 AC_MSG_WARN([could not locate sched_yield() or pthread_yield()])
1101                         fi
1102
1103                         dnl Check functions for compatibility
1104                         AC_CHECK_FUNCS(pthread_kill)
1105
1106                         dnl Check for pthread_detach with <pthread.h> inclusion
1107                         dnl as it's symbol may have been mangled.
1108                         AC_CACHE_CHECK([for pthread_detach with <pthread.h>],
1109                                 [ol_cv_func_pthread_detach], [
1110                                 dnl save the flags
1111                                 AC_TRY_LINK([
1112 #include <pthread.h>
1113 #ifndef NULL
1114 #define NULL (void*)0
1115 #endif
1116 ],
1117                                         [pthread_detach(NULL);],
1118                                         [ol_cv_func_pthread_detach=yes],
1119                                         [ol_cv_func_pthread_detach=no])
1120                         ])
1121
1122                         if test $ol_cv_func_pthread_detach = no ; then
1123                                 AC_MSG_ERROR([could not locate pthread_detach()])
1124                         fi
1125
1126                         AC_DEFINE(HAVE_PTHREAD_DETACH,1,
1127                                 [define if you have pthread_detach function])
1128
1129                         dnl Check for setconcurreny functions
1130                         AC_CHECK_FUNCS( \
1131                                 pthread_setconcurrency \
1132                                 pthread_getconcurrency \
1133                                 thr_setconcurrency \
1134                                 thr_getconcurrency \
1135                         )
1136
1137                         OL_SYS_LINUX_THREADS
1138                         OL_LINUX_THREADS
1139
1140                         if test $ol_cv_linux_threads = error; then
1141                                 AC_MSG_ERROR([LinuxThreads header/library mismatch]);
1142                         fi
1143
1144                         AC_CACHE_CHECK([if pthread_create() works],
1145                                 ol_cv_pthread_create_works,[
1146                         AC_TRY_RUN(OL_PTHREAD_TEST_PROGRAM,
1147                                 [ol_cv_pthread_create_works=yes],
1148                                 [ol_cv_pthread_create_works=no],
1149                                 [dnl assume yes
1150                                 ol_cv_pthread_create_works=yes])])
1151
1152                         if test $ol_cv_pthread_create_works = no ; then
1153                                 AC_MSG_ERROR([pthread_create is not usable, check environment settings])
1154                         fi
1155
1156                         dnl Check if select causes an yield
1157                         if test $ol_with_yielding_select = auto ; then
1158                                 AC_CACHE_CHECK([if select yields when using pthreads],
1159                                         ol_cv_pthread_select_yields,[
1160                                 AC_TRY_RUN([
1161 #include <sys/types.h>
1162 #include <sys/time.h>
1163 #include <unistd.h>
1164 #include <pthread.h>
1165 #ifndef NULL
1166 #define NULL (void*) 0
1167 #endif
1168
1169 static int fildes[2];
1170
1171 static void *task(p)
1172         void *p;
1173 {
1174         int i;
1175         struct timeval tv;
1176
1177         fd_set rfds;
1178
1179         tv.tv_sec=10;
1180         tv.tv_usec=0;
1181
1182         FD_ZERO(&rfds);
1183         FD_SET(fildes[0], &rfds);
1184
1185         /* we're not interested in any fds */
1186         i = select(FD_SETSIZE, &rfds, NULL, NULL, &tv);
1187
1188         if(i < 0) {
1189                 perror("select");
1190                 exit(10);
1191         }
1192
1193         exit(0); /* if we exit here, the select blocked the whole process */
1194 }
1195
1196 int main(argc, argv)
1197         int argc;
1198         char **argv;
1199 {
1200         pthread_t t;
1201
1202         /* create a pipe to select */
1203         if(pipe(&fildes[0])) {
1204                 perror("select");
1205                 exit(1);
1206         }
1207
1208 #ifdef HAVE_PTHREAD_SETCONCURRENCY
1209         (void) pthread_setconcurrency(2);
1210 #else
1211 #ifdef HAVE_THR_SETCONCURRENCY
1212         /* Set Solaris LWP concurrency to 2 */
1213         thr_setconcurrency(2);
1214 #endif
1215 #endif
1216
1217 #if HAVE_PTHREADS_D4
1218         pthread_create(&t, pthread_attr_default, task, NULL);
1219 #else
1220         pthread_create(&t, NULL, task, NULL);
1221 #endif
1222
1223 #if HAVE_SCHED_YIELD
1224         sched_yield();  /* make sure task runs first */
1225 #else
1226 #ifdef HAVE_PTHREAD_YIELD
1227         pthread_yield();        /* make sure task runs first */
1228 #endif
1229 #endif
1230
1231         exit(2);
1232 }],
1233                                 [ol_cv_pthread_select_yields=no],
1234                                 [ol_cv_pthread_select_yields=yes],
1235                                 [ol_cv_pthread_select_yields=cross])])
1236
1237                                 if test $ol_cv_pthread_select_yields = cross ; then
1238                                         AC_MSG_ERROR([crossing compiling: use --with-yielding_select=yes|no|manual])
1239                                 fi
1240
1241                                 if test $ol_cv_pthread_select_yields = yes ; then
1242                                         ol_with_yielding_select=yes
1243                                 fi
1244                         fi
1245
1246                         dnl restore flags
1247                         CPPFLAGS="$save_CPPFLAGS"
1248                         LIBS="$save_LIBS"
1249                 else
1250                         AC_MSG_ERROR([could not link with POSIX Threads])
1251                 fi
1252         fi
1253
1254         if test $ol_with_threads = posix ; then
1255                 AC_MSG_ERROR([could not locate POSIX Threads])
1256         fi
1257 fi
1258
1259 if test $ol_with_threads = auto -o $ol_with_threads = yes \
1260         -o $ol_with_threads = mach ; then
1261
1262         dnl check for Mach CThreads
1263         AC_CHECK_HEADERS(mach/cthreads.h)
1264         if test $ac_cv_header_mach_cthreads_h = yes ; then
1265                 ol_with_threads=found
1266
1267                 dnl check for cthread support in current $LIBS
1268                 AC_CHECK_FUNC(cthread_fork,[ol_link_threads=yes])
1269
1270                 if test $ol_link_threads = no ; then
1271                         dnl try -all_load
1272                         dnl this test needs work
1273                         AC_CACHE_CHECK([for cthread_fork with -all_load],
1274                                 [ol_cv_cthread_all_load], [
1275                                 dnl save the flags
1276                                 save_LIBS="$LIBS"
1277                                 LIBS="-all_load $LIBS"
1278                                 AC_TRY_LINK([#include <mach/cthreads.h>],[
1279                                         cthread_fork((void *)0, (void *)0);
1280                                         ], ol_cv_cthread_all_load=yes, ol_cv_cthread_all_load=no)
1281                                 dnl restore the LIBS
1282                                 LIBS="$save_LIBS"
1283                         ])
1284
1285                         if test $ol_cv_cthread_all_load = yes ; then
1286                                 LTHREAD_LIBS="$LTHREAD_LIBS -all_load"
1287                                 ol_link_threads=mach
1288                         fi
1289                 fi
1290
1291                 if test $ol_link_threads != no ; then
1292                         : check for cthread specific functionality here
1293                         AC_DEFINE(HAVE_MACH_CTHREADS,1,
1294                                 [define if you have Mach Cthreads])
1295                 else
1296                         AC_MSG_ERROR([could not link with Mach CThreads])
1297                 fi
1298         fi
1299
1300         if test $ol_with_threads = mach ; then
1301                 AC_MSG_ERROR([could not locate Mach CThreads])
1302         fi
1303 fi
1304
1305 if test $ol_with_threads = auto -o $ol_with_threads = yes \
1306         -o $ol_with_threads = pth ; then
1307
1308         AC_CHECK_HEADERS(pth.h)
1309
1310         if test $ac_cv_header_pth_h = yes ; then
1311                 AC_CHECK_LIB(pth, pth_version, [have_pth=yes], [have_pth=no])
1312
1313                 if test $have_pth = yes ; then
1314                         AC_DEFINE(HAVE_GNU_PTH,1,[if you have GNU Pth])
1315                         LTHREAD_LIBS="$LTHREAD_LIBS -lpth"
1316                         ol_link_threads=pth
1317
1318                         if test $ol_with_yielding_select = auto ; then
1319                                 ol_with_yielding_select=yes
1320                         fi
1321                 fi
1322         fi
1323 fi
1324
1325 if test $ol_with_threads = auto -o $ol_with_threads = yes \
1326         -o $ol_with_threads = lwp ; then
1327
1328         dnl check for SunOS5 LWP
1329         AC_CHECK_HEADERS(thread.h synch.h)
1330         if test $ac_cv_header_thread_h = yes -a $ac_cv_header_synch_h = yes ; then
1331                 AC_CHECK_LIB(thread, thr_create, [have_thr=yes], [have_thr=no])
1332
1333                 if test $have_thr = yes ; then
1334                         AC_DEFINE(HAVE_THR,1,
1335                                 [if you have Solaris LWP (thr) package])
1336                         LTHREAD_LIBS="$LTHREAD_LIBS -lthread"
1337                         ol_link_threads=thr
1338
1339                         if test $ol_with_yielding_select = auto ; then
1340                                 ol_with_yielding_select=yes
1341                         fi
1342
1343                         dnl Check for setconcurreny functions
1344                         AC_CHECK_FUNCS( \
1345                                 thr_setconcurrency \
1346                                 thr_getconcurrency \
1347                         )
1348                 fi
1349         fi
1350
1351         dnl check for SunOS4 LWP
1352         AC_CHECK_HEADERS(lwp/lwp.h)
1353         if test $ac_cv_header_lwp_lwp_h = yes ; then
1354                 AC_CHECK_LIB(lwp, lwp_create, [have_lwp=yes], [have_lwp=no])
1355
1356                 if test $have_lwp = yes ; then
1357                         AC_DEFINE(HAVE_LWP,1,
1358                                 [if you have SunOS LWP package])
1359                         LTHREAD_LIBS="$LTHREAD_LIBS -llwp"
1360                         ol_link_threads=lwp
1361
1362                         if test $ol_with_yielding_select = auto ; then
1363                                 ol_with_yielding_select=no
1364                         fi
1365                 fi
1366         fi
1367 fi
1368
1369 if test $ol_with_yielding_select = yes ; then
1370         AC_DEFINE(HAVE_YIELDING_SELECT,1,
1371                 [define if select implicitly yields])
1372 fi
1373
1374 if test $ol_with_threads = manual ; then
1375         dnl User thinks he can manually configure threads.
1376         ol_link_threads=yes
1377
1378         AC_MSG_WARN([thread defines and link options must be set manually])
1379
1380         AC_CHECK_HEADERS(pthread.h sched.h)
1381         AC_CHECK_FUNCS(sched_yield pthread_yield)
1382         OL_HEADER_LINUX_THREADS
1383
1384         AC_CHECK_HEADERS(mach/cthreads.h)
1385         AC_CHECK_HEADERS(lwp/lwp.h)
1386         AC_CHECK_HEADERS(thread.h synch.h)
1387 fi
1388
1389 if test $ol_link_threads != no ; then  
1390         dnl needed to get reentrant/threadsafe versions
1391         dnl
1392         AC_DEFINE(REENTRANT,1)
1393         AC_DEFINE(_REENTRANT,1)
1394         AC_DEFINE(THREAD_SAFE,1)
1395         AC_DEFINE(_THREAD_SAFE,1)
1396         AC_DEFINE(THREADSAFE,1)
1397         AC_DEFINE(_THREADSAFE,1)
1398         AC_DEFINE(_SGI_MP_SOURCE,1)
1399
1400         dnl The errno declaration may dependent upon _REENTRANT.
1401         dnl If it does, we must link with thread support.
1402         AC_CACHE_CHECK([for thread specific errno],
1403                 [ol_cv_errno_thread_specific], [
1404                 AC_TRY_LINK([#include <errno.h>], [errno = 0;],
1405                         [ol_cv_errno_thread_specific=yes],
1406                         [ol_cv_errno_thread_specific=no])
1407         ])
1408
1409         dnl The h_errno declaration may dependent upon _REENTRANT.
1410         dnl If it does, we must link with thread support.
1411         AC_CACHE_CHECK([for thread specific h_errno],
1412                 [ol_cv_h_errno_thread_specific], [
1413                 AC_TRY_LINK([#include <netdb.h>], [h_errno = 0;],
1414                         [ol_cv_h_errno_thread_specific=yes],
1415                         [ol_cv_h_errno_thread_specific=no])
1416         ])
1417
1418         if test $ol_cv_errno_thread_specific != yes \
1419                 -o $ol_cv_h_errno_thread_specific != yes ; then
1420                 LIBS="$LTHREAD_LIBS $LIBS"
1421                 LTHREAD_LIBS=""
1422         fi
1423
1424 dnl When in thread environment, use 
1425 dnl             #if defined( HAVE_REENTRANT_FUNCTIONS ) \ 
1426 dnl                     || defined( HAVE_FUNC_R )
1427 dnl                     func_r(...);
1428 dnl             #else
1429 dnl             #       if defined( HAVE_THREADS ) 
1430 dnl                             /* lock */
1431 dnl             #       endif
1432 dnl                             func(...);
1433 dnl             #       if defined( HAVE_THREADS ) 
1434 dnl                             /* unlock */
1435 dnl             #       endif
1436 dnl             #endif
1437 dnl
1438 dnl HAVE_REENTRANT_FUNCTIONS is derived from:
1439 dnl             _POSIX_REENTRANT_FUNCTIONS
1440 dnl             _POSIX_THREAD_SAFE_FUNCTIONS
1441 dnl             _POSIX_THREADSAFE_FUNCTIONS
1442 dnl
1443 dnl             and is currently defined in lthread.h
1444 dnl
1445 dnl HAVE_THREADS is defined by lthread.h iff -UNO_THREADS
1446 dnl 
1447 dnl libldap/*.c should only include <lthread.h> iff
1448 dnl LDAP_R_COMPILE is defined.  ie:
1449 dnl             #ifdef LDAP_R_COMPILE
1450 dnl             #       include LDAP_R_COMPILE
1451 dnl             #endif
1452 dnl
1453 dnl LDAP_R_COMPILE is defined by libldap_r/Makefile.in
1454 dnl specifically for compiling the threadsafe version of
1455 dnl     the ldap library (-lldap_r).
1456 dnl             
1457 dnl     dnl check for reentrant/threadsafe functions
1458 dnl     dnl
1459 dnl     dnl note: these should only be used when linking
1460 dnl     dnl       with $LTHREAD_LIBS
1461 dnl     dnl
1462 dnl     save_CPPFLAGS="$CPPFLAGS"
1463 dnl     save_LIBS="$LIBS"
1464 dnl     LIBS="$LTHREAD_LIBS $LIBS"
1465 dnl     AC_CHECK_FUNCS( \
1466 dnl             gmtime_r \
1467 dnl             gethostbyaddr_r gethostbyname_r \
1468 dnl             feof_unlocked unlocked_feof \
1469 dnl             putc_unlocked unlocked_putc \
1470 dnl             flockfile ftrylockfile \
1471 dnl     )
1472 dnl     CPPFLAGS="$save_CPPFLAGS"
1473 dnl     LIBS="$save_LIBS"
1474 fi  
1475
1476 if test $ol_link_threads = no ; then
1477         if test $ol_with_threads = yes ; then
1478                 AC_MSG_ERROR([no suitable thread support])
1479         fi
1480
1481         if test $ol_with_threads = auto ; then
1482                 AC_MSG_WARN([no suitable thread support, disabling threads])
1483                 ol_with_threads=no
1484         fi
1485
1486         AC_DEFINE(NO_THREADS,1,
1487                 [define if you have (or want) no threads])
1488         LTHREAD_LIBS=""
1489 fi
1490
1491 if test $ol_link_threads != no ; then
1492         AC_DEFINE(LDAP_API_FEATURE_X_OPENLDAP_THREAD_SAFE,1)
1493 fi
1494
1495 dnl ----------------------------------------------------------------
1496
1497 ol_link_ldbm=no 
1498 if test $ol_with_ldbm_api = auto -o $ol_with_ldbm_api = db2 ; then
1499         OL_BERKELEY_DB2
1500
1501         if test $ol_cv_berkeley_db2 = yes ; then
1502                 ol_link_ldbm=db2
1503                 ol_with_ldbm_api=db2
1504
1505                 if test $ol_with_ldbm_type = hash ; then
1506                         AC_DEFINE(LDBM_USE_DBHASH,1,
1507                                 [define this to use DBHASH w/ LDBM backend])
1508                 else
1509                         AC_DEFINE(LDBM_USE_DBBTREE,1,
1510                                 [define this to use DBBTREE w/ LDBM backend])
1511                 fi
1512
1513                 OL_BERKELEY_DB2_DB_THREAD
1514
1515                 dnl $ol_cv_lib_db2 should be yes or -ldb
1516                 dnl (it could be no, but that would be an error
1517                 if test $ol_cv_lib_db2 != yes ; then
1518                         LDBM_LIBS="$LDBM_LIBS $ol_cv_lib_db2"
1519                 fi
1520         fi
1521 fi
1522
1523 ol_link_bdb2=no
1524 if test $ol_link_ldbm = db2 -a $ol_enable_bdb2 != no ; then
1525         if test $ol_cv_berkeley_db2_db_thread != no ; then
1526                 ol_link_bdb2=yes
1527         else
1528                 AC_MSG_WARN([Installed BerkeleyDB does not provide DB_THREAD support.])
1529         fi
1530 fi
1531
1532 if test $ol_with_ldbm_api = auto -o $ol_with_ldbm_api = db ; then
1533         OL_BERKELEY_DB
1534
1535         if test $ol_cv_berkeley_db = yes ; then
1536                 ol_link_ldbm=db
1537                 ol_with_ldbm_api=db
1538
1539                 if test $ol_with_ldbm_type = hash ; then
1540                         AC_DEFINE(LDBM_USE_DBHASH,1,
1541                                 [define this to use DBHASH w/ LDBM backend])
1542                 else
1543                         AC_DEFINE(LDBM_USE_DBBTREE,1,
1544                                 [define this to use DBBTREE w/ LDBM backend])
1545                 fi
1546
1547                 dnl $ol_cv_lib_db should be yes or -ldb
1548                 dnl (it could be no, but that would be an error
1549                 if test $ol_cv_lib_db != yes ; then
1550                         LDBM_LIBS="$LDBM_LIBS $ol_cv_lib_db"
1551                 fi
1552         fi
1553 fi
1554
1555 if test $ol_with_ldbm_api = manual ; then
1556         dnl User thinks he can manually configure LDBM api.
1557         ol_link_ldbm=yes
1558
1559         AC_MSG_WARN([LDBM defines and link options must be set manually])
1560
1561         AC_CHECK_HEADERS(db.h db_185.h gdbm.h ndbm.h)
1562 fi
1563
1564 if test $ol_link_ldbm = no -a $ol_with_ldbm_type = btree ; then
1565         AC_MSG_WARN(Could not find LDBM with BTREE support)
1566         ol_with_ldbm_api=none
1567 fi
1568
1569 if test $ol_with_ldbm_api = auto -o $ol_with_ldbm_api = mdbm ; then
1570         OL_MDBM
1571
1572         if test $ol_cv_mdbm = yes ; then
1573                 ol_link_ldbm=mdbm
1574                 ol_with_ldbm_api=mdbm
1575                 if test $ol_cv_lib_mdbm != yes ; then
1576                         LDBM_LIBS="$LDBM_LIBS $ol_cv_lib_mdbm"
1577                 fi
1578         fi
1579 fi
1580
1581 if test $ol_with_ldbm_api = auto -o $ol_with_ldbm_api = gdbm ; then
1582         OL_GDBM
1583
1584         if test $ol_cv_gdbm = yes ; then
1585                 ol_link_ldbm=gdbm
1586                 ol_with_ldbm_api=gdbm
1587
1588                 if test $ol_cv_lib_gdbm != yes ; then
1589                         LDBM_LIBS="$LDBM_LIBS $ol_cv_lib_gdbm"
1590                 fi
1591         fi
1592 fi
1593
1594 if test $ol_with_ldbm_api = auto ; then
1595         AC_MSG_WARN([skipping automatic checking for NDBM, must be manually enabled.])
1596 elif test $ol_with_ldbm_api = ndbm ; then
1597         OL_NDBM
1598
1599         if test $ol_cv_ndbm = yes ; then
1600                 ol_link_ldbm=ndbm
1601                 ol_with_ldbm_api=ndbm
1602
1603                 if test $ol_cv_lib_ndbm != yes ; then
1604                         LDBM_LIBS="$LDBM_LIBS $ol_cv_lib_ndbm"
1605                 fi
1606         fi
1607 fi
1608
1609 if test $ol_link_ldbm = no -a $ol_enable_ldbm != no ; then
1610         AC_MSG_WARN(could not find suitable LDBM backend)
1611         if test $ol_enable_ldbm = yes ; then
1612                 AC_MSG_ERROR(select appropriate LDBM options or disable)
1613         fi
1614
1615         AC_MSG_WARN(disabling LDBM)
1616         ol_enable_ldbm=no
1617 fi
1618
1619 dnl ----------------------------------------------------------------
1620 if test $ol_enable_dynamic = yes -a $enable_shared = yes ; then
1621         LINK_BINS_DYNAMIC="yes"
1622 else
1623         LINK_BINS_DYNAMIC="no"
1624 fi
1625
1626 dnl ----------------------------------------------------------------
1627 if test $ol_enable_wrappers != no ; then
1628         AC_CHECK_HEADERS(tcpd.h)
1629
1630         if test $ac_cv_header_tcpd_h != yes ; then
1631                 have_wrappers=no
1632         else
1633                 AC_TRY_COMPILE([
1634 int allow_severity = 0;
1635 int deny_severity  = 0;
1636                 ],[hosts_access()],[have_wrappers=yes],[have_wrappers=no])
1637         fi
1638
1639         if test $have_wrappers = yes ; then
1640                 AC_DEFINE(HAVE_TCPD,1, [define if you have -lwrap])
1641                 WRAP_LIBS="-lwrap"
1642
1643                 dnl We add another check for -lnsl since some libwrap's
1644                 dnl need it, but it isn't always included from above
1645                 AC_CHECK_LIB(nsl, main)
1646         else
1647                 AC_MSG_WARN(could not find -lwrap)
1648                 if test $ol_enable_wrappers = yes ; then
1649                         AC_MSG_ERROR(could not find wrappers, select appropriate options or disable)
1650                 fi
1651
1652                 AC_MSG_WARN(disabling wrappers support)
1653                 ol_enable_wrappers=no
1654                 WRAP_LIBS=""
1655         fi
1656 fi
1657
1658 dnl ----------------------------------------------------------------
1659 if test $ol_enable_syslog != no ; then
1660         AC_CHECK_FUNC(openlog)
1661         if test $ac_cv_func_openlog = no -a $ol_enable_syslog = yes; then
1662                 AC_MSG_ERROR(could not find syslog, select appropriate options or disable)
1663         fi
1664         ol_enable_syslog=$ac_cv_func_openlog
1665 fi
1666
1667 dnl ----------------------------------------------------------------
1668 if test $ol_enable_dmalloc != no ; then
1669         AC_CHECK_HEADERS(dmalloc.h)
1670         AC_CHECK_LIB(dmalloc, dmalloc_shutdown)
1671 fi
1672
1673 dnl ----------------------------------------------------------------
1674 dnl TCL
1675 if test $ol_enable_tcl != no ; then
1676         AC_CHECK_HEADERS(tcl.h)
1677
1678         if test $ac_cv_header_tcl_h != yes ; then
1679                 have_tcl=no
1680         else
1681                 for lib in tcl tcl7.6 tcl8.0 tcl8.2 ; do
1682                         AC_CHECK_LIB($lib,main,
1683                           [have_tcl=yes
1684                            if test x"$ol_with_tcl_module" == "xstatic" ; then
1685                                SLAPD_LIBS="$SLAPD_LIBS -l${lib}"
1686                            else
1687                                MOD_TCL_LIB="-l${lib}"
1688                            fi;break],[have_tcl=no])
1689                 done
1690         fi
1691
1692         if test $have_tcl != yes ; then
1693                 AC_MSG_WARN([could not find -ltcl])
1694                 if test $ol_enable_tcl = yes ; then
1695                         AC_MSG_ERROR([could not find tcl, select appropriate options or disable])
1696                 fi
1697
1698                 ol_enable_tcl=no
1699         fi
1700 fi
1701
1702 dnl ----------------------------------------------------------------
1703 dnl ud needs termcap (should insert check here)
1704 ol_link_termcap=no
1705 AC_CHECK_HEADERS(termcap.h ncurses.h)
1706
1707 if test $ol_link_termcap = no ; then
1708         AC_CHECK_LIB(termcap, tputs, [have_termcap=yes], [have_termcap=no])
1709         if test $have_termcap = yes ; then
1710                 AC_DEFINE(HAVE_TERMCAP, 1, [define if you have -ltermcap])
1711                 ol_link_termcap=yes
1712                 TERMCAP_LIBS=-ltermcap
1713         fi
1714 fi
1715
1716 if test $ol_link_termcap = no ; then
1717         AC_CHECK_LIB(ncurses, initscr, [have_ncurses=yes], [have_ncurses=no])
1718         if test $have_ncurses = yes ; then
1719                 AC_DEFINE(HAVE_NCURSES, 1, [define if you have -lncurses])
1720                 ol_link_termcap=yes
1721                 TERMCAP_LIBS=-lncurses
1722         fi
1723 fi
1724
1725 if test $ol_link_termcap = no ; then
1726         AC_DEFINE(NO_TERMCAP,1, [define if you have no termcap support])
1727         TERMCAP_LIBS=
1728 fi
1729
1730 dnl ----------------------------------------------------------------
1731 dnl
1732 dnl Check for Cyrus SASL
1733 dnl
1734 ol_link_sasl=no
1735 if test $ol_with_cyrus_sasl != no ; then
1736         AC_CHECK_HEADER(sasl.h)
1737
1738         if test $ac_cv_header_sasl_h = yes ; then
1739                 AC_CHECK_LIB(sasl, sasl_client_init,
1740                         [have_cyrus_sasl=yes], [have_cyrus_sasl=no])
1741
1742                 if test $have_cyrus_sasl != no ; then
1743                         SASL_LIBS="-lsasl"
1744                         AC_DEFINE(HAVE_CYRUS_SASL,1,[define if you have Cyrus SASL])
1745                         ol_link_sasl=yes
1746                 fi
1747         fi
1748
1749         if test $ol_link_sasl = no -a $ol_with_cyrus_sasl = yes ; then
1750                 AC_MSG_ERROR(no suitable API for --with-cyrus-sasl=$ol_with_cyrus_sasl)
1751         fi
1752 fi
1753
1754 dnl ----------------------------------------------------------------
1755 dnl Check for entropy sources
1756 if test $cross_compiling != yes ; then
1757         dev=no
1758         if test -r /dev/urandom ; then
1759                 dev="/dev/urandom";
1760         elif test -r /idev/urandom ; then
1761                 dev="/idev/urandom";
1762         elif test -r /dev/srandom ; then
1763                 dev="/dev/srandom";
1764         elif test -r /dev/random ; then
1765                 dev="/dev/random";
1766         elif test -r /idev/random ; then
1767                 dev="/idev/random";
1768         fi
1769
1770         if test $dev != no ; then
1771                 AC_DEFINE_UNQUOTED(URANDOM_DEVICE,"$dev",[set to urandom device])
1772         fi
1773 fi
1774
1775 dnl ----------------------------------------------------------------
1776 dnl
1777 dnl Check for fetch URL support
1778 dnl             should be extended to support other fetch URL APIs
1779 dnl
1780 ol_link_fetch=no
1781 if test $ol_with_fetch != no ; then
1782         OL_LIB_FETCH
1783
1784         if test $ol_cv_lib_fetch != no ; then
1785                 LDIF_LIBS="$LDIF_LIBS $ol_link_fetch"
1786                 ol_link_fetch=freebsd
1787
1788         elif test $ol_with_fetch != auto ; then
1789                 AC_MSG_ERROR(no suitable API for --with-fetch=$ol_with_fetch)
1790         fi 
1791 fi
1792
1793 dnl ----------------------------------------------------------------
1794 dnl
1795 dnl Check for GNU readline
1796 dnl
1797 ol_link_readline=no
1798 if test $ol_with_readline != no ; then
1799         AC_CHECK_HEADERS(readline/readline.h readline/history.h)
1800
1801         if test $ac_cv_header_readline_readline_h = yes ; then
1802                 save_LIBS="$LIBS"
1803                 LIBS="$TERMCAP_LIBS $LIBS"
1804                 AC_CHECK_LIB(readline, readline, 
1805                         [have_readline=yes], [have_readline=no])
1806                 LIBS="$save_LIBS"
1807                         
1808                 if test $have_readline = yes ; then
1809                         ol_with_readline=found
1810                         ol_link_readline=yes
1811
1812                         READLINE_LIBS="-lreadline"
1813                 fi
1814         fi
1815 fi
1816
1817 if test $ol_link_readline = yes ; then
1818         AC_DEFINE(HAVE_READLINE, 1, [define if you have -lreadline])
1819 fi
1820
1821
1822 dnl ----------------------------------------------------------------
1823 dnl FreeBSD (and others) have crypt(3) in -lcrypt
1824 if test $ol_enable_crypt != no ; then
1825         AC_CHECK_FUNC(crypt, [have_crypt=yes], [
1826                 AC_CHECK_LIB(crypt, crypt, [LUTIL_LIBS="$LUTIL_LIBS -lcrypt"
1827                         have_crypt=yes], [have_crypt=no])])
1828
1829         if test $have_crypt = yes ; then
1830                 AC_DEFINE(HAVE_CRYPT,1, [define if crypt(3) is available])
1831         else
1832                 AC_MSG_WARN(could not find crypt)
1833                 if test $ol_enable_crypt = yes ; then
1834                         AC_MSG_ERROR(could not find crypt, select appropriate options or disable)
1835                 fi
1836
1837                 AC_MSG_WARN(disabling crypt support)
1838                 ol_enable_crypt=no
1839         fi
1840 fi
1841
1842 dnl ----------------------------------------------------------------
1843 dnl FreeBSD (and others) have setproctitle(3) in -lutil
1844 if test $ol_enable_proctitle != no ; then
1845         AC_CHECK_FUNC(setproctitle,     [have_setproctitle=yes], [
1846                 AC_CHECK_LIB(util, setproctitle,
1847                         [have_setproctitle=yes
1848                         LUTIL_LIBS="$LUTIL_LIBS -lutil"],
1849                         [have_setproctitle=no
1850                         LIBOBJS="$LIBOBJS setproctitle.o"])])
1851
1852         if test $have_setproctitle = yes ; then
1853                 AC_DEFINE(HAVE_SETPROCTITLE,1,
1854                         [define if setproctitle(3) is available])
1855         fi
1856 fi
1857
1858 dnl ----------------------------------------------------------------
1859 dnl Checks for typedefs, structures, and compiler characteristics.
1860 AC_TYPE_GETGROUPS dnl requires AC_TYPE_UID_T
1861 AC_TYPE_MODE_T
1862 AC_TYPE_OFF_T
1863 AC_TYPE_PID_T
1864 AM_TYPE_PTRDIFF_T
1865 AC_TYPE_SIGNAL
1866 OL_TYPE_SIG_ATOMIC_T
1867 AC_TYPE_SIZE_T
1868 OL_TYPE_SOCKLEN_T
1869 AC_STRUCT_ST_BLKSIZE
1870 AC_HEADER_TIME
1871 AC_STRUCT_TM
1872 OL_STRUCT_PASSWD_PW_GECOS
1873 OL_STRUCT_PASSWD_PW_PASSWD
1874
1875 OL_C_UPPER_LOWER
1876 AC_C_CONST
1877 OL_C_VOLATILE
1878
1879 if test $cross_compiling = yes ; then
1880         AC_DEFINE(CROSS_COMPILING, 1, [define if cross compiling])
1881
1882         AC_DEFINE(LBER_INT_T,long)
1883         AC_DEFINE(LBER_TAG_T,long)
1884         AC_DEFINE(LBER_SOCKET_T,int)
1885
1886 else
1887         AC_C_BIGENDIAN
1888         AC_CHECK_SIZEOF(short) 
1889         AC_CHECK_SIZEOF(int) 
1890         AC_CHECK_SIZEOF(long)
1891
1892         if test "$ac_cv_sizeof_int" -lt 4 ; then
1893                 AC_MSG_WARN([OpenLDAP requires 'int' to be 32 bits or greater.])
1894
1895                 AC_DEFINE(LBER_INT_T,long)
1896                 AC_DEFINE(LBER_TAG_T,long)
1897                 AC_DEFINE(LBER_SOCKET_T,int)
1898         else
1899                 AC_DEFINE(LBER_INT_T,int)
1900                 AC_DEFINE(LBER_TAG_T,long)
1901                 AC_DEFINE(LBER_SOCKET_T,int)
1902         fi
1903 fi
1904
1905 AC_DEFINE(LBER_LEN_T,long)
1906
1907 dnl ----------------------------------------------------------------
1908 dnl Checks for library functions.
1909 AC_FUNC_MEMCMP
1910 dnl AM_FUNC_MKTIME dnl checks for sys/time.h and unistd.h
1911 AC_FUNC_STRFTIME
1912 dnl AM_FUNC_STRTOD
1913
1914 OL_FUNC_INET_ATON
1915
1916 dnl we should use vfork instead of fork in a number of places...
1917 dnl AC_FUNC_VFORK
1918 AC_FUNC_VPRINTF
1919
1920 if test $ac_cv_func_vprintf = yes ; then
1921         dnl check for vsnprintf
1922         AC_CHECK_FUNCS(vsnprintf vsprintf)
1923 fi
1924
1925 AC_CHECK_FUNCS(         \
1926         bcopy                   \
1927         closesocket             \
1928         endgrent                \
1929         endpwent                \
1930         flock                   \
1931         getdtablesize   \
1932         getgrgid                \
1933         gethostname             \
1934         getpass                 \
1935         getpwuid                \
1936         getpwnam                \
1937         getspnam                \
1938         gettimeofday    \
1939         initgroups              \
1940         lockf                   \
1941         memcpy                  \
1942         memmove                 \
1943         mkstemp                 \
1944         pipe                    \
1945         read                    \
1946         recv                    \
1947         recvfrom                \
1948         setpwfile               \
1949         setgid                  \
1950         setegid                 \
1951         setsid                  \
1952         setuid                  \
1953         seteuid                 \
1954         sigaction               \
1955         signal                  \
1956         sigset                  \
1957         snprintf                \
1958         strdup                  \
1959         strerror                \
1960         strpbrk                 \
1961         strrchr                 \
1962         strsep                  \
1963         strstr                  \
1964         strtol                  \
1965         strtoul                 \
1966         strspn                  \
1967         sysconf                 \
1968         waitpid                 \
1969         wait4                   \
1970         write                   \
1971         send                    \
1972         sendto                  \
1973 )
1974
1975 dnl We actually may need to replace more than this.
1976 AC_REPLACE_FUNCS(getopt tempnam)
1977
1978 dnl ----------------------------------------------------------------
1979 # Check Configuration
1980 OL_SYS_ERRLIST
1981
1982 dnl ----------------------------------------------------------------
1983 dnl Sort out defines
1984
1985 if test "$ol_enable_debug" != no ; then
1986         AC_DEFINE(LDAP_DEBUG,1,
1987                 [define this to add debugging code])
1988 fi
1989 if test "$ol_enable_syslog" = yes ; then
1990         AC_DEFINE(LDAP_SYSLOG,1,
1991                 [define this to add syslog code])
1992 fi
1993 if test "$ol_enable_libui" = yes ; then
1994         AC_DEFINE(LDAP_LIBUI,1,
1995                 [define this for LDAP User Interface support])
1996 fi
1997 if test "$ol_enable_cache" = no ; then
1998         AC_DEFINE(LDAP_NOCACHE,1,
1999                 [define this to remove -lldap cache support])
2000 fi
2001 if test "$ol_enable_dns" != no ; then
2002         AC_DEFINE(LDAP_API_FEATURE_X_OPENLDAP_V2_DNS,LDAP_VENDOR_VERSION)
2003 fi
2004 if test "$ol_enable_proctitle" != no ; then
2005         AC_DEFINE(LDAP_PROCTITLE,1,
2006                 [define this for LDAP process title support])
2007 fi
2008 if test "$ol_enable_referrals" != no ; then
2009         AC_DEFINE(LDAP_API_FEATURE_X_OPENLDAP_V2_REFERRALS,LDAP_VENDOR_VERSION)
2010 fi
2011 if test "$ol_enable_cldap" != no ; then
2012         AC_DEFINE(LDAP_CONNECTIONLESS,1,[define to support CLDAP])
2013 fi
2014
2015 if test "$ol_enable_crypt" != no ; then
2016         AC_DEFINE(SLAPD_CRYPT,1,[define to support crypt(3) passwords])
2017 fi
2018 if test "$ol_enable_cleartext" != no ; then
2019         AC_DEFINE(SLAPD_CLEARTEXT,1,[define to support cleartext passwords])
2020 fi
2021 if test "$ol_enable_multimaster" != no ; then
2022         AC_DEFINE(SLAPD_MULTIMASTER,1,[define to support multimaster replication])
2023 fi
2024 if test "$ol_enable_phonetic" != no ; then
2025         AC_DEFINE(SLAPD_PHONETIC,1,[define to support phonetic])
2026 fi
2027 if test "$ol_enable_rlookups" != no ; then
2028         AC_DEFINE(SLAPD_RLOOKUPS,1,[define to support reverse lookups])
2029 fi
2030 if test "$ol_enable_aci" != no ; then
2031         AC_DEFINE(SLAPD_ACI_ENABLED,1,[define to support per-object ACIs])
2032 fi
2033 if test "$ol_enable_discreteaci" != no ; then
2034         AC_DEFINE(SLAPD_ACI_DISCRETE_RIGHTS,1,[define to support discrete rights in ACIs])
2035 fi
2036
2037 if test "$ol_link_modules" != no ; then
2038         AC_DEFINE(SLAPD_MODULES,1,[define to support modules])
2039         BUILD_SLAPD=yes
2040         MODULES_LIBS=-lltdl
2041         SLAPD_MODULES_LDFLAGS="-dlopen self"
2042 fi
2043
2044 if test "$ol_link_bdb2" != no ; then
2045         AC_DEFINE(SLAPD_BDB2,1,[define to support BDB2 backend])
2046         BUILD_SLAPD=yes
2047         BUILD_BDB2=yes
2048         if test "$ol_with_bdb2_module" != static ; then
2049                 AC_DEFINE(SLAPD_BDB2_DYNAMIC,1,
2050                         [define to support dynamic BDB2 backend])
2051                 BUILD_BDB2=mod
2052                 BUILD_BDB2_DYNAMIC=shared
2053                 SLAPD_MODULES_LIST="$SLAPD_MODULES_LIST -dlopen \$(SLAP_DIR)back-bdb2/back_bdb2.la"
2054         fi
2055 fi
2056
2057 if test "$ol_enable_ldap" != no ; then
2058         AC_DEFINE(SLAPD_LDAP,1,[define to support LDAP backend])
2059         BUILD_SLAPD=yes
2060         BUILD_LDAP=yes
2061         if test "$ol_with_ldap_module" != static ; then
2062                 AC_DEFINE(SLAPD_LDAP_DYNAMIC,1,
2063                         [define to support dynamic LDAP backend])
2064                 BUILD_LDAP=mod
2065                 BUILD_LDAP_DYNAMIC=shared
2066                 SLAPD_MODULES_LIST="$SLAPD_MODULES_LIST -dlopen \$(SLAP_DIR)back-ldap/back_ldap.la"
2067         fi
2068 fi
2069
2070 if test "$ol_link_ldbm" != no ; then
2071         AC_DEFINE(SLAPD_LDBM,1,[define to support LDBM backend])
2072         BUILD_SLAPD=yes
2073         BUILD_LDBM=yes
2074         if test "$ol_with_ldbm_module" != static ; then
2075                 AC_DEFINE(SLAPD_LDBM_DYNAMIC,1,
2076                         [define to support dynamic LDBM backend])
2077                 BUILD_LDBM=mod
2078                 BUILD_LDBM_DYNAMIC=shared
2079                 SLAPD_MODULES_LIST="$SLAPD_MODULES_LIST -dlopen \$(SLAP_DIR)back-ldbm/back_ldbm.la"
2080         fi
2081 fi
2082
2083 if test "$ol_enable_passwd" != no ; then
2084         AC_DEFINE(SLAPD_PASSWD,1,[define to support PASSWD backend])
2085         BUILD_SLAPD=yes
2086         BUILD_PASSWD=yes
2087         if test "$ol_with_passwd_module" != static ; then
2088                 AC_DEFINE(SLAPD_PASSWD_DYNAMIC,1,
2089                         [define to support dynamic PASSWD backend])
2090                 BUILD_PASSWD=mod
2091                 BUILD_PASSWD_DYNAMIC=shared
2092                 SLAPD_MODULES_LIST="$SLAPD_MODULES_LIST -dlopen \$(SLAP_DIR)back-passwd/back_passwd.la"
2093         fi
2094 fi
2095
2096 if test "$ol_link_perl" != no ; then
2097         AC_DEFINE(SLAPD_PERL,1,[define to support PERL backend])
2098         BUILD_SLAPD=yes
2099         BUILD_PERL=yes
2100         if test "$ol_with_perl_module" != static ; then
2101                 AC_DEFINE(SLAPD_PERL_DYNAMIC,1,
2102                         [define to support dynamic PERL backend])
2103                 BUILD_PERL=mod
2104                 BUILD_PERL_DYNAMIC=shared
2105                 SLAPD_MODULES_LIST="$SLAPD_MODULES_LIST -dlopen \$(SLAP_DIR)back-perl/back_perl.la"
2106         fi
2107 fi
2108
2109 if test "$ol_enable_shell" != no ; then
2110         AC_DEFINE(SLAPD_SHELL,1,[define to support SHELL backend])
2111         BUILD_SLAPD=yes
2112         BUILD_SHELL=yes
2113         if test "$ol_with_shell_module" != static ; then
2114                 AC_DEFINE(SLAPD_SHELL_DYNAMIC,1,
2115                         [define to support dynamic SHELL backend])
2116                 BUILD_SHELL=mod
2117                 BUILD_SHELL_DYNAMIC=shared
2118                 SLAPD_MODULES_LIST="$SLAPD_MODULES_LIST -dlopen \$(SLAP_DIR)back-shell/back_shell.la"
2119         fi
2120 fi
2121
2122 if test "$ol_enable_tcl" != no ; then
2123         AC_DEFINE(SLAPD_TCL,1,[define to support TCL backend])
2124         BUILD_SLAPD=yes
2125         BUILD_TCL=yes
2126         if test "$ol_with_tcl_module" != static; then
2127                 AC_DEFINE(SLAPD_TCL_DYNAMIC,1,
2128                         [define to support dynamic TCL backend])
2129                 BUILD_TCL=mod
2130                 BUILD_TCL_DYNAMIC=shared
2131                 SLAPD_MODULES_LIST="$SLAPD_MODULES_LIST -dlopen \$(SLAP_DIR)back-tcl/back_tcl.la"
2132         fi
2133 fi
2134
2135 if test "$ol_enable_slurpd" != no -a "$ol_link_threads" != no -a \
2136         $BUILD_SLAPD = yes ; then
2137         BUILD_SLURPD=yes
2138 fi
2139
2140 if test "$ol_link_isode" != no ; then
2141         BUILD_LDAPD=yes
2142 fi
2143
2144 dnl ----------------------------------------------------------------
2145
2146 AC_SUBST(BUILD_LDAPD)
2147 AC_SUBST(BUILD_SLAPD)
2148   AC_SUBST(BUILD_BDB2)
2149   AC_SUBST(BUILD_LDAP)
2150   AC_SUBST(BUILD_LDBM)
2151   AC_SUBST(BUILD_PASSWD)
2152   AC_SUBST(BUILD_PERL)
2153   AC_SUBST(BUILD_QUIPU)
2154   AC_SUBST(BUILD_SHELL)
2155   AC_SUBST(BUILD_TCL)
2156   AC_SUBST(BUILD_BDB2_DYNAMIC)
2157   AC_SUBST(BUILD_LDAP_DYNAMIC)
2158   AC_SUBST(BUILD_LDBM_DYNAMIC)
2159   AC_SUBST(BUILD_PASSWD_DYNAMIC)
2160   AC_SUBST(BUILD_PERL_DYNAMIC)
2161   AC_SUBST(BUILD_SHELL_DYNAMIC)
2162   AC_SUBST(BUILD_TCL_DYNAMIC)
2163 AC_SUBST(BUILD_SLURPD)
2164
2165 AC_SUBST(LDAP_LIBS)
2166 AC_SUBST(LDAPD_LIBS)
2167 AC_SUBST(LDIF_LIBS)
2168 AC_SUBST(SLAPD_LIBS)
2169 AC_SUBST(SLURPD_LIBS)
2170 AC_SUBST(LDBM_LIBS)
2171 AC_SUBST(LTHREAD_LIBS)
2172 AC_SUBST(LUTIL_LIBS)
2173 AC_SUBST(WRAP_LIBS)
2174 AC_SUBST(MOD_TCL_LIB)
2175 AC_SUBST(LINK_BINS_DYNAMIC)
2176
2177 AC_SUBST(SLAPD_MODULES_CPPFLAGS)
2178 AC_SUBST(SLAPD_MODULES_LDFLAGS)
2179 AC_SUBST(SLAPD_MODULES_LIST)
2180
2181 AC_SUBST(PERL_CPPFLAGS)
2182 AC_SUBST(SLAPD_PERL_LDFLAGS)
2183 AC_SUBST(MOD_PERL_LDFLAGS)
2184
2185 AC_SUBST(KRB_LIBS)
2186 AC_SUBST(READLINE_LIBS)
2187 AC_SUBST(SASL_LIBS)
2188 AC_SUBST(TERMCAP_LIBS)
2189 AC_SUBST(TLS_LIBS)
2190 AC_SUBST(MODULES_LIBS)
2191
2192 dnl ----------------------------------------------------------------
2193 dnl final output
2194 dnl
2195
2196 AC_OUTPUT( \
2197 Makefile:build/top.mk:Makefile.in:build/dir.mk \
2198 doc/Makefile:build/top.mk:doc/Makefile.in:build/dir.mk \
2199 doc/man/Makefile:build/top.mk:doc/man/Makefile.in:build/dir.mk \
2200 doc/man/man1/Makefile:build/top.mk:doc/man/man1/Makefile.in:build/man.mk \
2201 doc/man/man3/Makefile:build/top.mk:doc/man/man3/Makefile.in:build/man.mk \
2202 doc/man/man5/Makefile:build/top.mk:doc/man/man5/Makefile.in:build/man.mk \
2203 doc/man/man8/Makefile:build/top.mk:doc/man/man8/Makefile.in:build/man.mk \
2204 clients/Makefile:build/top.mk:clients/Makefile.in:build/dir.mk \
2205 clients/finger/Makefile:build/top.mk:clients/finger/Makefile.in:build/rules.mk \
2206 clients/fax500/Makefile:build/top.mk:clients/fax500/Makefile.in:build/rules.mk \
2207 clients/gopher/Makefile:build/top.mk:clients/gopher/Makefile.in:build/rules.mk \
2208 clients/mail500/Makefile:build/top.mk:clients/mail500/Makefile.in:build/rules.mk \
2209 clients/rcpt500/Makefile:build/top.mk:clients/rcpt500/Makefile.in:build/rules.mk \
2210 clients/ud/Makefile:build/top.mk:clients/ud/Makefile.in:build/rules.mk \
2211 clients/tools/Makefile:build/top.mk:clients/tools/Makefile.in:build/rules.mk \
2212 include/Makefile:build/top.mk:include/Makefile.in \
2213 libraries/Makefile:build/top.mk:libraries/Makefile.in:build/dir.mk      \
2214 libraries/libavl/Makefile:build/top.mk:libraries/libavl/Makefile.in:build/lib.mk:build/lib-static.mk    \
2215 libraries/liblber/Makefile:build/top.mk:libraries/liblber/Makefile.in:build/lib.mk:build/lib-shared.mk  \
2216 libraries/libldap/Makefile:build/top.mk:libraries/libldap/Makefile.in:build/lib.mk:build/lib-shared.mk  \
2217 libraries/libldap_r/Makefile:build/top.mk:libraries/libldap_r/Makefile.in:build/lib.mk:build/lib-shared.mk      \
2218 libraries/libldbm/Makefile:build/top.mk:libraries/libldbm/Makefile.in:build/lib.mk:build/lib-static.mk  \
2219 libraries/libldif/Makefile:build/top.mk:libraries/libldif/Makefile.in:build/lib.mk:build/lib-static.mk  \
2220 libraries/liblutil/Makefile:build/top.mk:libraries/liblutil/Makefile.in:build/lib.mk:build/lib-static.mk        \
2221 servers/Makefile:build/top.mk:servers/Makefile.in:build/dir.mk \
2222 servers/ldapd/Makefile:build/top.mk:servers/ldapd/Makefile.in:build/srv.mk \
2223 servers/slapd/Makefile:build/top.mk:servers/slapd/Makefile.in:build/srv.mk \
2224 servers/slapd/back-bdb2/Makefile:build/top.mk:servers/slapd/back-bdb2/Makefile.in:build/mod.mk \
2225 servers/slapd/back-ldap/Makefile:build/top.mk:servers/slapd/back-ldap/Makefile.in:build/mod.mk \
2226 servers/slapd/back-ldbm/Makefile:build/top.mk:servers/slapd/back-ldbm/Makefile.in:build/mod.mk \
2227 servers/slapd/back-passwd/Makefile:build/top.mk:servers/slapd/back-passwd/Makefile.in:build/mod.mk \
2228 servers/slapd/back-perl/Makefile:build/top.mk:servers/slapd/back-perl/Makefile.in:build/mod.mk \
2229 servers/slapd/back-shell/Makefile:build/top.mk:servers/slapd/back-shell/Makefile.in:build/mod.mk \
2230 servers/slapd/back-tcl/Makefile:build/top.mk:servers/slapd/back-tcl/Makefile.in:build/mod.mk \
2231 servers/slapd/shell-backends/Makefile:build/top.mk:servers/slapd/shell-backends/Makefile.in:build/srv.mk \
2232 servers/slapd/tools/Makefile:build/top.mk:servers/slapd/tools/Makefile.in \
2233 servers/slurpd/Makefile:build/top.mk:servers/slurpd/Makefile.in:build/srv.mk \
2234 tests/Makefile:build/top.mk:tests/Makefile.in:build/dir.mk \
2235 tests/progs/Makefile:build/top.mk:tests/progs/Makefile.in:build/rules.mk \
2236 contrib/Makefile:build/top.mk:contrib/Makefile.in:build/dir.mk \
2237 contrib/saucer/Makefile:build/top.mk:contrib/saucer/Makefile.in:build/rules.mk \
2238 contrib/web_ldap/Makefile:build/top.mk:contrib/web_ldap/Makefile.in:build/rules.mk \
2239 ,[
2240 date > stamp-h
2241 echo Please \"make depend\" to build dependencies
2242 ])