]> git.sur5r.net Git - openldap/blob - configure.in
8824fd806d2405b7111db39929672f82b2809c6f
[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_WIN32_DLL
496 AC_LIBTOOL_DLOPEN
497 AC_PROG_LIBTOOL
498
499 AC_PROG_AWK
500 OL_PROG_LN_H
501 AC_PROG_LN_S
502
503 if test "$LN_H" = "cp" -a "$LN_S" = "ln"; then
504         LN_S="$LN_H"
505 fi
506
507 AC_PATH_PROG(SENDMAIL, sendmail, /usr/lib/sendmail,
508         $PATH:/usr/libexec:/usr/lib:/usr/sbin:/usr/etc:/etc)
509 AC_PATH_PROG(EDITOR, vi, /usr/ucb/vi, $PATH:/usr/ucb)
510 AC_PATH_PROG(FINGER, finger, /usr/ucb/finger, $PATH:/usr/ucb)
511
512 dnl ----------------------------------------------------------------
513 dnl Perl
514 ol_link_perl=no
515 if test $ol_enable_perl != no ; then
516         AC_PATH_PROG(PERLBIN, perl, /usr/bin/perl)
517
518         if test "no$PERLBIN" = "no" ; then
519                 if test $ol_enable_perl = yes ; then
520                         AC_MSG_ERROR([could not locate perl])
521                 fi
522
523         else
524                 PERL_CPPFLAGS="`$PERLBIN -MExtUtils::Embed -e ccopts`"
525                 if test x"$ol_with_perl_module" == "xstatic" ; then
526                         SLAPD_PERL_LDFLAGS="`$PERLBIN -MExtUtils::Embed -e ldopts|sed -e s/-lc//`"
527                 else
528                         MOD_PERL_LDFLAGS="`$PERLBIN -MExtUtils::Embed -e ldopts|sed -e s/-lc//`"
529                 fi
530                 dnl should check perl version
531                 ol_link_perl=yes
532         fi
533 fi
534
535 AC_PROG_CPP
536
537 dnl ----------------------------------------------------------------
538 dnl Cross compiling checks
539 if test $cross_compiling = yes -a $ol_enable_x_compile = yes; then
540         AC_MSG_WARN([cross compiling....  some functionality will be removed.])
541
542 elif test $cross_compiling = no -a $ol_enable_x_compile = yes; then
543         AC_MSG_WARN([programs compiled here do run here...])
544         AC_MSG_ERROR([  if not cross compiling, use --disable-x-compile.])
545
546 elif test $cross_compiling = yes -a $ol_enable_x_compile = no; then
547         AC_MSG_WARN([programs compiled here do not run here...])
548         AC_MSG_ERROR([  if cross compiling,  add --enable-x-compile.])
549 fi
550
551 dnl ----------------------------------------------------------------
552 dnl Checks for UNIX Variants
553 AC_AIX
554 AC_ISC_POSIX
555 AC_MINIX
556
557 dnl ----------------------------------------------------------------
558 dnl Checks for system services
559 AC_CYGWIN
560 AC_MINGW32
561 AC_EXEEXT
562 AC_OBJEXT
563
564 AC_DEFINE_UNQUOTED( EXEEXT, "${EXEEXT}", [defined to be the EXE extension])
565
566 dnl ----------------------------------------------------------------
567 dnl BeOS requires -lbe -lroot -lnet
568 AC_CHECK_LIB(be, be_app, [LIBS="$LIBS -lbe -lroot -lnet"], :, [-lroot -lnet])
569
570 dnl ----------------------------------------------------------------
571 dnl OpenLDAP requires STDC features
572 AM_PROG_CC_STDC
573 if test "X${am_cv_prog_cc_stdc}" = "Xno" ; then
574         AC_MSG_ERROR([OpenLDAP requires compiler to support STDC constructs.])
575 fi
576
577 dnl ----------------------------------------------------------------
578 dnl Check cc depend flags
579 OL_MKDEPEND
580 if test "${ol_cv_mkdep}" = no ; then
581         # this will soon become an error
582         AC_MSG_WARN([do not know how to generate dependencies])
583 fi
584
585 dnl ----------------------------------------------------------------
586 dnl Check for module support
587 ol_link_modules=no
588 if test $ol_enable_modules != no ; then
589         AC_CHECK_HEADERS(ltdl.h)
590
591         if test $ac_cv_header_ltdl_h = no ; then
592                 AC_MSG_ERROR([could not locate libtool ltdl.h])
593         fi
594
595         AC_CHECK_LIB(ltdl, lt_dlinit, [
596             MODULES_LIBS=-lltdl
597             AC_DEFINE(HAVE_LIBLTDL,1,[define if you have libtool -ltdl])
598         ])
599
600         if test "$ac_cv_lib_ltdl_lt_dlinit" = no ; then
601                 AC_MSG_ERROR([could not locate libtool -lltdl])
602         fi
603         ol_link_modules=yes
604 else
605         ol_with_bdb2_module=static
606         ol_with_ldap_module=static
607         ol_with_ldbm_module=static
608         ol_with_passwd_module=static
609         ol_with_perl_module=static
610         ol_with_shell_module=static
611         ol_with_tcl_module=static
612 fi
613
614 dnl ----------------------------------------------------------------
615 dnl Checks for header files.
616 OL_HEADER_STDC
617
618 if test $ol_cv_header_stdc != yes; then
619         AC_MSG_WARN([could not locate Standard C compliant headers])
620 fi
621
622 AC_HEADER_DIRENT
623 AC_HEADER_SYS_WAIT
624 AM_HEADER_TIOCGWINSZ_NEEDS_SYS_IOCTL
625 if test $am_cv_sys_posix_termios = yes ; then
626         AC_DEFINE(HAVE_POSIX_TERMIOS,1,
627                 [define if you have POSIX termios])
628 fi
629
630 AC_CHECK_HEADERS(       \
631         arpa/inet.h             \
632         arpa/nameser.h  \
633         assert.h                \
634         conio.h                 \
635         crypt.h                 \
636         direct.h                \
637         errno.h                 \
638         fcntl.h                 \
639         filio.h                 \
640         getopt.h                \
641         grp.h                   \
642         io.h                    \
643         libutil.h               \
644         limits.h                \
645         locale.h                \
646         netinet/tcp.h   \
647         malloc.h                \
648         memory.h                \
649         psap.h                  \
650         pwd.h                   \
651         process.h               \
652         resolv.h                \
653         sgtty.h                 \
654         shadow.h                \
655         stddef.h                \
656         string.h                \
657         strings.h               \
658         sysexits.h              \
659         sys/file.h              \
660         sys/filio.h             \
661         sys/errno.h             \
662         sys/ioctl.h             \
663         sys/param.h             \
664         sys/resource.h  \
665         sys/select.h    \
666         sys/socket.h    \
667         sys/syslog.h    \
668         sys/time.h              \
669         sys/types.h             \
670         syslog.h                \
671         termios.h               \
672         unistd.h                \
673 )
674
675 dnl Check for winsock.h on a Mingw32 system
676 if test "$ac_cv_mingw32" = yes ; then
677     AC_CHECK_HEADERS(winsock.h)
678 fi
679
680 dnl ----------------------------------------------------------------
681 dnl Checks for libraries
682
683 dnl HP-UX requires -lV3
684 AC_CHECK_LIB(V3, sigset)
685
686 dnl Gotta check for winsock manually
687 if test "${ac_cv_header_winsock_h}" = yes; then
688     AC_MSG_CHECKING(for winsock support)
689     AC_TRY_LINK([
690 #include <winsock.h>
691     ],[
692 socket(0,0,0);
693 select(0,NULL,NULL,NULL,NULL);
694 closesocket(0);
695 gethostname(NULL,0);
696     ],[
697         AC_MSG_RESULT(yes)
698         AC_DEFINE(HAVE_WINSOCK,1,[define if you have winsock])
699         ac_cv_func_socket=yes
700         ac_cv_func_select=yes
701         ac_cv_func_closesocket=yes
702         ac_cv_func_gethostname=yes
703     ],[
704         AC_MSG_RESULT(no)
705     ])
706 fi
707
708 dnl Find socket()
709 dnl Likely combinations:
710 dnl             -lsocket [ -lnsl_s | -lnsl ]
711 dnl             -linet
712
713 AC_CHECK_FUNC(socket, :, [      
714 dnl hopefully we won't include too many libraries
715         AC_CHECK_LIB(socket, main)
716         AC_CHECK_LIB(net, main)
717         AC_CHECK_LIB(net, socket)
718         AC_CHECK_LIB(nsl_s, main)
719         AC_CHECK_LIB(nsl, main)
720         AC_CHECK_LIB(inet, socket)
721         AC_CHECK_LIB(gen, main)
722 ])
723
724 dnl require select
725 AC_CHECK_FUNC(select, :, AC_MSG_ERROR([select() required.]))
726 dnl AC_CHECK_FUNCS(socketpair)
727
728 if test "${ac_cv_header_winsock_h}" != yes; then
729     dnl Select arg types
730     dnl (if this detection becomes permenent, it and the select() detection
731     dnl should be done before the yielding select test) 
732     AC_FUNC_SELECT_ARGTYPES
733 fi
734
735 dnl check to see if system call automatically restart
736 dnl AC_SYS_RESTARTABLE_SYSCALLS
737
738 dnl ----------------------------------------------------------------
739 dnl require POSIX regex
740 AC_CHECK_HEADERS( regex.h )
741 if test "$ac_cv_header_regex_h" != yes ; then
742         AC_MSG_ERROR([POSIX regex.h required.])
743 fi
744 AC_CHECK_FUNC(regfree, :, AC_MSG_ERROR([POSIX regex required.]))
745
746 OL_POSIX_REGEX
747 if test "$ol_cv_c_posix_regex" = no ; then
748         AC_MSG_ERROR([broken POSIX regex!])
749 fi
750
751 dnl ----------------------------------------------------------------
752 dnl Check for resolver routines
753 AC_CHECK_FUNC(res_search,:)
754 if test $ac_cv_func_res_search = no ; then 
755         AC_CHECK_LIB(bind, res_search)
756         ac_cv_func_res_search=$ac_cv_lib_bind_res_search
757 fi
758
759 if test $ac_cv_func_res_search = no ; then 
760         AC_CHECK_LIB(bind, __res_search)
761         ac_cv_func_res_search=$ac_cv_lib_bind___res_search
762 fi
763
764 if test $ac_cv_func_res_search = no ; then 
765         AC_CHECK_LIB(resolv, res_search)
766         ac_cv_func_res_search=$ac_cv_lib_resolv_res_search
767 fi
768
769 if test "$ac_cv_func_res_search" = yes ; then
770         AC_DEFINE(HAVE_RES_SEARCH,1,
771                 [define if you have res_search()])
772 elif test $ol_enable_dns = yes ; then
773         AC_MSG_ERROR([--enable-dns requires res_search])
774 elif test $ol_enable_dns != no ; then
775         AC_MSG_WARN([no res_search, disabling DNS support])
776 fi
777
778
779 dnl ----------------------------------------------------------------
780 dnl ISODE tests
781 ol_link_isode=no
782 if test $ol_enable_ldapd != no ; then
783         AC_MSG_WARN([ldapd is not supported and may suffer from bit rot.])
784
785         dnl look for ISODE libraries
786         AC_CHECK_LIB(xtpp, main, [
787                 ol_link_isode=yes
788                 AC_DEFINE(HAVE_XTPP,1, [define if you have -lxttp])
789                 LDAPD_LIBS="$LDAPD_LIBS -lxtpp -lxtdsap -lxtisode -losi"
790                 ],:,[-lxtdsap -lxtisode -losi])
791         AC_CHECK_LIB(dsap, main, [
792                 ol_link_isode=yes
793                 AC_DEFINE(HAVE_DSAP,1, [define if you have -ldsap])
794                 LDAPD_LIBS="$LDAPD_LIBS -ldsap"
795                 ],:,[-lisode])
796         AC_CHECK_LIB(isode, main, [
797                 ol_link_isode=yes
798                 AC_DEFINE(HAVE_ISODE,1, [define if you have -lisode])
799                 LDAPD_LIBS="$LDAPD_LIBS -lisode"
800                 ],:)
801 fi
802
803 if test $ol_link_isode != no; then
804         AC_CHECK_LIB(pp, main, [
805                 AC_DEFINE(HAVE_PP,1, [define if you have -lpp])
806                 LDAPD_LIBS="-lpp $LDAPD_LIBS"
807                 ],:)
808
809         AC_PATH_PROG(PEPSY, pepsy)
810 fi
811
812 dnl ----------------------------------------------------------------
813 dnl QUIPU
814 if test $ol_enable_quipu != no ; then
815         AC_CHECK_HEADERS(quipu/commonarg.h)
816
817         if test $ac_cv_header_quipu_commonarg_h = yes ; then
818                 BUILD_QUIPU=yes
819         elif test $ol_enable_quipu = auto ; then
820                 AC_MSG_WARN([no quipu for --enable-quipu=auto, disabling])
821         else
822                 AC_MSG_ERROR(no quipu for --enable-quipu=$ol_enable_quipu)
823         fi
824 fi
825
826 dnl ----------------------------------------------------------------
827 dnl Kerberos
828 ol_link_kerberos=no
829
830 if test $ol_with_kerberos = auto -o $ol_with_kerberos = k5 ; then
831         AC_CHECK_HEADERS(kerberosIV/krb.h kerberosIV/des.h)
832
833         if test $ac_cv_header_kerberosIV_krb_h = yes ; then
834                 AC_CHECK_LIB(krb4, main, [have_k5=yes], [have_k5=no],
835                         [-lkrb5 -ldes425])
836
837                 if test $have_k5 = yes ; then
838                         ol_with_kerberos=found
839                         ol_link_kerberos=yes
840
841                         KRB_LIBS="-lkrb4 -lkrb5 -ldes425"
842
843                         LIBS="$KRB_LIBS $LIBS"
844
845                         AC_CACHE_CHECK([for des_debug in Kerberos libraries],
846                                 [ol_cv_var_des_debug], [
847                                 dnl save the flags
848                                 save_LIBS="$LIBS"
849                                 LIBS="$KRB_LIBS $LIBS"
850                                 AC_TRY_LINK([
851 #include <kerberosIV/krb.h>
852 #include <kerberosIV/des.h>
853 extern int des_debug;
854 ],[
855 des_debug = 1;
856 ],                              ol_cv_var_des_debug=yes, ol_cv_var_des_debug=no)
857                                 dnl restore the LIBS
858                                 LIBS="$save_LIBS"
859                         ])
860
861                         if test $ol_cv_var_des_debug = yes ; then
862                                 AC_DEFINE(HAVE_DES_DEBUG,1,
863                                         [define if you have Kerberos des_debug])
864                         fi
865
866                         LIBS="$save_LIBS"
867                 fi
868         fi
869 fi
870
871 if test $ol_with_kerberos = auto -o $ol_with_kerberos = k4 \
872         -o $ol_with_kerberos = kth ; then
873
874         AC_CHECK_HEADERS(krb.h des.h krb-archaeology.h )
875
876         if test $ac_cv_header_krb_h = yes ; then
877                 AC_CHECK_LIB(krb, main, [have_k4=yes], [have_k4=no], [-ldes])
878
879                 if test $have_k4 = yes ; then
880                         ol_with_kerberos=found
881                         ol_link_kerberos=yes
882
883                         KRB_LIBS="-lkrb -ldes"
884
885                         if test $ac_cv_header_krb_archaeology_h = yes ; then
886                                 AC_DEFINE(HAVE_KTH_KERBEROS, 1,
887                                         [define if you have Kth Kerberos])
888                         fi
889                 fi
890         fi
891 fi
892
893 if test $ol_link_kerberos = yes ; then
894         AC_DEFINE(HAVE_KERBEROS, 1, [define if you have Kerberos])
895
896 elif test $ol_with_kerberos != auto -a $ol_with_kerberos != no ; then
897         AC_ERROR([Kerberos detection failed.])
898 fi
899
900 dnl ----------------------------------------------------------------
901 dnl TLS/SSL
902 ol_link_tls=no
903 if test $ol_with_tls != no ; then
904         
905         AC_CHECK_HEADERS(openssl/ssl.h ssl.h)
906         
907         if test $ac_cv_header_openssl_ssl_h = yes -o $ac_cv_header_ssl_h = yes ; then
908                 AC_CHECK_LIB(ssl, SSLeay_add_ssl_algorithms, 
909                         [have_ssleay=yes
910                         need_rsaref=no],
911                         [have_ssleay=no],
912                         [-lcrypto])
913                         
914                 if test $have_ssleay = no ; then
915                         AC_CHECK_LIB(ssl, SSL_library_init,
916                                 [have_ssleay=yes
917                                 need_rsaref=no], [have_ssleay=no],
918                                 [-lcrypto])
919                 fi
920
921                 if test $have_ssleay = no ; then
922                         AC_CHECK_LIB(ssl, ssl3_accept, 
923                                 [have_ssleay=yes
924                                 need_rsaref=yes], [have_ssleay=no],
925                                 [-lcrypto -lRSAglue -lrsaref])
926                 fi
927
928                 if test $have_ssleay = yes ; then
929                         ol_with_tls=found
930                         ol_link_tls=yes
931
932                         AC_DEFINE(HAVE_SSLEAY, 1, 
933                                 [define if you have SSLeay or OpenSSL])
934
935                         if test $need_rsaref = yes; then
936                                 AC_DEFINE(HAVE_RSAREF, 1, 
937                                         [define if you have RSAref])
938
939                                 TLS_LIBS="-lssl -lcrypto -lRSAglue -lrsaref"
940                         else
941                                 TLS_LIBS="-lssl -lcrypto"
942                         fi
943                 fi
944         fi
945 fi
946
947 if test $ol_link_tls = yes ; then
948         AC_DEFINE(HAVE_TLS, 1, [define if you have TLS])
949 fi      
950
951 dnl ----------------------------------------------------------------
952 dnl Tests for reentrant functions necessary to build a
953 dnl thread_safe -lldap.
954 AC_CHECK_FUNCS(         \
955         ctime_r                 \
956         gethostbyname_r gethostbyaddr_r \
957 )
958
959 if test "$ac_cv_func_ctime_r" = no ; then
960         ol_cv_func_ctime_r_nargs=0
961 else
962         OL_FUNC_CTIME_R_NARGS
963 dnl     OL_FUNC_CTIME_R_TYPE
964 fi
965
966 if test "$ac_cv_func_gethostbyname_r" = yes ; then
967         OL_FUNC_GETHOSTBYNAME_R_NARGS
968 else
969         ol_cv_func_gethostbyname_r_nargs=0
970 fi
971  
972 if test "$ac_cv_func_gethostbyaddr_r" = yes ; then
973         OL_FUNC_GETHOSTBYADDR_R_NARGS
974 else
975         ol_cv_func_gethostbyaddr_r_nargs=0
976 fi
977
978 if test "$ac_cv_func_ctime_r" = yes \
979         -a "$ol_cv_func_ctime_r_nargs" -ge 2 \
980         -a "$ol_cv_func_ctime_r_nargs" -le 3 \
981         -a "$ac_cv_func_gethostbyname_r" = yes \
982         -a "$ol_cv_func_gethostbyname_r_nargs" -ge 5 \
983         -a "$ol_cv_func_gethostbyname_r_nargs" -le 6 \
984         -a "$ac_cv_func_gethostbyaddr_r" = yes \
985         -a "$ol_cv_func_gethostbyaddr_r_nargs" -ge 5 \
986         -a "$ol_cv_func_gethostbyaddr_r_nargs" -le 6 \
987         ; then
988  
989         AC_DEFINE(LDAP_API_FEATURE_X_OPENLDAP_REENTRANT,1)
990 fi
991
992 dnl ----------------------------------------------------------------
993 dnl Threads?
994 ol_link_threads=no
995
996 dnl Not much to check. If we're in mingw32, we assume win32 threads.
997 if test "$ac_cv_mingw32" = yes ; then
998     ol_link_threads=nt
999     ol_with_threads=found
1000     ol_with_yielding_select=yes
1001     AC_MSG_CHECKING(for NT threads)
1002     AC_MSG_RESULT(yes)
1003     AC_DEFINE(HAVE_NT_THREADS,1,[if you have NT threads])
1004 fi
1005
1006 if test $ol_with_threads = auto -o $ol_with_threads = yes \
1007         -o $ol_with_threads = posix ; then
1008
1009         AC_CHECK_HEADERS(pthread.h)
1010
1011         if test $ac_cv_header_pthread_h = yes ; then
1012                 OL_POSIX_THREAD_VERSION
1013
1014                 if test $ol_cv_pthread_version = final ; then
1015                         AC_DEFINE(HAVE_PTHREADS_FINAL,1,
1016                                 [define if pthreads API compatible with final spec])
1017                 elif test $ol_cv_pthread_version = draft4 ; then
1018                         AC_DEFINE(HAVE_PTHREADS_D4,1,
1019                                 [define if pthreads API compatible with draft4 spec])
1020                 else
1021                         AC_MSG_ERROR([unknown pthread version])
1022                 fi
1023
1024                 # consider threads found
1025                 ol_with_threads=found
1026
1027                 OL_HEADER_LINUX_THREADS
1028                 OL_HEADER_GNU_PTH_PTHREAD_H
1029
1030                 if test $ol_cv_header_gnu_pth_pthread_h = no ; then
1031                         AC_CHECK_HEADERS(sched.h)
1032                 fi
1033
1034                 dnl Now the hard part, how to link?
1035                 dnl
1036                 dnl currently supported checks:
1037                 dnl
1038                 dnl Check for no flags 
1039                 dnl     pthread_create() in $LIBS
1040                 dnl
1041                 dnl Check special pthread (final) flags
1042                 dnl     [skipped] pthread_create() with -mt (Solaris) [disabled]
1043                 dnl     pthread_create() with -kthread (FreeBSD)
1044                 dnl     pthread_create() with -pthread (FreeBSD/Digital Unix)
1045                 dnl     pthread_create() with -pthreads (?)
1046                 dnl     pthread_create() with -mthreads (AIX)
1047                 dnl     pthread_create() with -thread (?)
1048                 dnl
1049                 dnl Check pthread (final) libraries
1050                 dnl     pthread_mutex_unlock() in -lpthread -lmach -lexc -lc_r (OSF/1)
1051                 dnl     pthread_mutex_lock() in -lpthread -lmach -lexc (OSF/1)
1052                 dnl     [skipped] pthread_mutex_trylock() in -lpthread -lexc (OSF/1)
1053                 dnl     pthread_join() -Wl,-woff,85 -lpthread (IRIX)
1054                 dnl     pthread_create() in -lpthread (many)
1055                 dnl     pthread_create() in -lc_r (FreeBSD)
1056                 dnl
1057                 dnl Check pthread (draft4) flags (depreciated)
1058                 dnl     pthread_create() with -threads (OSF/1)
1059                 dnl
1060                 dnl Check pthread (draft4) libraries (depreciated)
1061                 dnl     pthread_mutex_unlock() in -lpthreads -lmach -lexc -lc_r (OSF/1)
1062                 dnl     pthread_mutex_lock() in -lpthreads -lmach -lexc (OSF/1)
1063                 dnl     pthread_mutex_trylock() in -lpthreads -lexc (OSF/1)
1064                 dnl     pthread_create() in -lpthreads (many)
1065                 dnl
1066
1067                 dnl pthread_create in $LIBS
1068                 AC_CACHE_CHECK([for pthread_create in default libraries],
1069                         ol_cv_pthread_create,[
1070                 AC_TRY_RUN(OL_PTHREAD_TEST_PROGRAM,
1071                         [ol_cv_pthread_create=yes],
1072                         [ol_cv_pthread_create=no],
1073                         [AC_TRY_LINK(OL_PTHREAD_TEST_INCLUDES,OL_PTHREAD_TEST_FUNCTION,
1074                                 [ol_cv_pthread_create=yes],
1075                                 [ol_cv_pthread_create=no])])])
1076
1077                 if test $ol_cv_pthread_create != no ; then
1078                         ol_link_threads=posix
1079                         ol_link_pthreads=""
1080                 fi
1081                 
1082 dnl             OL_PTHREAD_TRY([-mt],           [ol_cv_pthread_mt])
1083                 OL_PTHREAD_TRY([-kthread],      [ol_cv_pthread_kthread])
1084                 OL_PTHREAD_TRY([-pthread],      [ol_cv_pthread_pthread])
1085                 OL_PTHREAD_TRY([-pthreads],     [ol_cv_pthread_pthreads])
1086                 OL_PTHREAD_TRY([-mthreads],     [ol_cv_pthread_mthreads])
1087                 OL_PTHREAD_TRY([-thread],       [ol_cv_pthread_thread])
1088
1089                 OL_PTHREAD_TRY([-lpthread -lmach -lexc -lc_r],
1090                         [ol_cv_pthread_lpthread_lmach_lexc_lc_r])
1091                 OL_PTHREAD_TRY([-lpthread -lmach -lexc],
1092                         [ol_cv_pthread_lpthread_lmach_lexc])
1093 dnl             OL_PTHREAD_TRY([-lpthread -lexc],
1094 dnl                     [ol_cv_pthread_lpthread_lexc])
1095
1096                 OL_PTHREAD_TRY([-lpthread -Wl,-woff,85],
1097                         [ol_cv_pthread_lib_lpthread_woff])
1098
1099                 OL_PTHREAD_TRY([-lpthread],     [ol_cv_pthread_lpthread])
1100                 OL_PTHREAD_TRY([-lc_r],         [ol_cv_pthread_lc_r])
1101
1102                 OL_PTHREAD_TRY([-threads],      [ol_cv_pthread_threads])
1103
1104                 OL_PTHREAD_TRY([-lpthreads -lmach -lexc -lc_r],
1105                         [ol_cv_pthread_lpthreads_lmach_lexc_lc_r])
1106                 OL_PTHREAD_TRY([-lpthreads -lmach -lexc],
1107                         [ol_cv_pthread_lpthreads_lmach_lexc])
1108                 OL_PTHREAD_TRY([-lpthreads -lexc],
1109                         [ol_cv_pthread_lpthreads_lexc])
1110
1111                 OL_PTHREAD_TRY([-lpthreads],[ol_cv_pthread_lib_lpthreads])
1112
1113                 if test $ol_link_threads != no ; then
1114                         AC_DEFINE(HAVE_PTHREADS,1,
1115                                 [define if you have POSIX Threads])
1116
1117                         LTHREAD_LIBS="$LTHREAD_LIBS $ol_link_pthreads"
1118
1119                         dnl save flags
1120                         save_CPPFLAGS="$CPPFLAGS"
1121                         save_LIBS="$LIBS"
1122                         LIBS="$LTHREAD_LIBS $LIBS"
1123
1124                         dnl All POSIX Thread (final) implementations should have
1125                         dnl sched_yield instead of pthread yield.
1126                         dnl check for both
1127                         AC_CHECK_FUNCS(sched_yield pthread_yield)
1128
1129                         if test $ac_cv_func_sched_yield = no -a \
1130                                 $ac_cv_func_pthread_yield = no ; then
1131                                 dnl Digital UNIX has sched_yield() in -lrt
1132                                 AC_CHECK_LIB(rt, sched_yield,
1133                                         [LTHREAD_LIBS="$LTHREAD_LIBS -lrt"
1134                                         AC_DEFINE(HAVE_SCHED_YIELD,1,
1135                                                 [Define if you have the sched_yield function.])
1136                                         ac_cv_func_sched_yield=yes],
1137                                         [ac_cv_func_sched_yield=no])
1138                         fi
1139                         if test $ac_cv_func_sched_yield = no -a \
1140                                 $ac_cv_func_pthread_yield = no ; then
1141                                 dnl Solaris has sched_yield() stub in -lposix4
1142                                 dnl but we'll use thr_yield instead.
1143                                 AC_CHECK_FUNCS(thr_yield)
1144                         fi
1145                         if test $ac_cv_func_sched_yield = no -a \
1146                                 $ac_cv_func_pthread_yield = no -a \
1147                                 "$ac_cv_func_thr_yield" = no ; then
1148                                 AC_MSG_WARN([could not locate sched_yield() or pthread_yield()])
1149                         fi
1150
1151                         dnl Check functions for compatibility
1152                         AC_CHECK_FUNCS(pthread_kill)
1153
1154                         dnl Check for pthread_detach with <pthread.h> inclusion
1155                         dnl as it's symbol may have been mangled.
1156                         AC_CACHE_CHECK([for pthread_detach with <pthread.h>],
1157                                 [ol_cv_func_pthread_detach], [
1158                                 dnl save the flags
1159                                 AC_TRY_LINK([
1160 #include <pthread.h>
1161 #ifndef NULL
1162 #define NULL (void*)0
1163 #endif
1164 ],
1165                                         [pthread_detach(NULL);],
1166                                         [ol_cv_func_pthread_detach=yes],
1167                                         [ol_cv_func_pthread_detach=no])
1168                         ])
1169
1170                         if test $ol_cv_func_pthread_detach = no ; then
1171                                 AC_MSG_ERROR([could not locate pthread_detach()])
1172                         fi
1173
1174                         AC_DEFINE(HAVE_PTHREAD_DETACH,1,
1175                                 [define if you have pthread_detach function])
1176
1177                         dnl Check for setconcurreny functions
1178                         AC_CHECK_FUNCS( \
1179                                 pthread_setconcurrency \
1180                                 pthread_getconcurrency \
1181                                 thr_setconcurrency \
1182                                 thr_getconcurrency \
1183                         )
1184
1185                         OL_SYS_LINUX_THREADS
1186                         OL_LINUX_THREADS
1187
1188                         if test $ol_cv_linux_threads = error; then
1189                                 AC_MSG_ERROR([LinuxThreads header/library mismatch]);
1190                         fi
1191
1192                         AC_CACHE_CHECK([if pthread_create() works],
1193                                 ol_cv_pthread_create_works,[
1194                         AC_TRY_RUN(OL_PTHREAD_TEST_PROGRAM,
1195                                 [ol_cv_pthread_create_works=yes],
1196                                 [ol_cv_pthread_create_works=no],
1197                                 [dnl assume yes
1198                                 ol_cv_pthread_create_works=yes])])
1199
1200                         if test $ol_cv_pthread_create_works = no ; then
1201                                 AC_MSG_ERROR([pthread_create is not usable, check environment settings])
1202                         fi
1203
1204                         dnl Check if select causes an yield
1205                         if test $ol_with_yielding_select = auto ; then
1206                                 AC_CACHE_CHECK([if select yields when using pthreads],
1207                                         ol_cv_pthread_select_yields,[
1208                                 AC_TRY_RUN([
1209 #include <sys/types.h>
1210 #include <sys/time.h>
1211 #include <unistd.h>
1212 #include <pthread.h>
1213 #ifndef NULL
1214 #define NULL (void*) 0
1215 #endif
1216
1217 static int fildes[2];
1218
1219 static void *task(p)
1220         void *p;
1221 {
1222         int i;
1223         struct timeval tv;
1224
1225         fd_set rfds;
1226
1227         tv.tv_sec=10;
1228         tv.tv_usec=0;
1229
1230         FD_ZERO(&rfds);
1231         FD_SET(fildes[0], &rfds);
1232
1233         /* we're not interested in any fds */
1234         i = select(FD_SETSIZE, &rfds, NULL, NULL, &tv);
1235
1236         if(i < 0) {
1237                 perror("select");
1238                 exit(10);
1239         }
1240
1241         exit(0); /* if we exit here, the select blocked the whole process */
1242 }
1243
1244 int main(argc, argv)
1245         int argc;
1246         char **argv;
1247 {
1248         pthread_t t;
1249
1250         /* create a pipe to select */
1251         if(pipe(&fildes[0])) {
1252                 perror("select");
1253                 exit(1);
1254         }
1255
1256 #ifdef HAVE_PTHREAD_SETCONCURRENCY
1257         (void) pthread_setconcurrency(2);
1258 #else
1259 #ifdef HAVE_THR_SETCONCURRENCY
1260         /* Set Solaris LWP concurrency to 2 */
1261         thr_setconcurrency(2);
1262 #endif
1263 #endif
1264
1265 #if HAVE_PTHREADS_D4
1266         pthread_create(&t, pthread_attr_default, task, NULL);
1267 #else
1268         pthread_create(&t, NULL, task, NULL);
1269 #endif
1270
1271 #if HAVE_SCHED_YIELD
1272         sched_yield();  /* make sure task runs first */
1273 #else
1274 #ifdef HAVE_PTHREAD_YIELD
1275         pthread_yield();        /* make sure task runs first */
1276 #endif
1277 #endif
1278
1279         exit(2);
1280 }],
1281                                 [ol_cv_pthread_select_yields=no],
1282                                 [ol_cv_pthread_select_yields=yes],
1283                                 [ol_cv_pthread_select_yields=cross])])
1284
1285                                 if test $ol_cv_pthread_select_yields = cross ; then
1286                                         AC_MSG_ERROR([crossing compiling: use --with-yielding_select=yes|no|manual])
1287                                 fi
1288
1289                                 if test $ol_cv_pthread_select_yields = yes ; then
1290                                         ol_with_yielding_select=yes
1291                                 fi
1292                         fi
1293
1294                         dnl restore flags
1295                         CPPFLAGS="$save_CPPFLAGS"
1296                         LIBS="$save_LIBS"
1297                 else
1298                         AC_MSG_ERROR([could not link with POSIX Threads])
1299                 fi
1300         fi
1301
1302         if test $ol_with_threads = posix ; then
1303                 AC_MSG_ERROR([could not locate POSIX Threads])
1304         fi
1305 fi
1306
1307 if test $ol_with_threads = auto -o $ol_with_threads = yes \
1308         -o $ol_with_threads = mach ; then
1309
1310         dnl check for Mach CThreads
1311         AC_CHECK_HEADERS(mach/cthreads.h)
1312         if test $ac_cv_header_mach_cthreads_h = yes ; then
1313                 ol_with_threads=found
1314
1315                 dnl check for cthread support in current $LIBS
1316                 AC_CHECK_FUNC(cthread_fork,[ol_link_threads=yes])
1317
1318                 if test $ol_link_threads = no ; then
1319                         dnl try -all_load
1320                         dnl this test needs work
1321                         AC_CACHE_CHECK([for cthread_fork with -all_load],
1322                                 [ol_cv_cthread_all_load], [
1323                                 dnl save the flags
1324                                 save_LIBS="$LIBS"
1325                                 LIBS="-all_load $LIBS"
1326                                 AC_TRY_LINK([#include <mach/cthreads.h>],[
1327                                         cthread_fork((void *)0, (void *)0);
1328                                         ], ol_cv_cthread_all_load=yes, ol_cv_cthread_all_load=no)
1329                                 dnl restore the LIBS
1330                                 LIBS="$save_LIBS"
1331                         ])
1332
1333                         if test $ol_cv_cthread_all_load = yes ; then
1334                                 LTHREAD_LIBS="$LTHREAD_LIBS -all_load"
1335                                 ol_link_threads=mach
1336                         fi
1337                 fi
1338
1339                 if test $ol_link_threads != no ; then
1340                         : check for cthread specific functionality here
1341                         AC_DEFINE(HAVE_MACH_CTHREADS,1,
1342                                 [define if you have Mach Cthreads])
1343                 else
1344                         AC_MSG_ERROR([could not link with Mach CThreads])
1345                 fi
1346         fi
1347
1348         if test $ol_with_threads = mach ; then
1349                 AC_MSG_ERROR([could not locate Mach CThreads])
1350         fi
1351 fi
1352
1353 if test $ol_with_threads = auto -o $ol_with_threads = yes \
1354         -o $ol_with_threads = pth ; then
1355
1356         AC_CHECK_HEADERS(pth.h)
1357
1358         if test $ac_cv_header_pth_h = yes ; then
1359                 AC_CHECK_LIB(pth, pth_version, [have_pth=yes], [have_pth=no])
1360
1361                 if test $have_pth = yes ; then
1362                         AC_DEFINE(HAVE_GNU_PTH,1,[if you have GNU Pth])
1363                         LTHREAD_LIBS="$LTHREAD_LIBS -lpth"
1364                         ol_link_threads=pth
1365
1366                         if test $ol_with_yielding_select = auto ; then
1367                                 ol_with_yielding_select=yes
1368                         fi
1369                 fi
1370         fi
1371 fi
1372
1373 if test $ol_with_threads = auto -o $ol_with_threads = yes \
1374         -o $ol_with_threads = lwp ; then
1375
1376         dnl check for SunOS5 LWP
1377         AC_CHECK_HEADERS(thread.h synch.h)
1378         if test $ac_cv_header_thread_h = yes -a $ac_cv_header_synch_h = yes ; then
1379                 AC_CHECK_LIB(thread, thr_create, [have_thr=yes], [have_thr=no])
1380
1381                 if test $have_thr = yes ; then
1382                         AC_DEFINE(HAVE_THR,1,
1383                                 [if you have Solaris LWP (thr) package])
1384                         LTHREAD_LIBS="$LTHREAD_LIBS -lthread"
1385                         ol_link_threads=thr
1386
1387                         if test $ol_with_yielding_select = auto ; then
1388                                 ol_with_yielding_select=yes
1389                         fi
1390
1391                         dnl Check for setconcurreny functions
1392                         AC_CHECK_FUNCS( \
1393                                 thr_setconcurrency \
1394                                 thr_getconcurrency \
1395                         )
1396                 fi
1397         fi
1398
1399         dnl check for SunOS4 LWP
1400         AC_CHECK_HEADERS(lwp/lwp.h)
1401         if test $ac_cv_header_lwp_lwp_h = yes ; then
1402                 AC_CHECK_LIB(lwp, lwp_create, [have_lwp=yes], [have_lwp=no])
1403
1404                 if test $have_lwp = yes ; then
1405                         AC_DEFINE(HAVE_LWP,1,
1406                                 [if you have SunOS LWP package])
1407                         LTHREAD_LIBS="$LTHREAD_LIBS -llwp"
1408                         ol_link_threads=lwp
1409
1410                         if test $ol_with_yielding_select = auto ; then
1411                                 ol_with_yielding_select=no
1412                         fi
1413                 fi
1414         fi
1415 fi
1416
1417 if test $ol_with_yielding_select = yes ; then
1418         AC_DEFINE(HAVE_YIELDING_SELECT,1,
1419                 [define if select implicitly yields])
1420 fi
1421
1422 if test $ol_with_threads = manual ; then
1423         dnl User thinks he can manually configure threads.
1424         ol_link_threads=yes
1425
1426         AC_MSG_WARN([thread defines and link options must be set manually])
1427
1428         AC_CHECK_HEADERS(pthread.h sched.h)
1429         AC_CHECK_FUNCS(sched_yield pthread_yield)
1430         OL_HEADER_LINUX_THREADS
1431
1432         AC_CHECK_HEADERS(mach/cthreads.h)
1433         AC_CHECK_HEADERS(lwp/lwp.h)
1434         AC_CHECK_HEADERS(thread.h synch.h)
1435 fi
1436
1437 if test $ol_link_threads != no -a $ol_link_threads != nt ; then  
1438         dnl needed to get reentrant/threadsafe versions
1439         dnl
1440         AC_DEFINE(REENTRANT,1)
1441         AC_DEFINE(_REENTRANT,1)
1442         AC_DEFINE(THREAD_SAFE,1)
1443         AC_DEFINE(_THREAD_SAFE,1)
1444         AC_DEFINE(THREADSAFE,1)
1445         AC_DEFINE(_THREADSAFE,1)
1446         AC_DEFINE(_SGI_MP_SOURCE,1)
1447
1448         dnl The errno declaration may dependent upon _REENTRANT.
1449         dnl If it does, we must link with thread support.
1450         AC_CACHE_CHECK([for thread specific errno],
1451                 [ol_cv_errno_thread_specific], [
1452                 AC_TRY_LINK([#include <errno.h>], [errno = 0;],
1453                         [ol_cv_errno_thread_specific=yes],
1454                         [ol_cv_errno_thread_specific=no])
1455         ])
1456
1457         dnl The h_errno declaration may dependent upon _REENTRANT.
1458         dnl If it does, we must link with thread support.
1459         AC_CACHE_CHECK([for thread specific h_errno],
1460                 [ol_cv_h_errno_thread_specific], [
1461                 AC_TRY_LINK([#include <netdb.h>], [h_errno = 0;],
1462                         [ol_cv_h_errno_thread_specific=yes],
1463                         [ol_cv_h_errno_thread_specific=no])
1464         ])
1465
1466         if test $ol_cv_errno_thread_specific != yes \
1467                 -o $ol_cv_h_errno_thread_specific != yes ; then
1468                 LIBS="$LTHREAD_LIBS $LIBS"
1469                 LTHREAD_LIBS=""
1470         fi
1471
1472 dnl When in thread environment, use 
1473 dnl             #if defined( HAVE_REENTRANT_FUNCTIONS ) \ 
1474 dnl                     || defined( HAVE_FUNC_R )
1475 dnl                     func_r(...);
1476 dnl             #else
1477 dnl             #       if defined( HAVE_THREADS ) 
1478 dnl                             /* lock */
1479 dnl             #       endif
1480 dnl                             func(...);
1481 dnl             #       if defined( HAVE_THREADS ) 
1482 dnl                             /* unlock */
1483 dnl             #       endif
1484 dnl             #endif
1485 dnl
1486 dnl HAVE_REENTRANT_FUNCTIONS is derived from:
1487 dnl             _POSIX_REENTRANT_FUNCTIONS
1488 dnl             _POSIX_THREAD_SAFE_FUNCTIONS
1489 dnl             _POSIX_THREADSAFE_FUNCTIONS
1490 dnl
1491 dnl             and is currently defined in lthread.h
1492 dnl
1493 dnl HAVE_THREADS is defined by lthread.h iff -UNO_THREADS
1494 dnl 
1495 dnl libldap/*.c should only include <lthread.h> iff
1496 dnl LDAP_R_COMPILE is defined.  ie:
1497 dnl             #ifdef LDAP_R_COMPILE
1498 dnl             #       include LDAP_R_COMPILE
1499 dnl             #endif
1500 dnl
1501 dnl LDAP_R_COMPILE is defined by libldap_r/Makefile.in
1502 dnl specifically for compiling the threadsafe version of
1503 dnl     the ldap library (-lldap_r).
1504 dnl             
1505 dnl     dnl check for reentrant/threadsafe functions
1506 dnl     dnl
1507 dnl     dnl note: these should only be used when linking
1508 dnl     dnl       with $LTHREAD_LIBS
1509 dnl     dnl
1510 dnl     save_CPPFLAGS="$CPPFLAGS"
1511 dnl     save_LIBS="$LIBS"
1512 dnl     LIBS="$LTHREAD_LIBS $LIBS"
1513 dnl     AC_CHECK_FUNCS( \
1514 dnl             gmtime_r \
1515 dnl             gethostbyaddr_r gethostbyname_r \
1516 dnl             feof_unlocked unlocked_feof \
1517 dnl             putc_unlocked unlocked_putc \
1518 dnl             flockfile ftrylockfile \
1519 dnl     )
1520 dnl     CPPFLAGS="$save_CPPFLAGS"
1521 dnl     LIBS="$save_LIBS"
1522 fi  
1523
1524 if test $ol_link_threads = no ; then
1525         if test $ol_with_threads = yes ; then
1526                 AC_MSG_ERROR([no suitable thread support])
1527         fi
1528
1529         if test $ol_with_threads = auto ; then
1530                 AC_MSG_WARN([no suitable thread support, disabling threads])
1531                 ol_with_threads=no
1532         fi
1533
1534         AC_DEFINE(NO_THREADS,1,
1535                 [define if you have (or want) no threads])
1536         LTHREAD_LIBS=""
1537 fi
1538
1539 if test $ol_link_threads != no ; then
1540         AC_DEFINE(LDAP_API_FEATURE_X_OPENLDAP_THREAD_SAFE,1)
1541 fi
1542
1543 dnl ----------------------------------------------------------------
1544
1545 ol_link_ldbm=no 
1546 if test $ol_with_ldbm_api = auto -o $ol_with_ldbm_api = db2 ; then
1547         OL_BERKELEY_DB2
1548
1549         if test $ol_cv_berkeley_db2 = yes ; then
1550                 ol_link_ldbm=db2
1551                 ol_with_ldbm_api=db2
1552
1553                 if test $ol_with_ldbm_type = hash ; then
1554                         AC_DEFINE(LDBM_USE_DBHASH,1,
1555                                 [define this to use DBHASH w/ LDBM backend])
1556                 else
1557                         AC_DEFINE(LDBM_USE_DBBTREE,1,
1558                                 [define this to use DBBTREE w/ LDBM backend])
1559                 fi
1560
1561                 OL_BERKELEY_DB2_DB_THREAD
1562
1563                 dnl $ol_cv_lib_db2 should be yes or -ldb
1564                 dnl (it could be no, but that would be an error
1565                 if test $ol_cv_lib_db2 != yes ; then
1566                         LDBM_LIBS="$LDBM_LIBS $ol_cv_lib_db2"
1567                 fi
1568         fi
1569 fi
1570
1571 ol_link_bdb2=no
1572 if test $ol_link_ldbm = db2 -a $ol_enable_bdb2 != no ; then
1573         if test $ol_cv_berkeley_db2_db_thread != no ; then
1574                 ol_link_bdb2=yes
1575         else
1576                 AC_MSG_WARN([Installed BerkeleyDB does not provide DB_THREAD support.])
1577         fi
1578 fi
1579
1580 if test $ol_with_ldbm_api = auto -o $ol_with_ldbm_api = db ; then
1581         OL_BERKELEY_DB
1582
1583         if test $ol_cv_berkeley_db = yes ; then
1584                 ol_link_ldbm=db
1585                 ol_with_ldbm_api=db
1586
1587                 if test $ol_with_ldbm_type = hash ; then
1588                         AC_DEFINE(LDBM_USE_DBHASH,1,
1589                                 [define this to use DBHASH w/ LDBM backend])
1590                 else
1591                         AC_DEFINE(LDBM_USE_DBBTREE,1,
1592                                 [define this to use DBBTREE w/ LDBM backend])
1593                 fi
1594
1595                 dnl $ol_cv_lib_db should be yes or -ldb
1596                 dnl (it could be no, but that would be an error
1597                 if test $ol_cv_lib_db != yes ; then
1598                         LDBM_LIBS="$LDBM_LIBS $ol_cv_lib_db"
1599                 fi
1600         fi
1601 fi
1602
1603 if test $ol_with_ldbm_api = manual ; then
1604         dnl User thinks he can manually configure LDBM api.
1605         ol_link_ldbm=yes
1606
1607         AC_MSG_WARN([LDBM defines and link options must be set manually])
1608
1609         AC_CHECK_HEADERS(db.h db_185.h gdbm.h ndbm.h)
1610 fi
1611
1612 if test $ol_link_ldbm = no -a $ol_with_ldbm_type = btree ; then
1613         AC_MSG_WARN(Could not find LDBM with BTREE support)
1614         ol_with_ldbm_api=none
1615 fi
1616
1617 if test $ol_with_ldbm_api = auto -o $ol_with_ldbm_api = mdbm ; then
1618         OL_MDBM
1619
1620         if test $ol_cv_mdbm = yes ; then
1621                 ol_link_ldbm=mdbm
1622                 ol_with_ldbm_api=mdbm
1623                 if test $ol_cv_lib_mdbm != yes ; then
1624                         LDBM_LIBS="$LDBM_LIBS $ol_cv_lib_mdbm"
1625                 fi
1626         fi
1627 fi
1628
1629 if test $ol_with_ldbm_api = auto -o $ol_with_ldbm_api = gdbm ; then
1630         OL_GDBM
1631
1632         if test $ol_cv_gdbm = yes ; then
1633                 ol_link_ldbm=gdbm
1634                 ol_with_ldbm_api=gdbm
1635
1636                 if test $ol_cv_lib_gdbm != yes ; then
1637                         LDBM_LIBS="$LDBM_LIBS $ol_cv_lib_gdbm"
1638                 fi
1639         fi
1640 fi
1641
1642 if test $ol_with_ldbm_api = auto ; then
1643         AC_MSG_WARN([skipping automatic checking for NDBM, must be manually enabled.])
1644 elif test $ol_with_ldbm_api = ndbm ; then
1645         OL_NDBM
1646
1647         if test $ol_cv_ndbm = yes ; then
1648                 ol_link_ldbm=ndbm
1649                 ol_with_ldbm_api=ndbm
1650
1651                 if test $ol_cv_lib_ndbm != yes ; then
1652                         LDBM_LIBS="$LDBM_LIBS $ol_cv_lib_ndbm"
1653                 fi
1654         fi
1655 fi
1656
1657 if test $ol_link_ldbm = no -a $ol_enable_ldbm != no ; then
1658         AC_MSG_WARN(could not find suitable LDBM backend)
1659         if test $ol_enable_ldbm = yes ; then
1660                 AC_MSG_ERROR(select appropriate LDBM options or disable)
1661         fi
1662
1663         AC_MSG_WARN(disabling LDBM)
1664         ol_enable_ldbm=no
1665 fi
1666
1667 dnl ----------------------------------------------------------------
1668 if test $ol_enable_dynamic = yes -a $enable_shared = yes ; then
1669         LINK_BINS_DYNAMIC="yes"
1670 else
1671         LINK_BINS_DYNAMIC="no"
1672 fi
1673
1674 dnl ----------------------------------------------------------------
1675 if test $ol_enable_wrappers != no ; then
1676         AC_CHECK_HEADERS(tcpd.h)
1677
1678         if test $ac_cv_header_tcpd_h != yes ; then
1679                 have_wrappers=no
1680         else
1681                 AC_TRY_COMPILE([
1682 int allow_severity = 0;
1683 int deny_severity  = 0;
1684                 ],[hosts_access()],[have_wrappers=yes],[have_wrappers=no])
1685         fi
1686
1687         if test $have_wrappers = yes ; then
1688                 AC_DEFINE(HAVE_TCPD,1, [define if you have -lwrap])
1689                 WRAP_LIBS="-lwrap"
1690
1691                 dnl We add another check for -lnsl since some libwrap's
1692                 dnl need it, but it isn't always included from above
1693                 AC_CHECK_LIB(nsl, main)
1694         else
1695                 AC_MSG_WARN(could not find -lwrap)
1696                 if test $ol_enable_wrappers = yes ; then
1697                         AC_MSG_ERROR(could not find wrappers, select appropriate options or disable)
1698                 fi
1699
1700                 AC_MSG_WARN(disabling wrappers support)
1701                 ol_enable_wrappers=no
1702                 WRAP_LIBS=""
1703         fi
1704 fi
1705
1706 dnl ----------------------------------------------------------------
1707 if test $ol_enable_syslog != no ; then
1708         AC_CHECK_FUNC(openlog)
1709         if test $ac_cv_func_openlog = no -a $ol_enable_syslog = yes; then
1710                 AC_MSG_ERROR(could not find syslog, select appropriate options or disable)
1711         fi
1712         ol_enable_syslog=$ac_cv_func_openlog
1713 fi
1714
1715 dnl ----------------------------------------------------------------
1716 if test $ol_enable_dmalloc != no ; then
1717         AC_CHECK_HEADERS(dmalloc.h)
1718         AC_CHECK_LIB(dmalloc, dmalloc_shutdown)
1719 fi
1720
1721 dnl ----------------------------------------------------------------
1722 dnl TCL
1723 if test $ol_enable_tcl != no ; then
1724         AC_CHECK_HEADERS(tcl.h)
1725
1726         if test $ac_cv_header_tcl_h != yes ; then
1727                 have_tcl=no
1728         else
1729                 for lib in tcl tcl7.6 tcl8.0 tcl8.2 ; do
1730                         AC_CHECK_LIB($lib,main,
1731                           [have_tcl=yes
1732                            if test x"$ol_with_tcl_module" == "xstatic" ; then
1733                                SLAPD_LIBS="$SLAPD_LIBS -l${lib}"
1734                            else
1735                                MOD_TCL_LIB="-l${lib}"
1736                            fi;break],[have_tcl=no])
1737                 done
1738         fi
1739
1740         if test $have_tcl != yes ; then
1741                 AC_MSG_WARN([could not find -ltcl])
1742                 if test $ol_enable_tcl = yes ; then
1743                         AC_MSG_ERROR([could not find tcl, select appropriate options or disable])
1744                 fi
1745
1746                 ol_enable_tcl=no
1747         fi
1748 fi
1749
1750 dnl ----------------------------------------------------------------
1751 dnl ud needs termcap (should insert check here)
1752 ol_link_termcap=no
1753 AC_CHECK_HEADERS(termcap.h ncurses.h)
1754
1755 if test $ol_link_termcap = no ; then
1756         AC_CHECK_LIB(termcap, tputs, [have_termcap=yes], [have_termcap=no])
1757         if test $have_termcap = yes ; then
1758                 AC_DEFINE(HAVE_TERMCAP, 1, [define if you have -ltermcap])
1759                 ol_link_termcap=yes
1760                 TERMCAP_LIBS=-ltermcap
1761         fi
1762 fi
1763
1764 if test $ol_link_termcap = no ; then
1765         AC_CHECK_LIB(ncurses, initscr, [have_ncurses=yes], [have_ncurses=no])
1766         if test $have_ncurses = yes ; then
1767                 AC_DEFINE(HAVE_NCURSES, 1, [define if you have -lncurses])
1768                 ol_link_termcap=yes
1769                 TERMCAP_LIBS=-lncurses
1770         fi
1771 fi
1772
1773 if test $ol_link_termcap = no ; then
1774         AC_DEFINE(NO_TERMCAP,1, [define if you have no termcap support])
1775         TERMCAP_LIBS=
1776 fi
1777
1778 dnl ----------------------------------------------------------------
1779 dnl
1780 dnl Check for Cyrus SASL
1781 dnl
1782 ol_link_sasl=no
1783 if test $ol_with_cyrus_sasl != no ; then
1784         AC_CHECK_HEADER(sasl.h)
1785
1786         if test $ac_cv_header_sasl_h = yes ; then
1787                 AC_CHECK_LIB(sasl, sasl_client_init,
1788                         [have_cyrus_sasl=yes], [have_cyrus_sasl=no])
1789
1790                 if test $have_cyrus_sasl != no ; then
1791                         SASL_LIBS="-lsasl"
1792                         AC_DEFINE(HAVE_CYRUS_SASL,1,[define if you have Cyrus SASL])
1793                         ol_link_sasl=yes
1794                 fi
1795         fi
1796
1797         if test $ol_link_sasl = no -a $ol_with_cyrus_sasl = yes ; then
1798                 AC_MSG_ERROR(no suitable API for --with-cyrus-sasl=$ol_with_cyrus_sasl)
1799         fi
1800 fi
1801
1802 dnl ----------------------------------------------------------------
1803 dnl Check for entropy sources
1804 if test $cross_compiling != yes ; then
1805         dev=no
1806         if test -r /dev/urandom ; then
1807                 dev="/dev/urandom";
1808         elif test -r /idev/urandom ; then
1809                 dev="/idev/urandom";
1810         elif test -r /dev/srandom ; then
1811                 dev="/dev/srandom";
1812         elif test -r /dev/random ; then
1813                 dev="/dev/random";
1814         elif test -r /idev/random ; then
1815                 dev="/idev/random";
1816         fi
1817
1818         if test $dev != no ; then
1819                 AC_DEFINE_UNQUOTED(URANDOM_DEVICE,"$dev",[set to urandom device])
1820         fi
1821 fi
1822
1823 dnl ----------------------------------------------------------------
1824 dnl
1825 dnl Check for fetch URL support
1826 dnl             should be extended to support other fetch URL APIs
1827 dnl
1828 ol_link_fetch=no
1829 if test $ol_with_fetch != no ; then
1830         OL_LIB_FETCH
1831
1832         if test $ol_cv_lib_fetch != no ; then
1833                 LDIF_LIBS="$LDIF_LIBS $ol_link_fetch"
1834                 ol_link_fetch=freebsd
1835
1836         elif test $ol_with_fetch != auto ; then
1837                 AC_MSG_ERROR(no suitable API for --with-fetch=$ol_with_fetch)
1838         fi 
1839 fi
1840
1841 dnl ----------------------------------------------------------------
1842 dnl
1843 dnl Check for GNU readline
1844 dnl
1845 ol_link_readline=no
1846 if test $ol_with_readline != no ; then
1847         AC_CHECK_HEADERS(readline/readline.h readline/history.h)
1848
1849         if test $ac_cv_header_readline_readline_h = yes ; then
1850                 save_LIBS="$LIBS"
1851                 LIBS="$TERMCAP_LIBS $LIBS"
1852                 AC_CHECK_LIB(readline, readline, 
1853                         [have_readline=yes], [have_readline=no])
1854                 LIBS="$save_LIBS"
1855                         
1856                 if test $have_readline = yes ; then
1857                         ol_with_readline=found
1858                         ol_link_readline=yes
1859
1860                         READLINE_LIBS="-lreadline"
1861                 fi
1862         fi
1863 fi
1864
1865 if test $ol_link_readline = yes ; then
1866         AC_DEFINE(HAVE_READLINE, 1, [define if you have -lreadline])
1867 fi
1868
1869
1870 dnl ----------------------------------------------------------------
1871 dnl FreeBSD (and others) have crypt(3) in -lcrypt
1872 if test $ol_enable_crypt != no ; then
1873         AC_CHECK_FUNC(crypt, [have_crypt=yes], [
1874                 AC_CHECK_LIB(crypt, crypt, [LUTIL_LIBS="$LUTIL_LIBS -lcrypt"
1875                         have_crypt=yes], [have_crypt=no])])
1876
1877         if test $have_crypt = yes ; then
1878                 AC_DEFINE(HAVE_CRYPT,1, [define if crypt(3) is available])
1879         else
1880                 AC_MSG_WARN(could not find crypt)
1881                 if test $ol_enable_crypt = yes ; then
1882                         AC_MSG_ERROR(could not find crypt, select appropriate options or disable)
1883                 fi
1884
1885                 AC_MSG_WARN(disabling crypt support)
1886                 ol_enable_crypt=no
1887         fi
1888 fi
1889
1890 dnl ----------------------------------------------------------------
1891 dnl FreeBSD (and others) have setproctitle(3) in -lutil
1892 if test $ol_enable_proctitle != no ; then
1893         AC_CHECK_FUNC(setproctitle,     [have_setproctitle=yes], [
1894                 AC_CHECK_LIB(util, setproctitle,
1895                         [have_setproctitle=yes
1896                         LUTIL_LIBS="$LUTIL_LIBS -lutil"],
1897                         [have_setproctitle=no
1898                         LIBOBJS="$LIBOBJS setproctitle.o"
1899                         LIBSRCS="$LIBSRCS setproctitle.c"])])
1900
1901         if test $have_setproctitle = yes ; then
1902                 AC_DEFINE(HAVE_SETPROCTITLE,1,
1903                         [define if setproctitle(3) is available])
1904         fi
1905 fi
1906
1907 dnl ----------------------------------------------------------------
1908 dnl Checks for typedefs, structures, and compiler characteristics.
1909 AC_TYPE_MODE_T
1910 AC_TYPE_OFF_T
1911 AC_TYPE_PID_T
1912 AM_TYPE_PTRDIFF_T
1913 AC_TYPE_SIGNAL
1914 AC_TYPE_SIZE_T
1915 OL_TYPE_SOCKLEN_T
1916 AC_STRUCT_ST_BLKSIZE
1917 AC_HEADER_TIME
1918 AC_STRUCT_TM
1919 AC_TYPE_UID_T
1920 OL_TYPE_SIG_ATOMIC_T
1921
1922 dnl only check these if we're not Mingw32
1923 if test "$ac_cv_mingw32" != yes ; then
1924     AC_TYPE_GETGROUPS
1925     OL_STRUCT_PASSWD_PW_GECOS
1926     OL_STRUCT_PASSWD_PW_PASSWD
1927 fi
1928
1929 OL_C_UPPER_LOWER
1930 AC_C_CONST
1931 OL_C_VOLATILE
1932
1933 if test $cross_compiling = yes ; then
1934         AC_DEFINE(CROSS_COMPILING, 1, [define if cross compiling])
1935
1936         AC_DEFINE(LBER_INT_T,long)
1937         AC_DEFINE(LBER_TAG_T,long)
1938         AC_DEFINE(LBER_SOCKET_T,int)
1939
1940 else
1941         AC_C_BIGENDIAN
1942         AC_CHECK_SIZEOF(short) 
1943         AC_CHECK_SIZEOF(int) 
1944         AC_CHECK_SIZEOF(long)
1945
1946         if test "$ac_cv_sizeof_int" -lt 4 ; then
1947                 AC_MSG_WARN([OpenLDAP requires 'int' to be 32 bits or greater.])
1948
1949                 AC_DEFINE(LBER_INT_T,long)
1950                 AC_DEFINE(LBER_TAG_T,long)
1951                 AC_DEFINE(LBER_SOCKET_T,int)
1952         else
1953                 AC_DEFINE(LBER_INT_T,int)
1954                 AC_DEFINE(LBER_TAG_T,long)
1955                 AC_DEFINE(LBER_SOCKET_T,int)
1956         fi
1957 fi
1958
1959 AC_DEFINE(LBER_LEN_T,long)
1960
1961 dnl ----------------------------------------------------------------
1962 dnl Checks for library functions.
1963 AC_FUNC_MEMCMP
1964 dnl AM_FUNC_MKTIME dnl checks for sys/time.h and unistd.h
1965 AC_FUNC_STRFTIME
1966 dnl AM_FUNC_STRTOD
1967
1968 OL_FUNC_INET_ATON
1969
1970 dnl Check for Mingw32 specific functions.
1971 if test "$ac_cv_mingw32" = yes ; then
1972     AC_CHECK_FUNC(_snprintf, [
1973         ac_cv_func_snprintf=yes
1974         AC_DEFINE(snprintf, _snprintf, [define to snprintf routine])
1975     ])
1976
1977     AC_CHECK_FUNC(_vsnprintf, [
1978         ac_cv_func_vsnprintf=yes
1979         AC_DEFINE(vsnprintf, _vsnprintf, [define to vsnprintf routine])
1980     ])
1981
1982     AC_CHECK_FUNC(_spawnlp, AC_DEFINE(HAVE_SPAWNLP,1,[if you have spawnlp()]))
1983 fi
1984
1985 dnl we should use vfork instead of fork in a number of places...
1986 dnl AC_FUNC_VFORK
1987 AC_FUNC_VPRINTF
1988
1989 if test $ac_cv_func_vprintf = yes ; then
1990         dnl check for vsnprintf
1991         AC_CHECK_FUNCS(vsnprintf vsprintf)
1992 fi
1993
1994 AC_CHECK_FUNCS(         \
1995         bcopy                   \
1996         closesocket             \
1997         endgrent                \
1998         endpwent                \
1999         flock                   \
2000         getdtablesize   \
2001         getgrgid                \
2002         gethostname             \
2003         getpass                 \
2004         getpwuid                \
2005         getpwnam                \
2006         getspnam                \
2007         gettimeofday    \
2008         initgroups              \
2009         lockf                   \
2010         memcpy                  \
2011         memmove                 \
2012         mkstemp                 \
2013         pipe                    \
2014         read                    \
2015         recv                    \
2016         recvfrom                \
2017         setpwfile               \
2018         setgid                  \
2019         setegid                 \
2020         setsid                  \
2021         setuid                  \
2022         seteuid                 \
2023         sigaction               \
2024         signal                  \
2025         sigset                  \
2026         snprintf                \
2027         strdup                  \
2028         strerror                \
2029         strpbrk                 \
2030         strrchr                 \
2031         strsep                  \
2032         strstr                  \
2033         strtol                  \
2034         strtoul                 \
2035         strspn                  \
2036         sysconf                 \
2037         waitpid                 \
2038         wait4                   \
2039         write                   \
2040         send                    \
2041         sendto                  \
2042 )
2043
2044 dnl We actually may need to replace more than this.
2045 AC_REPLACE_FUNCS(getopt tempnam)
2046
2047 if test "$ac_cv_func_getopt" != yes; then
2048     LIBSRCS="$LIBSRCS getopt.c"
2049 fi
2050
2051 if test "$ac_cv_func_tempnam" != yes; then
2052     LIBSRCS="$LIBSRCS tempnam.c"
2053 fi
2054
2055 dnl ----------------------------------------------------------------
2056 # Check Configuration
2057 OL_SYS_ERRLIST
2058
2059 dnl ----------------------------------------------------------------
2060 dnl Sort out defines
2061
2062 if test "$ol_enable_debug" != no ; then
2063         AC_DEFINE(LDAP_DEBUG,1,
2064                 [define this to add debugging code])
2065 fi
2066 if test "$ol_enable_syslog" = yes ; then
2067         AC_DEFINE(LDAP_SYSLOG,1,
2068                 [define this to add syslog code])
2069 fi
2070 if test "$ol_enable_libui" = yes ; then
2071         AC_DEFINE(LDAP_LIBUI,1,
2072                 [define this for LDAP User Interface support])
2073 fi
2074 if test "$ol_enable_cache" = no ; then
2075         AC_DEFINE(LDAP_NOCACHE,1,
2076                 [define this to remove -lldap cache support])
2077 fi
2078 if test "$ol_enable_dns" != no ; then
2079         AC_DEFINE(LDAP_API_FEATURE_X_OPENLDAP_V2_DNS,LDAP_VENDOR_VERSION)
2080 fi
2081 if test "$ol_enable_proctitle" != no ; then
2082         AC_DEFINE(LDAP_PROCTITLE,1,
2083                 [define this for LDAP process title support])
2084 fi
2085 if test "$ol_enable_referrals" != no ; then
2086         AC_DEFINE(LDAP_API_FEATURE_X_OPENLDAP_V2_REFERRALS,LDAP_VENDOR_VERSION)
2087 fi
2088 if test "$ol_enable_cldap" != no ; then
2089         AC_DEFINE(LDAP_CONNECTIONLESS,1,[define to support CLDAP])
2090 fi
2091
2092 if test "$ol_enable_crypt" != no ; then
2093         AC_DEFINE(SLAPD_CRYPT,1,[define to support crypt(3) passwords])
2094 fi
2095 if test "$ol_enable_cleartext" != no ; then
2096         AC_DEFINE(SLAPD_CLEARTEXT,1,[define to support cleartext passwords])
2097 fi
2098 if test "$ol_enable_multimaster" != no ; then
2099         AC_DEFINE(SLAPD_MULTIMASTER,1,[define to support multimaster replication])
2100 fi
2101 if test "$ol_enable_phonetic" != no ; then
2102         AC_DEFINE(SLAPD_PHONETIC,1,[define to support phonetic])
2103 fi
2104 if test "$ol_enable_rlookups" != no ; then
2105         AC_DEFINE(SLAPD_RLOOKUPS,1,[define to support reverse lookups])
2106 fi
2107 if test "$ol_enable_aci" != no ; then
2108         AC_DEFINE(SLAPD_ACI_ENABLED,1,[define to support per-object ACIs])
2109 fi
2110 if test "$ol_enable_discreteaci" != no ; then
2111         AC_DEFINE(SLAPD_ACI_DISCRETE_RIGHTS,1,[define to support discrete rights in ACIs])
2112 fi
2113
2114 if test "$ol_link_modules" != no ; then
2115         AC_DEFINE(SLAPD_MODULES,1,[define to support modules])
2116         BUILD_SLAPD=yes
2117         SLAPD_MODULES_LDFLAGS="-dlopen self"
2118 fi
2119
2120 if test "$ol_link_bdb2" != no ; then
2121         AC_DEFINE(SLAPD_BDB2,1,[define to support BDB2 backend])
2122         BUILD_SLAPD=yes
2123         BUILD_BDB2=yes
2124         if test "$ol_with_bdb2_module" != static ; then
2125                 AC_DEFINE(SLAPD_BDB2_DYNAMIC,1,
2126                         [define to support dynamic BDB2 backend])
2127                 BUILD_BDB2=mod
2128                 BUILD_BDB2_DYNAMIC=shared
2129                 SLAPD_MODULES_LIST="$SLAPD_MODULES_LIST -dlopen \$(SLAP_DIR)back-bdb2/back_bdb2.la"
2130         fi
2131 fi
2132
2133 if test "$ol_enable_ldap" != no ; then
2134         AC_DEFINE(SLAPD_LDAP,1,[define to support LDAP backend])
2135         BUILD_SLAPD=yes
2136         BUILD_LDAP=yes
2137         if test "$ol_with_ldap_module" != static ; then
2138                 AC_DEFINE(SLAPD_LDAP_DYNAMIC,1,
2139                         [define to support dynamic LDAP backend])
2140                 BUILD_LDAP=mod
2141                 BUILD_LDAP_DYNAMIC=shared
2142                 SLAPD_MODULES_LIST="$SLAPD_MODULES_LIST -dlopen \$(SLAP_DIR)back-ldap/back_ldap.la"
2143         fi
2144 fi
2145
2146 if test "$ol_link_ldbm" != no ; then
2147         AC_DEFINE(SLAPD_LDBM,1,[define to support LDBM backend])
2148         BUILD_SLAPD=yes
2149         BUILD_LDBM=yes
2150         if test "$ol_with_ldbm_module" != static ; then
2151                 AC_DEFINE(SLAPD_LDBM_DYNAMIC,1,
2152                         [define to support dynamic LDBM backend])
2153                 BUILD_LDBM=mod
2154                 BUILD_LDBM_DYNAMIC=shared
2155                 SLAPD_MODULES_LIST="$SLAPD_MODULES_LIST -dlopen \$(SLAP_DIR)back-ldbm/back_ldbm.la"
2156         fi
2157 fi
2158
2159 if test "$ol_enable_passwd" != no ; then
2160         AC_DEFINE(SLAPD_PASSWD,1,[define to support PASSWD backend])
2161         BUILD_SLAPD=yes
2162         BUILD_PASSWD=yes
2163         if test "$ol_with_passwd_module" != static ; then
2164                 AC_DEFINE(SLAPD_PASSWD_DYNAMIC,1,
2165                         [define to support dynamic PASSWD backend])
2166                 BUILD_PASSWD=mod
2167                 BUILD_PASSWD_DYNAMIC=shared
2168                 SLAPD_MODULES_LIST="$SLAPD_MODULES_LIST -dlopen \$(SLAP_DIR)back-passwd/back_passwd.la"
2169         fi
2170 fi
2171
2172 if test "$ol_link_perl" != no ; then
2173         AC_DEFINE(SLAPD_PERL,1,[define to support PERL backend])
2174         BUILD_SLAPD=yes
2175         BUILD_PERL=yes
2176         if test "$ol_with_perl_module" != static ; then
2177                 AC_DEFINE(SLAPD_PERL_DYNAMIC,1,
2178                         [define to support dynamic PERL backend])
2179                 BUILD_PERL=mod
2180                 BUILD_PERL_DYNAMIC=shared
2181                 SLAPD_MODULES_LIST="$SLAPD_MODULES_LIST -dlopen \$(SLAP_DIR)back-perl/back_perl.la"
2182         fi
2183 fi
2184
2185 if test "$ol_enable_shell" != no ; then
2186         AC_DEFINE(SLAPD_SHELL,1,[define to support SHELL backend])
2187         BUILD_SLAPD=yes
2188         BUILD_SHELL=yes
2189         if test "$ol_with_shell_module" != static ; then
2190                 AC_DEFINE(SLAPD_SHELL_DYNAMIC,1,
2191                         [define to support dynamic SHELL backend])
2192                 BUILD_SHELL=mod
2193                 BUILD_SHELL_DYNAMIC=shared
2194                 SLAPD_MODULES_LIST="$SLAPD_MODULES_LIST -dlopen \$(SLAP_DIR)back-shell/back_shell.la"
2195         fi
2196 fi
2197
2198 if test "$ol_enable_tcl" != no ; then
2199         AC_DEFINE(SLAPD_TCL,1,[define to support TCL backend])
2200         BUILD_SLAPD=yes
2201         BUILD_TCL=yes
2202         if test "$ol_with_tcl_module" != static; then
2203                 AC_DEFINE(SLAPD_TCL_DYNAMIC,1,
2204                         [define to support dynamic TCL backend])
2205                 BUILD_TCL=mod
2206                 BUILD_TCL_DYNAMIC=shared
2207                 SLAPD_MODULES_LIST="$SLAPD_MODULES_LIST -dlopen \$(SLAP_DIR)back-tcl/back_tcl.la"
2208         fi
2209 fi
2210
2211 if test "$ol_enable_slurpd" != no -a "$ol_link_threads" != no -a \
2212         $BUILD_SLAPD = yes ; then
2213         BUILD_SLURPD=yes
2214 fi
2215
2216 if test "$ol_link_isode" != no ; then
2217         BUILD_LDAPD=yes
2218 fi
2219
2220 dnl ----------------------------------------------------------------
2221
2222 if test "$LINK_BINS_DYNAMIC" = yes; then
2223     LIB_LINKAGE=DYN
2224     LT_LIB_LINKAGE=shared
2225 else
2226     LIB_LINKAGE=STAT
2227     LT_LIB_LINKAGE=static
2228 fi
2229
2230 if test "$ac_cv_mingw32" = yes ; then
2231     PLAT=NT
2232     DYN_EXT=dll
2233 else
2234     PLAT=UNIX
2235     DYN_EXT=so
2236 fi
2237
2238 AC_SUBST(LIBSRCS)
2239
2240 AC_SUBST(PLAT)
2241 AC_SUBST(LIB_LINKAGE)
2242 AC_SUBST(LT_LIB_LINKAGE)
2243 AC_SUBST(DYN_EXT)
2244
2245 AC_SUBST(BUILD_LDAPD)
2246 AC_SUBST(BUILD_SLAPD)
2247   AC_SUBST(BUILD_BDB2)
2248   AC_SUBST(BUILD_LDAP)
2249   AC_SUBST(BUILD_LDBM)
2250   AC_SUBST(BUILD_PASSWD)
2251   AC_SUBST(BUILD_PERL)
2252   AC_SUBST(BUILD_QUIPU)
2253   AC_SUBST(BUILD_SHELL)
2254   AC_SUBST(BUILD_TCL)
2255   AC_SUBST(BUILD_BDB2_DYNAMIC)
2256   AC_SUBST(BUILD_LDAP_DYNAMIC)
2257   AC_SUBST(BUILD_LDBM_DYNAMIC)
2258   AC_SUBST(BUILD_PASSWD_DYNAMIC)
2259   AC_SUBST(BUILD_PERL_DYNAMIC)
2260   AC_SUBST(BUILD_SHELL_DYNAMIC)
2261   AC_SUBST(BUILD_TCL_DYNAMIC)
2262 AC_SUBST(BUILD_SLURPD)
2263
2264 AC_SUBST(LDAP_LIBS)
2265 AC_SUBST(LDAPD_LIBS)
2266 AC_SUBST(LDIF_LIBS)
2267 AC_SUBST(SLAPD_LIBS)
2268 AC_SUBST(SLURPD_LIBS)
2269 AC_SUBST(LDBM_LIBS)
2270 AC_SUBST(LTHREAD_LIBS)
2271 AC_SUBST(LUTIL_LIBS)
2272 AC_SUBST(WRAP_LIBS)
2273 AC_SUBST(MOD_TCL_LIB)
2274 AC_SUBST(LINK_BINS_DYNAMIC)
2275
2276 AC_SUBST(SLAPD_MODULES_CPPFLAGS)
2277 AC_SUBST(SLAPD_MODULES_LDFLAGS)
2278 AC_SUBST(SLAPD_MODULES_LIST)
2279
2280 AC_SUBST(PERL_CPPFLAGS)
2281 AC_SUBST(SLAPD_PERL_LDFLAGS)
2282 AC_SUBST(MOD_PERL_LDFLAGS)
2283
2284 AC_SUBST(KRB_LIBS)
2285 AC_SUBST(READLINE_LIBS)
2286 AC_SUBST(SASL_LIBS)
2287 AC_SUBST(TERMCAP_LIBS)
2288 AC_SUBST(TLS_LIBS)
2289 AC_SUBST(MODULES_LIBS)
2290
2291 dnl ----------------------------------------------------------------
2292 dnl final output
2293 dnl
2294
2295 AC_OUTPUT( \
2296 Makefile:build/top.mk:Makefile.in:build/dir.mk \
2297 doc/Makefile:build/top.mk:doc/Makefile.in:build/dir.mk \
2298 doc/man/Makefile:build/top.mk:doc/man/Makefile.in:build/dir.mk \
2299 doc/man/man1/Makefile:build/top.mk:doc/man/man1/Makefile.in:build/man.mk \
2300 doc/man/man3/Makefile:build/top.mk:doc/man/man3/Makefile.in:build/man.mk \
2301 doc/man/man5/Makefile:build/top.mk:doc/man/man5/Makefile.in:build/man.mk \
2302 doc/man/man8/Makefile:build/top.mk:doc/man/man8/Makefile.in:build/man.mk \
2303 clients/Makefile:build/top.mk:clients/Makefile.in:build/dir.mk \
2304 clients/finger/Makefile:build/top.mk:clients/finger/Makefile.in:build/rules.mk \
2305 clients/fax500/Makefile:build/top.mk:clients/fax500/Makefile.in:build/rules.mk \
2306 clients/gopher/Makefile:build/top.mk:clients/gopher/Makefile.in:build/rules.mk \
2307 clients/mail500/Makefile:build/top.mk:clients/mail500/Makefile.in:build/rules.mk \
2308 clients/rcpt500/Makefile:build/top.mk:clients/rcpt500/Makefile.in:build/rules.mk \
2309 clients/ud/Makefile:build/top.mk:clients/ud/Makefile.in:build/rules.mk \
2310 clients/tools/Makefile:build/top.mk:clients/tools/Makefile.in:build/rules.mk \
2311 include/Makefile:build/top.mk:include/Makefile.in \
2312 libraries/Makefile:build/top.mk:libraries/Makefile.in:build/dir.mk      \
2313 libraries/libavl/Makefile:build/top.mk:libraries/libavl/Makefile.in:build/lib.mk:build/lib-static.mk    \
2314 libraries/liblber/Makefile:build/top.mk:libraries/liblber/Makefile.in:build/lib.mk:build/lib-shared.mk  \
2315 libraries/libldap/Makefile:build/top.mk:libraries/libldap/Makefile.in:build/lib.mk:build/lib-shared.mk  \
2316 libraries/libldap_r/Makefile:build/top.mk:libraries/libldap_r/Makefile.in:build/lib.mk:build/lib-shared.mk      \
2317 libraries/libldbm/Makefile:build/top.mk:libraries/libldbm/Makefile.in:build/lib.mk:build/lib-static.mk  \
2318 libraries/libldif/Makefile:build/top.mk:libraries/libldif/Makefile.in:build/lib.mk:build/lib-static.mk  \
2319 libraries/liblutil/Makefile:build/top.mk:libraries/liblutil/Makefile.in:build/lib.mk:build/lib-static.mk        \
2320 servers/Makefile:build/top.mk:servers/Makefile.in:build/dir.mk \
2321 servers/ldapd/Makefile:build/top.mk:servers/ldapd/Makefile.in:build/srv.mk \
2322 servers/slapd/Makefile:build/top.mk:servers/slapd/Makefile.in:build/srv.mk \
2323 servers/slapd/back-bdb2/Makefile:build/top.mk:servers/slapd/back-bdb2/Makefile.in:build/mod.mk \
2324 servers/slapd/back-ldap/Makefile:build/top.mk:servers/slapd/back-ldap/Makefile.in:build/mod.mk \
2325 servers/slapd/back-ldbm/Makefile:build/top.mk:servers/slapd/back-ldbm/Makefile.in:build/mod.mk \
2326 servers/slapd/back-passwd/Makefile:build/top.mk:servers/slapd/back-passwd/Makefile.in:build/mod.mk \
2327 servers/slapd/back-perl/Makefile:build/top.mk:servers/slapd/back-perl/Makefile.in:build/mod.mk \
2328 servers/slapd/back-shell/Makefile:build/top.mk:servers/slapd/back-shell/Makefile.in:build/mod.mk \
2329 servers/slapd/back-tcl/Makefile:build/top.mk:servers/slapd/back-tcl/Makefile.in:build/mod.mk \
2330 servers/slapd/shell-backends/Makefile:build/top.mk:servers/slapd/shell-backends/Makefile.in:build/srv.mk \
2331 servers/slapd/tools/Makefile:build/top.mk:servers/slapd/tools/Makefile.in \
2332 servers/slurpd/Makefile:build/top.mk:servers/slurpd/Makefile.in:build/srv.mk \
2333 tests/Makefile:build/top.mk:tests/Makefile.in:build/dir.mk \
2334 tests/progs/Makefile:build/top.mk:tests/progs/Makefile.in:build/rules.mk \
2335 contrib/Makefile:build/top.mk:contrib/Makefile.in:build/dir.mk \
2336 contrib/saucer/Makefile:build/top.mk:contrib/saucer/Makefile.in:build/rules.mk \
2337 contrib/web_ldap/Makefile:build/top.mk:contrib/web_ldap/Makefile.in:build/rules.mk \
2338 ,[
2339 date > stamp-h
2340 echo Please \"make depend\" to build dependencies
2341 ])