]> git.sur5r.net Git - openldap/blob - configure.in
safe_string_free was freeing the string value, so we have to save it.
[openldap] / configure.in
1 dnl
2 dnl Copyright 1998,1999 The OpenLDAP Foundation.  All Rights Reserved.
3 dnl 
4 dnl Redistribution and use in source and binary forms are permitted only
5 dnl as authorized by the OpenLDAP Public License.  A copy of this
6 dnl license is available at http://www.OpenLDAP.org/license.html or
7 dnl in file LICENSE in the top-level directory of the distribution.
8 dnl
9
10 dnl Disable config.cache!
11 define([AC_CACHE_LOAD], )dnl
12 define([AC_CACHE_SAVE], )dnl
13
14 dnl Configure.in for OpenLDAP
15 AC_INIT(build/version)dnl
16 AC_CONFIG_AUX_DIR(build)dnl
17
18 OL_VERSION=`cat $ac_aux_dir/version`
19 if test -z "$OL_VERSION"; then
20         AC_MSG_ERROR([could not determine version])
21 fi
22
23 AM_INIT_AUTOMAKE(OpenLDAP,[$OL_VERSION], [no defines])dnl
24 AC_SUBST(PACKAGE)
25 AC_SUBST(VERSION)
26 AC_DEFINE_UNQUOTED(OPENLDAP_PACKAGE,"$PACKAGE",Package)
27 AC_DEFINE_UNQUOTED(OPENLDAP_VERSION,"$VERSION",Version)
28
29 dnl We use autoconf features new to 2.13.
30 dnl     aclocal.m4 should be built using aclocal from automake 1.4
31 AC_PREREQ(2.13)dnl Required Autoconf version
32
33 AC_CONFIG_HEADER(include/portable.h include/ldap_features.h)dnl
34
35 dnl
36 dnl Start Args
37 AC_MSG_CHECKING(configure arguments)
38 AC_PREFIX_DEFAULT(/usr/local)
39
40 top_builddir=`pwd`
41 AC_SUBST(top_builddir)dnl
42
43 AC_DEFINE(HAVE_MKVERSION, 1, [define this if you have mkversion])
44
45 ldap_subdir="openldap"
46
47 AC_ARG_WITH(subdir, [  --with-subdir=DIR change default subdirectory used for installs], [
48         if test "$withval" = "no"; then
49                 ldap_subdir=""
50         elif test "$withval" != "yes"; then
51                 ldap_subdir="$withval"
52         fi
53 ])dnl
54
55 AC_SUBST(ldap_subdir)dnl
56
57 OL_ARG_ENABLE(debug,[  --enable-debug   enable debugging], yes)dnl
58 dnl ol_enable_syslog=no
59 OL_ARG_ENABLE(syslog,[  --enable-syslog enable syslog support], auto)dnl
60 OL_ARG_ENABLE(proctitle,[  --enable-proctitle   enable proctitle support], yes)dnl
61 OL_ARG_ENABLE(cache,[  --enable-cache   enable caching], yes)dnl
62 OL_ARG_ENABLE(dns,[  --enable-dns               enable V2 DNS  extension], no)dnl
63 OL_ARG_ENABLE(referrals,[  --enable-referrals   enable V2 Referrals extension], yes)dnl
64 OL_ARG_ENABLE(cldap,[  --enable-cldap   enable connectionless ldap], no)dnl
65 OL_ARG_ENABLE(x_compile,[  --enable-x-compile   enable cross compiling],
66         no, [yes no])dnl
67
68 dnl General "with" options
69 OL_ARG_ENABLE(dmalloc,[  --enable-dmalloc       enable debug malloc support], no)dnl
70
71 OL_ARG_WITH(kerberos,[  --with-kerberos with Kerberos support],
72         auto, [auto k5 k4 afs yes no])
73 OL_ARG_WITH(readline,[  --with-readline  with readline support],
74         auto, [auto yes no] )
75 OL_ARG_WITH(threads,[  --with-threads   use threads],
76         auto, [auto posix mach lwp yes no manual] )
77 OL_ARG_WITH(tls,[  --with-tls  with TLS/SSL support],
78         auto, [auto ssleay openssl yes no] )
79 OL_ARG_WITH(yielding_select,[  --with-yielding-select   with implicitly yielding select],
80         auto, [auto yes no manual] )
81
82 dnl Server options
83
84 dnl LDAPD OPTIONS
85 AC_ARG_WITH(xxldapdoptions,[LDAPD Options:])
86 OL_ARG_ENABLE(ldapd,[  --enable-ldapd   enable building ldapd], no)dnl
87
88 dnl SLAPD OPTIONS
89 AC_ARG_WITH(xxslapdoptions,[SLAPD Options:])
90 OL_ARG_ENABLE(slapd,[  --enable-slapd   enable building slapd], yes)dnl
91 OL_ARG_ENABLE(aclgroups,[    --enable-aclgroups enable ACL group support], auto)dnl
92 OL_ARG_ENABLE(cleartext,[    --enable-cleartext enable cleartext passwords], yes)dnl
93 OL_ARG_ENABLE(crypt,[    --enable-crypt enable crypt(3) passwords], auto)dnl
94 OL_ARG_ENABLE(modules,[    --enable-modules     enable dynamic module support], no)dnl
95 OL_ARG_ENABLE(phonetic,[    --enable-phonetic   enable phonetic/soundex], no)dnl
96 OL_ARG_ENABLE(rlookups,[    --enable-rlookups   enable reverse lookups], auto)dnl
97 OL_ARG_ENABLE(wrappers,[    --enable-wrappers   enable tcp wrapper support], no)dnl
98
99 dnl SLAPD Backend options
100 OL_ARG_ENABLE(bdb2,[    --enable-bdb2   enable bdb2 backend], no)dnl
101 OL_ARG_ENABLE(ldap,[    --enable-ldap   enable ldap backend], no)dnl
102 OL_ARG_ENABLE(ldbm,[    --enable-ldbm   enable ldbm backend], yes)dnl
103 OL_ARG_WITH(ldbm_api,[      --with-ldbm-api     use LDBM API], auto,
104         [auto db2 db mdbm gdbm ndbm manual])
105 OL_ARG_WITH(ldbm_type,[      --with-ldbm-type   use LDBM type], auto,
106         [auto btree hash])
107
108 OL_ARG_ENABLE(passwd,[    --enable-passwd       enable passwd backend], no)dnl
109 OL_ARG_ENABLE(perl,[    --enable-perl   enable perl backend], no)dnl
110 OL_ARG_ENABLE(shell,[    --enable-shell enable shell backend], no)dnl
111 OL_ARG_ENABLE(tcl,[    --enable-tcl     enable tcl backend], no)dnl
112
113 dnl SLURPD OPTIONS
114 AC_ARG_WITH(xxslurpdoptions,[SLURPD Options:])
115 OL_ARG_ENABLE(slurpd,[  --enable-slurpd enable building slurpd], auto)dnl
116
117 AC_ARG_WITH(xxliboptions,[Library Generation & Linking Options])
118 AM_ENABLE_STATIC
119 dnl AM_DISABLE_SHARED
120 AM_ENABLE_SHARED
121
122 dnl General "enable" options
123 # validate options
124 if test $ol_enable_dns = yes ; then
125         if test $ol_enable_referrals = no ; then
126                 AC_MSG_ERROR([DNS requires --enable-referrals])
127         fi
128         if test $ol_enable_referrals = auto ; then
129                 AC_MSG_WARN([DNS requires referrals, adding --enable-referrals])
130                 ol_enable_referrals=yes
131         fi
132 fi
133
134 if test $ol_enable_slapd = no ; then
135         dnl SLAPD was specificallly disabled
136         if test $ol_enable_bdb2 = yes ; then
137                 AC_MSG_WARN([slapd disabled, ignoring --enable_bdb2 argument])
138         fi
139         if test $ol_enable_ldbm = yes ; then
140                 AC_MSG_WARN([slapd disabled, ignoring --enable_ldbm argument])
141         fi
142         if test $ol_enable_passwd = yes ; then
143                 AC_MSG_WARN([slapd disabled, ignoring --enable_passwd argument])
144         fi
145         if test $ol_enable_perl = yes ; then
146                 AC_MSG_WARN([slapd disabled, ignoring --enable_perl argument])
147         fi
148         if test $ol_enable_shell = yes ; then
149                 AC_MSG_WARN([slapd disabled, ignoring --enable_shell argument])
150         fi
151         if test $ol_enable_tcl = yes ; then
152                 AC_MSG_WARN([slapd disabled, ignoring --enable_tcl argument])
153         fi
154         if test $ol_enable_aclgroups = yes ; then
155                 AC_MSG_WARN([slapd disabled, ignoring --enable_aclgroups argument])
156         fi
157         if test $ol_enable_modules = yes ; then
158                 AC_MSG_WARN([slapd disabled, ignoring --enable_modules argument])
159         fi
160         if test $ol_enable_wrappers = yes ; then
161                 AC_MSG_WARN([slapd disabled, ignoring --enable_wrappers argument])
162         fi
163         if test $ol_enable_phonetic = yes ; then
164                 AC_MSG_WARN([slapd disabled, ignoring --enable_phonetic argument])
165         fi
166         if test $ol_enable_rlookups = yes ; then
167                 AC_MSG_WARN([slapd disabled, ignoring --enable_rlookups argument])
168         fi
169         if test $ol_with_ldbm_api != auto ; then
170                 AC_MSG_WARN([slapd disabled, ignoring --with_ldbm_api argument])
171         fi
172         if test $ol_with_ldbm_type != auto ; then
173                 AC_MSG_WARN([slapd disabled, ignoring --with_ldbm_type argument])
174         fi
175         if test $ol_enable_slurpd = yes ; then
176                 AC_MSG_ERROR([slurpd requires slapd])
177         fi
178
179         # force settings to no
180         ol_enable_bdb2=no
181         ol_enable_ldbm=no
182         ol_enable_passwd=no
183         ol_enable_perl=no
184         ol_enable_shell=no
185         ol_enable_tcl=no
186
187         ol_enable_aclgroups=no
188         ol_enable_modules=no
189         ol_enable_phonetic=no
190         ol_enable_rlookups=no
191         ol_enable_wrappers=no
192
193         ol_with_ldbm_api=no
194         ol_with_ldbm_type=no
195
196         ol_enable_slurpd=no
197
198 elif test $ol_enable_ldbm = no ; then
199         dnl SLAPD without LDBM
200
201         if test $ol_with_ldbm_api != auto ; then
202                 AC_MSG_WARN([LDBM disabled, ignoring --with_ldbm_api argument])
203         fi
204
205         if test $ol_with_ldbm_type != auto ; then
206                 AC_MSG_WARN([LDBM disabled, ignoring --with_ldbm_type argument])
207         fi
208
209         if test $ol_enable_bdb2 = yes ; then
210                 AC_MSG_ERROR([BDB2 requires --enable-ldbm])
211         fi
212
213         if test $ol_enable_modules != yes -a \
214                 $ol_enable_passwd = no -a \
215                 $ol_enable_perl = no -a \
216                 $ol_enable_shell = no -a \
217                 $ol_enable_tcl = no ; then
218                 AC_MSG_ERROR([slapd requires a backend])
219         fi
220
221         ol_with_ldbm_api=no
222         ol_with_ldbm_type=no
223
224 elif test $ol_enable_bdb2 = yes ; then
225         dnl SLAPD with BDB2
226
227         if test $ol_with_ldbm_api != auto -a \
228                 $ol_with_ldbm_api != db2 ; then
229                 AC_MSG_ERROR([BDB2 requires LDBM API DB2])
230         fi
231
232         ol_with_ldbm_api=db2
233
234 else
235         dnl SLAPD with LDBM
236
237         if test $ol_enable_bdb2 != no ; then
238                 if test $ol_with_ldbm_api != auto -a \
239                         $ol_with_ldbm_api != db2 ; then
240                         AC_MSG_WARN([BDB2 requires LDBM api db2 or auto])
241                         ol_enable_bdb2=no
242                 fi
243         fi
244
245         if test $ol_with_ldbm_api = gdbm -a \
246                 $ol_with_ldbm_type = btree ; then
247                 AC_MSG_ERROR([GDBM only supports LDBM type hash])
248         fi
249         if test $ol_with_ldbm_api = mdbm -a \
250                 $ol_with_ldbm_type = btree ; then
251                 AC_MSG_ERROR([MDBM only supports LDBM type hash])
252         fi
253         if test $ol_with_ldbm_api = ndbm -a \
254                 $ol_with_ldbm_type = btree ; then
255                 AC_MSG_ERROR([NDBM only supports LDBM type hash])
256         fi
257 fi
258
259 if test $ol_enable_slurpd = yes ; then
260         dnl SLURPD was specifically enabled
261         if test $ol_with_threads = no ; then
262                 AC_MSG_ERROR([slurpd requires threads])
263         fi
264 fi
265
266 AC_MSG_RESULT(done)
267
268 ## Initialize vars
269 LDAP_LIBS=
270 LDBM_LIBS=
271 LTHREAD_LIBS=
272 LUTIL_LIBS=
273
274 LDAPD_LIBS=
275 SLAPD_LIBS=
276 SLURPD_LIBS=
277
278 BUILD_LDAPD=no
279 BUILD_SLAPD=no
280 BUILD_SLURPD=no
281
282 BUILD_BDB2=no
283 BUILD_LDAP=no
284 BUILD_LDBM=no
285 BUILD_PASSWD=no
286 BUILD_PERL=no
287 BUILD_SHELL=no
288 BUILD_TCL=no
289 BUILD_THREAD=no
290
291 SLAPD_MODULES_LDFLAGS=
292 SLAPD_MODULES_CPPFLAGS=
293
294 SLAPD_PERL_LDFLAGS=
295 SLAPD_PERL_CPPFLAGS=
296
297 KRB_LIBS=
298 READLINE_LIBS=
299 TERMCAP_LIBS=
300 TLS_LIBS=
301
302 dnl ----------------------------------------------------------------
303 dnl Checks for programs
304
305 dnl AC_PROG_INSTALL
306
307 dnl The default compiler is cc (NOT gcc)
308 CC=${CC-"cc"}
309 dnl The default CFLAGS is empty NOT whatever AC_PROG_CC sets.
310 dnl CFLAGS=${CFLAGS-""}
311
312 AM_PROG_LIBTOOL
313 dnl AC_PROG_MAKE_SET
314
315 AC_PROG_AWK
316 OL_PROG_LN_H
317 AC_PROG_LN_S
318
319 if test "$LN_H" = "cp" -a "$LN_S" = "ln"; then
320         LN_S="$LN_H"
321 fi
322
323 AC_PATH_PROG(SENDMAIL, sendmail, /usr/lib/sendmail,
324         $PATH:/usr/libexec:/usr/lib:/usr/sbin:/usr/etc:/etc)
325 AC_PATH_PROG(EDITOR, vi, /usr/ucb/vi, $PATH:/usr/ucb)
326 AC_PATH_PROG(FINGER, finger, /usr/ucb/finger, $PATH:/usr/ucb)
327
328 ol_link_modules=no
329 if test $ol_enable_modules != no ; then
330         AC_PATH_PROG(GLIBCONFIG, glib-config)
331
332         if test "no$GLIBCONFIG" = "no" ; then
333                 if test $ol_enable_modules = yes ; then
334                         AC_MSG_ERROR([could not locate glib-config])
335                 fi
336
337         else
338                 SLAPD_MODULES_VERSION="`$GLIBCONFIG --version gmodule`"
339                 SLAPD_MODULES_CPPFLAGS="`$GLIBCONFIG --cflags gmodule`"
340                 SLAPD_MODULES_LDFLAGS="`$GLIBCONFIG --libs gmodule`"
341
342                 dnl should check glib version
343                 ol_link_modules=yes
344         fi
345 fi
346
347 ol_link_perl=no
348 if test $ol_enable_perl != no ; then
349         AC_PATH_PROG(PERLBIN, perl, /usr/bin/perl)
350
351         if test "no$PERLBIN" = "no" ; then
352                 if test $ol_enable_perl = yes ; then
353                         AC_MSG_ERROR([could not locate perl])
354                 fi
355
356         else
357                 SLAPD_PERL_LDFLAGS="`$PERLBIN -MExtUtils::Embed -e ldopts|sed -e s/-lc//`"
358                 SLAPD_PERL_CPPFLAGS="`$PERLBIN -MExtUtils::Embed -e ccopts`"
359
360                 dnl should check perl version
361                 ol_link_perl=yes
362         fi
363 fi
364
365 AC_PROG_CPP
366
367 if test $cross_compiling = yes -a $ol_enable_x_compile = yes; then
368         AC_MSG_WARN([cross compiling....  some functionality will be removed.])
369
370 elif test $cross_compiling = no -a $ol_enable_x_compile = yes; then
371         AC_MSG_WARN([programs compiled here do run here...])
372         AC_MSG_ERROR([  if not cross compiling, use --disable-x-compile.])
373
374 elif test $cross_compiling = yes -a $ol_enable_x_compile = no; then
375         AC_MSG_WARN([programs compiled here do not run here...])
376         AC_MSG_ERROR([  if cross compiling,  add --enable-x-compile.])
377 fi
378
379 dnl Checks for UNIX Variants
380 AC_AIX
381 AC_ISC_POSIX
382 AC_MINIX
383
384 dnl BeOS requires -lbe -lroot -lnet
385 AC_CHECK_LIB(be, be_app, [LIBS="$LIBS -lbe -lroot -lnet"], :, [-lroot -lnet])
386
387 dnl Checks for system services
388 AC_CYGWIN
389 AC_MINGW32
390 AC_EXEEXT
391 AC_OBJEXT
392
393 AC_DEFINE_UNQUOTED( EXEEXT, "${EXEEXT}", [defined to be the EXE extension])
394
395 dnl OpenLDAP requires STDC features
396 AM_PROG_CC_STDC
397 if test "X${am_cv_prog_cc_stdc}" = "Xno" ; then
398         AC_MSG_ERROR([OpenLDAP requires compiler to support STDC prototypes.])
399 fi
400
401 dnl AM_C_PROTOTYPES
402
403 dnl Checks for libraries
404
405 dnl Find socket()
406 dnl Likely combinations:
407 dnl             -lsocket [ -lnsl_s | -lnsl ]
408 dnl             -linet
409
410 AC_CHECK_FUNC(socket, :, [      
411 dnl
412 dnl hopefully we won't include too many libraries
413 dnl
414         AC_CHECK_LIB(socket, main)
415         AC_CHECK_LIB(net, main)
416         AC_CHECK_LIB(net, socket)
417         AC_CHECK_LIB(nsl_s, main)
418         AC_CHECK_LIB(nsl, main)
419         AC_CHECK_LIB(inet, socket)
420         AC_CHECK_LIB(gen, main)
421 ])
422
423 dnl Check for resolver routines
424 AC_CHECK_FUNCS(res_search)
425 if test $ac_cv_func_res_search = "no" ; then 
426         AC_CHECK_LIB(bind, res_search)
427         if test "$ac_cv_lib_bind_res_search" = "yes" ; then
428                 AC_DEFINE(HAVE_RES_SEARCH,1)
429         else
430                 AC_CHECK_LIB(resolv, res_search)
431                 if test "$ac_cv_lib_resolv_res_search" = "yes" ; then
432                         AC_DEFINE(HAVE_RES_SEARCH,1)
433                 fi
434         fi
435 fi
436
437 dnl HP-UX requires -lV3
438 AC_CHECK_LIB(V3, sigset)
439
440 AC_CHECK_FUNC(select, :, AC_MSG_ERROR([select() required.]))
441
442 dnl Select arg types
443 dnl (if this detection becomes permenent, it and the select() detection
444 dnl should be done before the yielding select test) 
445 AC_FUNC_SELECT_ARGTYPES
446
447 # ISODE tests
448 ol_link_isode=no
449 if test $ol_enable_ldapd != no ; then
450         dnl look for ISODE libraries
451         AC_CHECK_LIB(xtpp, main, [
452                 ol_link_isode=yes
453                 AC_DEFINE(HAVE_XTPP,1, [define if you have -lxttp])
454                 LDAPD_LIBS="$LDAPD_LIBS -lxtpp -lxtdsap -lxtisode -losi"
455                 ],:,[-lxtdsap -lxtisode -losi])
456         AC_CHECK_LIB(dsap, main, [
457                 ol_link_isode=yes
458                 AC_DEFINE(HAVE_DSAP,1, [define if you have -ldsap])
459                 LDAPD_LIBS="$LDAPD_LIBS -ldsap"
460                 ],:,[-lisode])
461         AC_CHECK_LIB(isode, main, [
462                 ol_link_isode=yes
463                 AC_DEFINE(HAVE_ISODE,1, [define if you have -lisode])
464                 LDAPD_LIBS="$LDAPD_LIBS -lisode"
465                 ],:)
466 fi
467
468 if test $ol_link_isode != no; then
469         AC_CHECK_LIB(pp, main, [
470                 AC_DEFINE(HAVE_PP,1, [define if you have -lpp])
471                 LDAPD_LIBS="-lpp $LDAPD_LIBS"
472                 ],:)
473
474         AC_PATH_PROG(PEPSY, pepsy)
475 fi
476
477 dnl
478 dnl check for kerberos
479 dnl
480 ol_link_kerberos=no
481
482 if test $ol_with_kerberos = auto -o $ol_with_kerberos = k5 ; then
483         AC_CHECK_HEADERS(kerberosIV/krb.h kerberosIV/des.h)
484
485         if test $ac_cv_header_kerberosIV_krb_h = yes ; then
486                 AC_CHECK_LIB(krb4, main, [have_k5=yes], [have_k5=no],
487                         [-lkrb5 -ldes425])
488
489                 if test $have_k5 = yes ; then
490                         ol_with_kerberos=found
491                         ol_link_kerberos=yes
492
493                         KRB_LIBS="-lkrb4 -lkrb5 -ldes425"
494
495                         LIBS="$KRB_LIBS $LIBS"
496
497                         AC_CACHE_CHECK([for des_debug in Kerberos libraries],
498                                 [ol_cv_var_des_debug], [
499                                 dnl save the flags
500                                 save_LIBS="$LIBS"
501                                 LIBS="$KRB_LIBS $LIBS"
502                                 AC_TRY_LINK([
503 #include <kerberosIV/krb.h>
504 #include <kerberosIV/des.h>
505 extern int des_debug;
506 ],[
507 des_debug = 1;
508 ],                              ol_cv_var_des_debug=yes, ol_cv_var_des_debug=no)
509                                 dnl restore the LIBS
510                                 LIBS="$save_LIBS"
511                         ])
512
513                         if test $ol_cv_var_des_debug = yes ; then
514                                 AC_DEFINE(HAVE_DES_DEBUG,1,
515                                         [define if you have Kerberos des_debug])
516                         fi
517
518                         LIBS="$save_LIBS"
519                 fi
520         fi
521 fi
522
523 if test $ol_with_kerberos = auto -o $ol_with_kerberos = k4 ; then
524         AC_CHECK_HEADERS(krb.h des.h)
525
526         if test $ac_cv_header_krb_h = yes ; then
527                 AC_CHECK_LIB(krb, main, [have_k4=yes], [have_k4=no], [-ldes])
528
529                 if test $have_k4 = yes ; then
530                         ol_with_kerberos=found
531                         ol_link_kerberos=yes
532
533                         KRB_LIBS="-lkrb -ldes"
534                 fi
535         fi
536 fi
537
538 if test $ol_link_kerberos = yes ; then
539         AC_DEFINE(HAVE_KERBEROS, 1, [define if you have Kerberos])
540 fi
541
542 dnl
543 dnl Check for SSL/TLS
544 dnl
545 ol_link_tls=no
546 if test $ol_with_tls != no ; then
547         
548         AC_CHECK_HEADERS(ssl.h)
549         
550         if test $ac_cv_header_ssl_h = yes ; then
551                 AC_CHECK_LIB(ssl, SSLeay_add_ssl_algorithms, 
552                         [have_ssleay=yes
553                         need_rsaref=no],
554                         [have_ssleay=no],
555                         [-lcrypto])
556                         
557                 if test $have_ssleay = no ; then
558                         AC_CHECK_LIB(ssl, ssl3_accept, 
559                                 [have_ssleay=yes
560                                 need_rsaref=yes], [have_ssleay=no],
561                                 [-lcrypto -lRSAglue -lrsaref])
562                 fi
563
564                 if test $have_ssleay = yes ; then
565                         ol_with_tls=found
566                         ol_link_tls=yes
567
568                         AC_DEFINE(HAVE_SSLEAY, 1, 
569                                 [define if you have SSLeay or OpenSSL])
570
571                         if test $need_rsaref = yes; then
572                                 AC_DEFINE(HAVE_RSAREF, 1, 
573                                         [define if you have RSAref])
574
575                                 TLS_LIBS="-lssl -lcrypto -lRSAglue -lrsaref"
576                         else
577                                 TLS_LIBS="-lssl -lcrypto"
578                         fi
579                 fi
580         fi
581 fi
582
583 if test $ol_link_tls = yes ; then
584         AC_DEFINE(HAVE_TLS, 1, [define if you have TLS])
585 fi      
586
587 dnl Tests for reentrant functions necessary to build a
588 dnl thread_safe -lldap.
589 AC_CHECK_FUNCS(         \
590         ctime_r                 \
591         gethostbyname_r gethostbyaddr_r \
592 )
593
594 if test "$ac_cv_func_ctime_r" = no ; then
595         ol_cv_func_ctime_r_nargs=0
596 else
597         OL_FUNC_CTIME_R_NARGS
598 dnl     OL_FUNC_CTIME_R_TYPE
599 fi
600
601 if test "$ac_cv_func_gethostbyname_r" = yes ; then
602         OL_FUNC_GETHOSTBYNAME_R_NARGS
603 else
604         ol_cv_func_gethostbyname_r_nargs=0
605 fi
606  
607 if test "$ac_cv_func_gethostbyaddr_r" = yes ; then
608         OL_FUNC_GETHOSTBYADDR_R_NARGS
609 else
610         ol_cv_func_gethostbyaddr_r_nargs=0
611 fi
612
613 if test "$ac_cv_func_ctime_r" = yes \
614         -a "$ol_cv_func_ctime_r_nargs" -ge 2 \
615         -a "$ol_cv_func_ctime_r_nargs" -le 3 \
616         -a "$ac_cv_func_gethostbyname_r" = yes \
617         -a "$ol_cv_func_gethostbyname_r_nargs" -ge 5 \
618         -a "$ol_cv_func_gethostbyname_r_nargs" -le 6 \
619         -a "$ac_cv_func_gethostbyaddr_r" = yes \
620         -a "$ol_cv_func_gethostbyaddr_r_nargs" -ge 5 \
621         -a "$ol_cv_func_gethostbyaddr_r_nargs" -le 6 \
622         ; then
623  
624         AC_DEFINE(LDAP_API_FEATURE_X_OPENLDAP_REENTRANT,1)
625 fi
626
627 ol_link_threads=no
628 if test $ol_with_threads = auto -o $ol_with_threads = yes \
629         -o $ol_with_threads = posix ; then
630
631         AC_CHECK_HEADERS(pthread.h sched.h)
632
633         if test $ac_cv_header_pthread_h = yes ; then
634                 OL_POSIX_THREAD_VERSION
635
636                 if test $ol_cv_pthread_version = final ; then
637                         AC_DEFINE(HAVE_PTHREADS_FINAL,1,
638                                 [define if pthreads API compatible with final spec])
639                 elif test $ol_cv_pthread_version = draft4 ; then
640                         AC_DEFINE(HAVE_PTHREADS_D4,1,
641                                 [define if pthreads API compatible with draft4 spec])
642                 else
643                         AC_MSG_ERROR([unknown pthread version])
644                 fi
645
646                 # consider threads found
647                 ol_with_threads=found
648
649                 OL_HEADER_LINUX_THREADS
650
651                 dnl Now the hard part, how to link?
652                 dnl
653                 dnl currently supported checks:
654                 dnl
655                 dnl Check for no flags 
656                 dnl     pthread_create() in $LIBS
657                 dnl
658                 dnl Check special pthread (final) flags
659                 dnl     pthread_create() with -mt (Solaris)
660                 dnl     pthread_create() with -kthread (FreeBSD)
661                 dnl     pthread_create() with -pthread (FreeBSD/Digital Unix)
662                 dnl     pthread_create() with -pthreads (?)
663                 dnl     pthread_create() with -thread (?)
664                 dnl
665                 dnl Check pthread (final) libraries
666                 dnl     pthread_mutex_unlock() in -lpthread -lmach -lexc -lc_r (OSF/1)
667                 dnl     pthread_mutex_lock() in -lpthread -lmach -lexc (OSF/1)
668                 dnl     (skipped) pthread_mutex_trylock() in -lpthread -lexc (OSF/1)
669                 dnl     pthread_join() -Wl,-woff,85 -lpthread (IRIX)
670                 dnl     pthread_create() in -lpthread (many)
671                 dnl     pthread_create() in -lc_r (FreeBSD)
672                 dnl
673                 dnl Check pthread (draft4) flags (depreciated)
674                 dnl     pthread_create() with -threads (OSF/1)
675                 dnl
676                 dnl Check pthread (draft4) libraries (depreciated)
677                 dnl     pthread_mutex_unlock() in -lpthreads -lmach -lexc -lc_r (OSF/1)
678                 dnl     pthread_mutex_lock() in -lpthreads -lmach -lexc (OSF/1)
679                 dnl     pthread_mutex_trylock() in -lpthreads -lexc (OSF/1)
680                 dnl     pthread_create() in -lpthreads (many)
681                 dnl
682
683                 dnl pthread_create in $LIBS
684                 AC_MSG_CHECKING([for pthread_create in default libraries])
685                 AC_CACHE_VAL(ol_cv_pthread_create,[
686                 AC_TRY_RUN([
687 #include <pthread.h>
688 #ifndef NULL
689 #define NULL (void*)0
690 #endif
691
692 static void *task(p)
693         void *p;
694 {
695         return (void *) (p == NULL);
696 }
697
698 int main(argc, argv)
699         int argc;
700         char **argv;
701 {
702         pthread_t t;
703         int status;
704
705         /* make sure pthread_create() isn't just a stub */
706 #if HAVE_PTHREADS_D4
707         status = pthread_create(&t, pthread_attr_default, task, NULL);
708 #else
709         status = pthread_create(&t, NULL, task, NULL);
710 #endif
711
712         if( status ) return status;
713
714         /* make sure pthread_detach() isn't just a stub */
715 #if HAVE_PTHREADS_D4
716         status = pthread_detach( &t );
717 #else
718         status = pthread_detach( t );
719 #endif
720
721         if( status ) return status;
722
723         return status;
724 }
725 ],
726                         [ol_cv_pthread_create=yes],
727                         [ol_cv_pthread_create=no],
728                         [dnl assume yes
729                         ol_cv_pthread_create=yes])])
730                 AC_MSG_RESULT($ol_cv_pthread_create)
731
732                 if test $ol_cv_pthread_create != no ; then
733                         ol_link_threads=posix
734                         ol_link_pthreads=""
735                 fi
736                 
737                 OL_PTHREAD_TRY_LINK([-mt],              [ol_cv_pthread_mt])
738                 OL_PTHREAD_TRY_LINK([-kthread], [ol_cv_pthread_kthread])
739                 OL_PTHREAD_TRY_LINK([-pthread], [ol_cv_pthread_pthread])
740                 OL_PTHREAD_TRY_LINK([-pthreads],[ol_cv_pthread_pthreads])
741                 OL_PTHREAD_TRY_LINK([-thread],  [ol_cv_pthread_thread])
742
743                 OL_PTHREAD_TRY_LINK([-lpthread -lmach -lexc -lc_r],
744                         [ol_cv_pthread_lpthread_lmach_lexc_lc_r])
745                 OL_PTHREAD_TRY_LINK([-lpthread -lmach -lexc],
746                         [ol_cv_pthread_lpthread_lmach_lexc])
747 dnl             OL_PTHREAD_TRY_LINK([-lpthread -lexc],
748 dnl                     [ol_cv_pthread_lpthread_lexc])
749
750                 OL_PTHREAD_TRY_LINK([-lpthread -Wl,-woff,85],
751                         [ol_cv_pthread_lib_lpthread_woff])
752
753                 OL_PTHREAD_TRY_LINK([-lpthread],[ol_cv_pthread_lpthread])
754                 OL_PTHREAD_TRY_LINK([-lc_r],    [ol_cv_pthread_lc_r])
755
756                 OL_PTHREAD_TRY_LINK([-threads], [ol_cv_pthread_threads])
757
758                 OL_PTHREAD_TRY_LINK([-lpthreads -lmach -lexc -lc_r],
759                         [ol_cv_pthread_lpthreads_lmach_lexc_lc_r])
760                 OL_PTHREAD_TRY_LINK([-lpthreads -lmach -lexc],
761                         [ol_cv_pthread_lpthreads_lmach_lexc])
762                 OL_PTHREAD_TRY_LINK([-lpthreads -lexc],
763                         [ol_cv_pthread_lpthreads_lexc])
764
765                 OL_PTHREAD_TRY_LINK([-lpthreads],       [ol_cv_pthread_lib_lpthreads])
766
767                 if test $ol_link_threads != no ; then
768                         AC_DEFINE(HAVE_PTHREADS,1,
769                                 [define if you have POSIX Threads])
770
771                         LTHREAD_LIBS="$LTHREAD_LIBS $ol_link_pthreads"
772
773                         dnl save flags
774                         save_CPPFLAGS="$CPPFLAGS"
775                         save_LIBS="$LIBS"
776                         LIBS="$LTHREAD_LIBS $LIBS"
777
778                         dnl All POSIX Thread (final) implementations should have
779                         dnl sched_yield instead of pthread yield.
780                         dnl check for both
781                         AC_CHECK_FUNCS(sched_yield pthread_yield)
782
783                         if test $ac_cv_func_sched_yield = no -a \
784                                 $ac_cv_func_pthread_yield = no ; then
785                                 dnl Digital UNIX has sched_yield() in -lrt
786                                 AC_CHECK_LIB(rt, sched_yield,
787                                         [LTHREAD_LIBS="$LTHREAD_LIBS -lrt"
788                                         AC_DEFINE(HAVE_SCHED_YIELD,1)
789                                         ac_cv_func_sched_yield=yes],
790                                         [ac_cv_func_sched_yield=no])
791                         fi
792                         if test $ac_cv_func_sched_yield = no -a \
793                                 $ac_cv_func_pthread_yield = no ; then
794                                 dnl Solaris has sched_yield() stub in -lposix4
795                                 dnl but we'll use thr_yield instead.
796                                 AC_CHECK_FUNCS(thr_yield)
797                         fi
798                         if test $ac_cv_func_sched_yield = no -a \
799                                 $ac_cv_func_pthread_yield = no -a \
800                                 "$ac_cv_func_thr_yield" = no ; then
801                                 AC_MSG_WARN([could not locate sched_yield() or pthread_yield()])
802                         fi
803
804                         dnl Check functions for compatibility
805                         AC_CHECK_FUNCS(pthread_kill)
806
807                         dnl Check for pthread_detach with <pthread.h> inclusion
808                         dnl as it's symbol may have been mangled.
809                         AC_CACHE_CHECK([for pthread_detach with <pthread.h>],
810                                 [ol_cv_func_pthread_detach], [
811                                 dnl save the flags
812                                 AC_TRY_LINK([
813 #include <pthread.h>
814 #ifndef NULL
815 #define NULL (void*)0
816 #endif
817 ],
818                                         [pthread_detach(NULL);],
819                                         [ol_cv_func_pthread_detach=yes],
820                                         [ol_cv_func_pthread_detach=no])
821                         ])
822
823                         if test $ol_cv_func_pthread_detach = no ; then
824                                 AC_MSG_ERROR([could not locate pthread_detach()])
825                         fi
826
827                         AC_DEFINE(HAVE_PTHREAD_DETACH,1,
828                                 [define if you have pthread_detach function])
829
830                         dnl Check for setconcurreny functions
831                         AC_CHECK_FUNCS( \
832                                 pthread_setconcurrency \
833                                 pthread_getconcurrency \
834                                 thr_setconcurrency \
835                                 thr_getconcurrency \
836                         )
837
838                         OL_SYS_LINUX_THREADS
839                         OL_LINUX_THREADS
840
841                         if test $ol_cv_linux_threads = error; then
842                                 AC_MSG_ERROR([LinuxThreads header/library mismatch]);
843                         fi
844
845                         AC_MSG_CHECKING([if pthread_create() works])
846                         AC_CACHE_VAL(ol_cv_pthread_create_works,[
847                         AC_TRY_RUN([
848 #include <pthread.h>
849 #ifndef NULL
850 #define NULL (void*)0
851 #endif
852
853 static void *task(p)
854         void *p;
855 {
856         return (void *) (p == NULL);
857 }
858
859 int main(argc, argv)
860         int argc;
861         char **argv;
862 {
863         pthread_t t;
864 #if HAVE_PTHREADS_D4
865         exit(pthread_create(&t, pthread_attr_default, task, NULL));
866 #else
867         exit(pthread_create(&t, NULL, task, NULL));
868 #endif
869 }
870 ],
871                                 [ol_cv_pthread_create_works=yes],
872                                 [ol_cv_pthread_create_works=no],
873                                 [dnl assume yes
874                                 ol_cv_pthread_create_works=yes])])
875                         AC_MSG_RESULT($ol_cv_pthread_create_works)
876
877                         if test $ol_cv_pthread_create_works = no ; then
878                                 AC_MSG_ERROR([pthread_create is not usable, check environment settings])
879                         fi
880
881                         dnl Check if select causes an yield
882                         if test $ol_with_yielding_select = auto ; then
883                                 AC_MSG_CHECKING([if select yields when using pthreads])
884                                 AC_CACHE_VAL(ol_cv_pthread_select_yields,[
885                                 AC_TRY_RUN([
886 #include <sys/types.h>
887 #include <sys/time.h>
888 #include <unistd.h>
889 #include <pthread.h>
890 #ifndef NULL
891 #define NULL (void*) 0
892 #endif
893
894 static int fildes[2];
895
896 static void *task(p)
897         void *p;
898 {
899         int i;
900         struct timeval tv;
901
902         fd_set rfds;
903
904         tv.tv_sec=10;
905         tv.tv_usec=0;
906
907         FD_ZERO(&rfds);
908         FD_SET(fildes[0], &rfds);
909
910         /* we're not interested in any fds */
911         i = select(FD_SETSIZE, &rfds, NULL, NULL, &tv);
912
913         if(i < 0) {
914                 perror("select");
915                 exit(10);
916         }
917
918         exit(0); /* if we exit here, the select blocked the whole process */
919 }
920
921 int main(argc, argv)
922         int argc;
923         char **argv;
924 {
925         pthread_t t;
926
927         /* create a pipe to select */
928         if(pipe(&fildes[0])) {
929                 perror("select");
930                 exit(1);
931         }
932
933 #ifdef HAVE_PTHREAD_SETCONCURRENCY
934         (void) pthread_setconcurrency(2);
935 #else
936 #ifdef HAVE_THR_SETCONCURRENCY
937         /* Set Solaris LWP concurrency to 2 */
938         thr_setconcurrency(2);
939 #endif
940 #endif
941
942 #if HAVE_PTHREADS_D4
943         pthread_create(&t, pthread_attr_default, task, NULL);
944 #else
945         pthread_create(&t, NULL, task, NULL);
946 #endif
947
948 #if HAVE_SCHED_YIELD
949         sched_yield();  /* make sure task runs first */
950 #else
951 #ifdef HAVE_PTHREAD_YIELD
952         pthread_yield();        /* make sure task runs first */
953 #endif
954 #endif
955
956         exit(2);
957 }],
958                                 [ol_cv_pthread_select_yields=no],
959                                 [ol_cv_pthread_select_yields=yes], [
960                                 AC_MSG_ERROR([crossing compiling: use --with-yielding_select=yes|no|manual])])])
961                                 AC_MSG_RESULT($ol_cv_pthread_select_yields)
962
963                                 if test $ol_cv_pthread_select_yields = yes ; then
964                                         ol_with_yielding_select=yes
965                                 fi
966                         fi
967
968                         dnl restore flags
969                         CPPFLAGS="$save_CPPFLAGS"
970                         LIBS="$save_LIBS"
971                 else
972                         AC_MSG_ERROR([could not link with POSIX Threads])
973                 fi
974         fi
975
976         if test $ol_with_threads = posix ; then
977                 AC_MSG_ERROR([could not locate POSIX Threads])
978         fi
979 fi
980
981 if test $ol_with_threads = auto -o $ol_with_threads = yes \
982         -o $ol_with_threads = mach ; then
983
984         dnl check for Mach CThreads
985         AC_CHECK_HEADERS(mach/cthreads.h)
986         if test $ac_cv_header_mach_cthreads_h = yes ; then
987                 ol_with_threads=found
988
989                 dnl check for cthread support in current $LIBS
990                 AC_CHECK_FUNC(cthread_fork,[ol_link_threads=yes])
991
992                 if test $ol_link_threads = no ; then
993                         dnl try -all_load
994                         dnl this test needs work
995                         AC_CACHE_CHECK([for cthread_fork with -all_load],
996                                 [ol_cv_cthread_all_load], [
997                                 dnl save the flags
998                                 save_LIBS="$LIBS"
999                                 LIBS="-all_load $LIBS"
1000                                 AC_TRY_LINK([#include <mach/cthreads.h>],[
1001                                         cthread_fork((void *)0, (void *)0);
1002                                         ], ol_cv_cthread_all_load=yes, ol_cv_cthread_all_load=no)
1003                                 dnl restore the LIBS
1004                                 LIBS="$save_LIBS"
1005                         ])
1006
1007                         if test $ol_cv_cthread_all_load = yes ; then
1008                                 LTHREAD_LIBS="$LTHREAD_LIBS -all_load"
1009                                 ol_link_threads=mach
1010                         fi
1011                 fi
1012
1013                 if test $ol_link_threads != no ; then
1014                         : check for cthread specific functionality here
1015                         AC_DEFINE(HAVE_MACH_CTHREADS,1,
1016                                 [define if you have Mach Cthreads])
1017                 else
1018                         AC_MSG_ERROR([could not link with Mach CThreads])
1019                 fi
1020         fi
1021
1022         if test $ol_with_threads = mach ; then
1023                 AC_MSG_ERROR([could not locate Mach CThreads])
1024         fi
1025 fi
1026
1027 if test $ol_with_threads = auto -o $ol_with_threads = yes \
1028         -o $ol_with_threads = lwp ; then
1029
1030         dnl check for SunOS5 LWP
1031         AC_CHECK_HEADERS(thread.h synch.h)
1032         if test $ac_cv_header_thread_h = yes -a $ac_cv_header_synch_h = yes ; then
1033                 AC_CHECK_LIB(thread, thr_create, [have_thr=yes], [have_thr=no])
1034
1035                 if test $have_thr = yes ; then
1036                         AC_DEFINE(HAVE_THR,1,
1037                                 [if you have Solaris LWP (thr) package])
1038                         LTHREAD_LIBS="$LTHREAD_LIBS -lthread"
1039                         ol_link_threads=thr
1040
1041                         if test $ol_with_yielding_select = auto ; then
1042                                 ol_with_yielding_select=yes
1043                         fi
1044
1045                         dnl Check for setconcurreny functions
1046                         AC_CHECK_FUNCS( \
1047                                 thr_setconcurrency \
1048                                 thr_getconcurrency \
1049                         )
1050                 fi
1051         fi
1052
1053         dnl check for SunOS4 LWP
1054         AC_CHECK_HEADERS(lwp/lwp.h)
1055         if test $ac_cv_header_lwp_lwp_h = yes ; then
1056                 AC_CHECK_LIB(lwp, lwp_create, [have_lwp=yes], [have_lwp=no])
1057
1058                 if test $have_lwp = yes ; then
1059                         AC_DEFINE(HAVE_LWP,1,
1060                                 [if you have SunOS LWP package])
1061                         LTHREAD_LIBS="$LTHREAD_LIBS -llwp"
1062                         ol_link_threads=lwp
1063
1064                         if test $ol_with_yielding_select = auto ; then
1065                                 ol_with_yielding_select=no
1066                         fi
1067                 fi
1068         fi
1069 fi
1070
1071 if test $ol_with_yielding_select = yes ; then
1072         AC_DEFINE(HAVE_YIELDING_SELECT,1,
1073                 [define if select implicitly yields])
1074 fi
1075
1076 if test $ol_with_threads = manual ; then
1077         dnl User thinks he can manually configure threads.
1078         ol_link_threads=yes
1079
1080         AC_MSG_WARN([thread defines and link options must be set manually])
1081
1082         AC_CHECK_HEADERS(pthread.h sched.h)
1083         AC_CHECK_FUNCS(sched_yield pthread_yield)
1084         OL_HEADER_LINUX_THREADS
1085
1086         AC_CHECK_HEADERS(mach/cthreads.h)
1087         AC_CHECK_HEADERS(lwp/lwp.h)
1088         AC_CHECK_HEADERS(thread.h synch.h)
1089 fi
1090
1091 if test $ol_link_threads != no ; then  
1092         dnl needed to get reentrant/threadsafe versions
1093         dnl
1094         AC_DEFINE(REENTRANT,1)
1095         AC_DEFINE(_REENTRANT,1)
1096         AC_DEFINE(THREAD_SAFE,1)
1097         AC_DEFINE(_THREAD_SAFE,1)
1098         AC_DEFINE(THREADSAFE,1)
1099         AC_DEFINE(_THREADSAFE,1)
1100
1101         dnl The errno declaration may dependent upon _REENTRANT.
1102         dnl If it does, we must link with thread support.
1103         AC_CACHE_CHECK([for thread specific errno],
1104                 [ol_cv_errno_thread_specific], [
1105                 AC_TRY_LINK([#include <errno.h>], [errno = 0;],
1106                         [ol_cv_errno_thread_specific=yes],
1107                         [ol_cv_errno_thread_specific=no])
1108         ])
1109
1110         if test $ol_cv_errno_thread_specific != yes ; then
1111                 LIBS="$LTHREAD_LIBS $LIBS"
1112                 LTHREAD_LIBS=""
1113         fi
1114
1115 dnl When in thread environment, use 
1116 dnl             #if defined( HAVE_REENTRANT_FUNCTIONS ) \ 
1117 dnl                     || defined( HAVE_FUNC_R )
1118 dnl                     func_r(...);
1119 dnl             #else
1120 dnl             #       if defined( HAVE_THREADS ) 
1121 dnl                             /* lock */
1122 dnl             #       endif
1123 dnl                             func(...);
1124 dnl             #       if defined( HAVE_THREADS ) 
1125 dnl                             /* unlock */
1126 dnl             #       endif
1127 dnl             #endif
1128 dnl
1129 dnl HAVE_REENTRANT_FUNCTIONS is derived from:
1130 dnl             _POSIX_REENTRANT_FUNCTIONS
1131 dnl             _POSIX_THREAD_SAFE_FUNCTIONS
1132 dnl             _POSIX_THREADSAFE_FUNCTIONS
1133 dnl
1134 dnl             and is currently defined in lthread.h
1135 dnl
1136 dnl HAVE_THREADS is defined by lthread.h iff -UNO_THREADS
1137 dnl 
1138 dnl libldap/*.c should only include <lthread.h> iff
1139 dnl LDAP_R_COMPILE is defined.  ie:
1140 dnl             #ifdef LDAP_R_COMPILE
1141 dnl             #       include LDAP_R_COMPILE
1142 dnl             #endif
1143 dnl
1144 dnl LDAP_R_COMPILE is defined by libldap_r/Makefile.in
1145 dnl specifically for compiling the threadsafe version of
1146 dnl     the ldap library (-lldap_r).
1147 dnl             
1148 dnl     dnl check for reentrant/threadsafe functions
1149 dnl     dnl
1150 dnl     dnl note: these should only be used when linking
1151 dnl     dnl       with $LTHREAD_LIBS
1152 dnl     dnl
1153 dnl     save_CPPFLAGS="$CPPFLAGS"
1154 dnl     save_LIBS="$LIBS"
1155 dnl     LIBS="$LTHREAD_LIBS $LIBS"
1156 dnl     AC_CHECK_FUNCS( \
1157 dnl             gmtime_r \
1158 dnl             gethostbyaddr_r gethostbyname_r \
1159 dnl             feof_unlocked unlocked_feof \
1160 dnl             putc_unlocked unlocked_putc \
1161 dnl             flockfile ftrylockfile \
1162 dnl     )
1163 dnl     CPPFLAGS="$save_CPPFLAGS"
1164 dnl     LIBS="$save_LIBS"
1165 fi  
1166
1167 if test $ol_link_threads = no ; then
1168         if test $ol_with_threads = yes ; then
1169                 AC_MSG_ERROR([no suitable thread support])
1170         fi
1171
1172         if test $ol_with_threads = auto ; then
1173                 AC_MSG_WARN([no suitable thread support, disabling threads])
1174                 ol_with_threads=no
1175         fi
1176
1177         AC_DEFINE(NO_THREADS,1,
1178                 [define if you have (or want) no threads])
1179         LTHREAD_LIBS=""
1180 fi
1181
1182 if test $ol_link_threads != no ; then
1183         AC_DEFINE(LDAP_API_FEATURE_X_OPENLDAP_THREAD_SAFE,1)
1184 fi
1185
1186 dnl ----------------------------------------------------------------
1187
1188 ol_link_ldbm=no 
1189 if test $ol_with_ldbm_api = auto -o $ol_with_ldbm_api = db2 ; then
1190         OL_BERKELEY_DB2
1191
1192         if test $ol_cv_berkeley_db2 = yes ; then
1193                 ol_link_ldbm=db2
1194                 ol_with_ldbm_api=db2
1195
1196                 if test $ol_with_ldbm_type = hash ; then
1197                         AC_DEFINE(LDBM_USE_DBHASH,1)
1198                 else
1199                         AC_DEFINE(LDBM_USE_DBBTREE,1)
1200                 fi
1201
1202                 dnl $ol_cv_lib_db2 should be yes or -ldb
1203                 dnl (it could be no, but that would be an error
1204                 if test $ol_cv_lib_db2 != yes ; then
1205                         LDBM_LIBS="$LDBM_LIBS $ol_cv_lib_db2"
1206                 fi
1207         fi
1208 fi
1209
1210 ol_link_bdb2=no
1211 if test $ol_link_ldbm = db2 -a $ol_enable_bdb2 != no ; then
1212         ol_link_bdb2=yes
1213 fi
1214
1215 if test $ol_with_ldbm_api = auto -o $ol_with_ldbm_api = db ; then
1216         OL_BERKELEY_DB
1217
1218         if test $ol_cv_berkeley_db = yes ; then
1219                 ol_link_ldbm=db
1220                 ol_with_ldbm_api=db
1221
1222                 if test $ol_with_ldbm_type = hash ; then
1223                         AC_DEFINE(LDBM_USE_DBHASH,1)
1224                 else
1225                         AC_DEFINE(LDBM_USE_DBBTREE,1)
1226                 fi
1227
1228                 dnl $ol_cv_lib_db should be yes or -ldb
1229                 dnl (it could be no, but that would be an error
1230                 if test $ol_cv_lib_db != yes ; then
1231                         LDBM_LIBS="$LDBM_LIBS $ol_cv_lib_db"
1232                 fi
1233         fi
1234 fi
1235
1236 if test $ol_with_ldbm_api = manual ; then
1237         dnl User thinks he can manually configure LDBM api.
1238         ol_link_ldbm=yes
1239
1240         AC_MSG_WARN([LDBM defines and link options must be set manually])
1241
1242         AC_CHECK_HEADERS(db.h db_185.h gdbm.h ndbm.h)
1243 fi
1244
1245 if test $ol_link_ldbm = no -a $ol_with_ldbm_type = btree ; then
1246         AC_MSG_WARN(Could not find LDBM with BTREE support)
1247         ol_with_ldbm_api=none
1248 fi
1249
1250 if test $ol_with_ldbm_api = auto -o $ol_with_ldbm_api = mdbm ; then
1251         OL_MDBM
1252
1253         if test $ol_cv_mdbm = yes ; then
1254                 ol_link_ldbm=mdbm
1255                 ol_with_ldbm_api=mdbm
1256                 if test $ol_cv_lib_mdbm != yes ; then
1257                         LDBM_LIBS="$LDBM_LIBS $ol_cv_lib_mdbm"
1258                 fi
1259         fi
1260 fi
1261
1262 if test $ol_with_ldbm_api = auto -o $ol_with_ldbm_api = gdbm ; then
1263         OL_GDBM
1264
1265         if test $ol_cv_gdbm = yes ; then
1266                 ol_link_ldbm=gdbm
1267                 ol_with_ldbm_api=gdbm
1268
1269                 if test $ol_cv_lib_gdbm != yes ; then
1270                         LDBM_LIBS="$LDBM_LIBS $ol_cv_lib_gdbm"
1271                 fi
1272         fi
1273 fi
1274
1275 if test $ol_with_ldbm_api = auto ; then
1276         AC_MSG_WARN([skipping automatic checking for NDBM, must be manually enabled.])
1277 elif test $ol_with_ldbm_api = ndbm ; then
1278         OL_NDBM
1279
1280         if test $ol_cv_ndbm = yes ; then
1281                 ol_link_ldbm=ndbm
1282                 ol_with_ldbm_api=ndbm
1283
1284                 if test $ol_cv_lib_ndbm != yes ; then
1285                         LDBM_LIBS="$LDBM_LIBS $ol_cv_lib_ndbm"
1286                 fi
1287         fi
1288 fi
1289
1290 if test $ol_link_ldbm = no -a $ol_enable_ldbm != no ; then
1291         AC_MSG_WARN(could not find suitable LDBM backend)
1292         if test $ol_enable_ldbm = yes ; then
1293                 AC_MSG_ERROR(select appropriate LDBM options or disable)
1294         fi
1295
1296         AC_MSG_WARN(disabling LDBM)
1297         ol_enable_ldbm=no
1298 fi
1299
1300 if test $ol_enable_wrappers != no ; then
1301         AC_CHECK_HEADERS(tcpd.h)
1302
1303         if test $ac_cv_header_tcpd_h != yes ; then
1304                 have_wrappers=no
1305         else
1306                 AC_CHECK_LIB(wrap, main,
1307                         [have_wrappers=yes], [have_wrappers=no])
1308         fi
1309
1310         if test $have_wrappers = yes ; then
1311                 AC_DEFINE(HAVE_TCPD,1, [define if you have -lwrap])
1312                 SLAPD_LIBS="$SLAPD_LIBS -lwrap"
1313
1314                 dnl We add another check for -lnsl since some libwrap's
1315                 dnl need it, but it isn't always included from above
1316                 AC_CHECK_LIB(nsl, main)
1317         else
1318                 AC_MSG_WARN(could not find -lwrap)
1319                 if test $ol_enable_wrappers = yes ; then
1320                         AC_MSG_ERROR(could not find wrappers, select appropriate options or disable)
1321                 fi
1322
1323                 AC_MSG_WARN(disabling wrappers support)
1324                 ol_enable_wrappers=no
1325         fi
1326 fi
1327
1328 if test $ol_enable_syslog != no ; then
1329         AC_CHECK_FUNC(openlog)
1330         if test $ac_cv_func_openlog = no -a $ol_enable_syslog = yes; then
1331                 AC_MSG_ERROR(could not find syslog, select appropriate options or disable)
1332         fi
1333         ol_enable_syslog=$ac_cv_func_openlog
1334 fi
1335
1336 if test $ol_enable_dmalloc != no ; then
1337         AC_CHECK_HEADERS(dmalloc.h)
1338         AC_CHECK_LIB(dmalloc, dmalloc_shutdown)
1339 fi
1340
1341 if test $ol_enable_tcl != no ; then
1342         AC_CHECK_HEADERS(tcl.h)
1343
1344         if test $ac_cv_header_tcl_h != yes ; then
1345                 have_tcl=no
1346         else
1347                 AC_CHECK_LIB(tcl,main,
1348                         [have_tcl=yes; SLAPD_LIBS="$SLAPD_LIBS -ltcl"],
1349                         [have_tcl=no])
1350
1351                 if test $have_tcl != yes; then
1352                         AC_CHECK_LIB(tcl7.6,main,
1353                                 [have_tcl=yes; SLAPD_LIBS="$SLAPD_LIBS -ltcl7.6"],
1354                                 [have_tcl=no])
1355                 fi
1356
1357                 if test $have_tcl != yes; then
1358                         AC_CHECK_LIB(tcl8.0,main,
1359                                 [have_tcl=yes; SLAPD_LIBS="$SLAPD_LIBS -ltcl8.0"],
1360                                 [have_tcl=no])
1361                 fi
1362         fi
1363
1364         if test $have_tcl != yes ; then
1365                 AC_MSG_WARN([could not find -ltcl])
1366                 if test $ol_enable_tcl = yes ; then
1367                         AC_MSG_ERROR([could not find tcl, select appropriate options or disable])
1368                 fi
1369
1370                 ol_enable_tcl=no
1371         fi
1372 fi
1373
1374 # ud needs termcap (should insert check here)
1375 ol_link_termcap=no
1376 AC_CHECK_HEADERS(termcap.h ncurses.h)
1377
1378 if test $ol_link_termcap = no ; then
1379         AC_CHECK_LIB(termcap, tputs, [have_termcap=yes], [have_termcap=no])
1380         if test $have_termcap = yes ; then
1381                 AC_DEFINE(HAVE_TERMCAP, 1, [define if you have -ltermcap])
1382                 ol_link_termcap=yes
1383                 TERMCAP_LIBS=-ltermcap
1384         fi
1385 fi
1386
1387 if test $ol_link_termcap = no ; then
1388         AC_CHECK_LIB(ncurses, initscr, [have_ncurses=yes], [have_ncurses=no])
1389         if test $have_ncurses = yes ; then
1390                 AC_DEFINE(HAVE_NCURSES, 1, [define if you have -lncurses])
1391                 ol_link_termcap=yes
1392                 TERMCAP_LIBS=-lncurses
1393         fi
1394 fi
1395
1396 if test $ol_link_termcap = no ; then
1397         AC_DEFINE(NO_TERMCAP,1, [define if you have no termcap support])
1398         TERMCAP_LIBS=
1399 fi
1400
1401 dnl
1402 dnl Check for GNU readline
1403 dnl
1404 ol_link_readline=no
1405 if test $ol_with_readline != no ; then
1406         AC_CHECK_HEADERS(readline/readline.h readline/history.h)
1407
1408         if test $ac_cv_header_readline_readline_h = yes ; then
1409                 save_LIBS="$LIBS"
1410                 LIBS="$TERMCAP_LIBS $LIBS"
1411                 AC_CHECK_LIB(readline, readline, 
1412                         [have_readline=yes], [have_readline=no])
1413                 LIBS="$save_LIBS"
1414                         
1415                 if test $have_readline = yes ; then
1416                         ol_with_readline=found
1417                         ol_link_readline=yes
1418
1419                         READLINE_LIBS="-lreadline"
1420                 fi
1421         fi
1422 fi
1423
1424 if test $ol_link_readline = yes ; then
1425         AC_DEFINE(HAVE_READLINE, 1, [define if you have -lreadline])
1426 fi
1427
1428
1429 # FreeBSD (and others) have crypt(3) in -lcrypt
1430 if test $ol_enable_crypt != no ; then
1431         AC_CHECK_FUNC(crypt, [have_crypt=yes], [
1432                 AC_CHECK_LIB(crypt, crypt, [LUTIL_LIBS="$LUTIL_LIBS -lcrypt"
1433                         have_crypt=yes], [have_crypt=no])])
1434
1435         if test $have_crypt = yes ; then
1436                 AC_DEFINE(HAVE_CRYPT,1)
1437         else
1438                 AC_MSG_WARN(could not find crypt)
1439                 if test $ol_enable_crypt = yes ; then
1440                         AC_MSG_ERROR(could not find crypt, select appropriate options or disable)
1441                 fi
1442
1443                 AC_MSG_WARN(disabling crypt support)
1444                 ol_enable_crypt=no
1445         fi
1446 fi
1447
1448 # FreeBSD (and others) have setproctitle(3) in -lutil
1449 if test $ol_enable_proctitle != no ; then
1450         AC_CHECK_FUNC(setproctitle,     [have_setproctitle=yes], [
1451                 AC_CHECK_LIB(util, setproctitle,
1452                         [have_setproctitle=yes
1453                         LUTIL_LIBS="$LUTIL_LIBS -lutil"],
1454                         [have_setproctitle=no
1455                         LIBOBJS="$LIBOBJS setproctitle.o"])])
1456
1457         if test $have_setproctitle = yes ; then
1458                 AC_DEFINE(HAVE_SETPROCTITLE,1)
1459         fi
1460 fi
1461
1462 dnl ----------------------------------------------------------------
1463 dnl Checks for header files.
1464 OL_HEADER_STDC
1465
1466 if test $ol_cv_header_stdc != yes; then
1467         AC_MSG_WARN([could not locate Standard C compliant headers])
1468 fi
1469
1470 AC_HEADER_DIRENT
1471 AC_HEADER_SYS_WAIT
1472 AM_HEADER_TIOCGWINSZ_NEEDS_SYS_IOCTL
1473 if test $am_cv_sys_posix_termios = yes ; then
1474         AC_DEFINE(HAVE_POSIX_TERMIOS,1,
1475                 [define if you have POSIX termios])
1476 fi
1477
1478 AC_CHECK_HEADERS(       \
1479         arpa/inet.h             \
1480         arpa/nameser.h  \
1481         assert.h                \
1482         crypt.h                 \
1483         errno.h                 \
1484         fcntl.h                 \
1485         filio.h                 \
1486         getopt.h                \
1487         grp.h                   \
1488         libutil.h               \
1489         limits.h                \
1490         locale.h                \
1491         malloc.h                \
1492         memory.h                \
1493         regex.h                 \
1494         psap.h                  \
1495         pwd.h                   \
1496         resolv.h                \
1497         sgtty.h                 \
1498         stdarg.h                \
1499         stddef.h                \
1500         string.h                \
1501         strings.h               \
1502         sysexits.h              \
1503         sys/file.h              \
1504         sys/filio.h             \
1505         sys/errno.h             \
1506         sys/ioctl.h             \
1507         sys/param.h             \
1508         sys/resource.h  \
1509         sys/select.h    \
1510         sys/socket.h    \
1511         sys/syslog.h    \
1512         sys/time.h              \
1513         sys/types.h             \
1514         syslog.h                \
1515         termios.h               \
1516         unistd.h                \
1517 )
1518
1519 dnl ----------------------------------------------------------------
1520 dnl Checks for typedefs, structures, and compiler characteristics.
1521 AC_TYPE_GETGROUPS dnl requires AC_TYPE_UID_T
1522 AC_TYPE_MODE_T
1523 AC_TYPE_OFF_T
1524 AC_TYPE_PID_T
1525 AM_TYPE_PTRDIFF_T
1526 AC_TYPE_SIGNAL
1527 OL_TYPE_SIG_ATOMIC_T
1528 AC_TYPE_SIZE_T
1529 AC_STRUCT_ST_BLKSIZE
1530 AC_HEADER_TIME
1531 AC_STRUCT_TM
1532 OL_STRUCT_PASSWD_PW_GECOS
1533
1534 OL_C_UPPER_LOWER
1535 AC_C_CONST
1536 OL_C_VOLATILE
1537
1538 if test $cross_compiling = yes ; then
1539         AC_DEFINE(CROSS_COMPILING, 1, [define if cross compiling])
1540 else
1541         AC_C_BIGENDIAN
1542         AC_CHECK_SIZEOF(short) 
1543         AC_CHECK_SIZEOF(int) 
1544         AC_CHECK_SIZEOF(long)
1545 fi
1546
1547 dnl ----------------------------------------------------------------
1548 dnl Checks for library functions.
1549 AC_FUNC_MEMCMP
1550 dnl AM_FUNC_MKTIME dnl checks for sys/time.h and unistd.h
1551 AC_FUNC_STRFTIME
1552 dnl AM_FUNC_STRTOD
1553
1554 dnl we should use vfork instead of fork in a number of places...
1555 dnl AC_FUNC_VFORK
1556 AC_FUNC_VPRINTF
1557
1558 if test $ac_cv_func_vprintf = yes ; then
1559         dnl check for vsnprintf
1560         AC_CHECK_FUNCS(vsnprintf vsprintf)
1561 fi
1562
1563 AC_CHECK_FUNCS(         \
1564         bcopy                   \
1565         endgrent                \
1566         endpwent                \
1567         flock                   \
1568         getdtablesize   \
1569         getgrgid                \
1570         gethostname             \
1571         getpass                 \
1572         getpwuid                \
1573         gettimeofday    \
1574         initgroups              \
1575         lockf                   \
1576         memcpy                  \
1577         memmove                 \
1578         mkstemp                 \
1579         recv                    \
1580         recvfrom                \
1581         setpwfile               \
1582         setgid                  \
1583         setegid                 \
1584         setsid                  \
1585         setuid                  \
1586         seteuid                 \
1587         signal                  \
1588         sigset                  \
1589         snprintf                \
1590         strdup                  \
1591         strerror                \
1592         strpbrk                 \
1593         strrchr                 \
1594         strsep                  \
1595         strstr                  \
1596         strtol                  \
1597         strtoul                 \
1598         strspn                  \
1599         sysconf                 \
1600         waitpid                 \
1601         wait4                   \
1602 )
1603
1604 dnl We actually may need to replace more than this.
1605 AC_REPLACE_FUNCS(getopt tempnam)
1606
1607 dnl ----------------------------------------------------------------
1608 # Check Configuration
1609 OL_SYS_ERRLIST
1610
1611 dnl ----------------------------------------------------------------
1612 dnl Sort out defines
1613
1614 if test "$ol_enable_debug" != no ; then
1615         AC_DEFINE(LDAP_DEBUG,1)
1616 fi
1617 if test "$ol_enable_syslog" = yes ; then
1618         AC_DEFINE(LDAP_SYSLOG,1)
1619 fi
1620 if test "$ol_enable_libui" = yes ; then
1621         AC_DEFINE(LDAP_LIBUI,1)
1622 fi
1623 if test "$ol_enable_cache" = no ; then
1624         AC_DEFINE(LDAP_NOCACHE,1)
1625 fi
1626 if test "$ol_enable_dns" != no ; then
1627         AC_DEFINE(LDAP_API_FEATURE_X_OPENLDAP_V2_DNS,LDAP_VENDOR_VERSION)
1628 fi
1629 if test "$ol_enable_proctitle" != no ; then
1630         AC_DEFINE(LDAP_PROCTITLE,1)
1631 fi
1632 if test "$ol_enable_referrals" != no ; then
1633         AC_DEFINE(LDAP_API_FEATURE_X_OPENLDAP_V2_REFERRALS,LDAP_VENDOR_VERSION)
1634 fi
1635 if test "$ol_enable_cldap" != no ; then
1636         AC_DEFINE(LDAP_CONNECTIONLESS,1)
1637 fi
1638
1639 if test "$ol_enable_aclgroups" != no ; then
1640         AC_DEFINE(SLAPD_ACLGROUPS,1)
1641 fi
1642 if test "$ol_enable_crypt" != no ; then
1643         AC_DEFINE(SLAPD_CRYPT,1)
1644 fi
1645 if test "$ol_enable_cleartext" != no ; then
1646         AC_DEFINE(SLAPD_CLEARTEXT,1)
1647 fi
1648 if test "$ol_enable_phonetic" != no ; then
1649         AC_DEFINE(SLAPD_PHONETIC,1)
1650 fi
1651 if test "$ol_enable_rlookups" != no ; then
1652         AC_DEFINE(SLAPD_RLOOKUPS,1)
1653 fi
1654
1655 if test "$ol_link_modules" != no ; then
1656         AC_DEFINE(SLAPD_MODULES,1)
1657         BUILD_SLAPD=yes
1658 fi
1659
1660 if test "$ol_link_bdb2" != no ; then
1661         AC_DEFINE(SLAPD_BDB2,1)
1662         BUILD_SLAPD=yes
1663         BUILD_BDB2=yes
1664 fi
1665
1666 if test "$ol_link_ldap" != no ; then
1667         AC_DEFINE(SLAPD_LDAP,1)
1668         BUILD_SLAPD=yes
1669         BUILD_LDAP=yes
1670 fi
1671
1672 if test "$ol_link_ldbm" != no ; then
1673         AC_DEFINE(SLAPD_LDBM,1)
1674         BUILD_SLAPD=yes
1675         BUILD_LDBM=yes
1676 fi
1677
1678 if test "$ol_enable_passwd" != no ; then
1679         AC_DEFINE(SLAPD_PASSWD,1)
1680         BUILD_SLAPD=yes
1681         BUILD_PASSWD=yes
1682 fi
1683
1684 if test "$ol_link_perl" != no ; then
1685         AC_DEFINE(SLAPD_PERL,1)
1686         BUILD_SLAPD=yes
1687         BUILD_PERL=yes
1688 fi
1689
1690 if test "$ol_enable_shell" != no ; then
1691         AC_DEFINE(SLAPD_SHELL,1)
1692         BUILD_SLAPD=yes
1693         BUILD_SHELL=yes
1694 fi
1695
1696 if test "$ol_enable_tcl" != no ; then
1697         AC_DEFINE(SLAPD_TCL,1)
1698         BUILD_SLAPD=yes
1699         BUILD_TCL=yes
1700 fi
1701
1702 if test "$ol_enable_slurpd" != no -a "$ol_link_threads" != no -a \
1703         $BUILD_SLAPD = yes ; then
1704         BUILD_SLURPD=yes
1705 fi
1706
1707 if test "$ol_link_isode" != no ; then
1708         BUILD_LDAPD=yes
1709 fi
1710
1711 dnl ----------------------------------------------------------------
1712
1713 AC_SUBST(BUILD_LDAPD)
1714 AC_SUBST(BUILD_SLAPD)
1715   AC_SUBST(BUILD_BDB2)
1716   AC_SUBST(BUILD_LDAP)
1717   AC_SUBST(BUILD_LDBM)
1718   AC_SUBST(BUILD_PASSWD)
1719   AC_SUBST(BUILD_PERL)
1720   AC_SUBST(BUILD_SHELL)
1721   AC_SUBST(BUILD_TCL)
1722 AC_SUBST(BUILD_SLURPD)
1723
1724 AC_SUBST(LDAP_LIBS)
1725 AC_SUBST(LDAPD_LIBS)
1726 AC_SUBST(SLAPD_LIBS)
1727 AC_SUBST(SLURPD_LIBS)
1728 AC_SUBST(LDBM_LIBS)
1729 AC_SUBST(LTHREAD_LIBS)
1730 AC_SUBST(LUTIL_LIBS)
1731
1732 AC_SUBST(SLAPD_MODULES_CPPFLAGS)
1733 AC_SUBST(SLAPD_MODULES_LDFLAGS)
1734
1735 AC_SUBST(SLAPD_PERL_CPPFLAGS)
1736 AC_SUBST(SLAPD_PERL_LDFLAGS)
1737
1738 AC_SUBST(KRB_LIBS)
1739 AC_SUBST(READLINE_LIBS)
1740 AC_SUBST(TERMCAP_LIBS)
1741 AC_SUBST(TLS_LIBS)
1742
1743 dnl ----------------------------------------------------------------
1744 dnl final output
1745 dnl
1746
1747 AC_OUTPUT( \
1748 Makefile:build/top.mk:Makefile.in:build/dir.mk \
1749 doc/Makefile:build/top.mk:doc/Makefile.in:build/dir.mk \
1750 doc/man/Makefile:build/top.mk:doc/man/Makefile.in:build/dir.mk \
1751 doc/man/man1/Makefile:build/top.mk:doc/man/man1/Makefile.in:build/man.mk \
1752 doc/man/man3/Makefile:build/top.mk:doc/man/man3/Makefile.in:build/man.mk \
1753 doc/man/man5/Makefile:build/top.mk:doc/man/man5/Makefile.in:build/man.mk \
1754 doc/man/man8/Makefile:build/top.mk:doc/man/man8/Makefile.in:build/man.mk \
1755 clients/Makefile:build/top.mk:clients/Makefile.in:build/dir.mk \
1756 clients/finger/Makefile:build/top.mk:clients/finger/Makefile.in:build/rules.mk \
1757 clients/fax500/Makefile:build/top.mk:clients/fax500/Makefile.in:build/rules.mk \
1758 clients/gopher/Makefile:build/top.mk:clients/gopher/Makefile.in:build/rules.mk \
1759 clients/mail500/Makefile:build/top.mk:clients/mail500/Makefile.in:build/rules.mk \
1760 clients/rcpt500/Makefile:build/top.mk:clients/rcpt500/Makefile.in:build/rules.mk \
1761 clients/ud/Makefile:build/top.mk:clients/ud/Makefile.in:build/rules.mk \
1762 clients/tools/Makefile:build/top.mk:clients/tools/Makefile.in:build/rules.mk \
1763 include/Makefile:build/top.mk:include/Makefile.in \
1764 libraries/Makefile:build/top.mk:libraries/Makefile.in:build/dir.mk      \
1765 libraries/libavl/Makefile:build/top.mk:libraries/libavl/Makefile.in:build/lib.mk:build/lib-static.mk    \
1766 libraries/liblber/Makefile:build/top.mk:libraries/liblber/Makefile.in:build/lib.mk:build/lib-shared.mk  \
1767 libraries/libldap/Makefile:build/top.mk:libraries/libldap/Makefile.in:build/lib.mk:build/lib-shared.mk  \
1768 libraries/libldap_r/Makefile:build/top.mk:libraries/libldap_r/Makefile.in:build/lib.mk:build/lib-shared.mk      \
1769 libraries/libldbm/Makefile:build/top.mk:libraries/libldbm/Makefile.in:build/lib.mk:build/lib-static.mk  \
1770 libraries/libldif/Makefile:build/top.mk:libraries/libldif/Makefile.in:build/lib.mk:build/lib-static.mk  \
1771 libraries/liblutil/Makefile:build/top.mk:libraries/liblutil/Makefile.in:build/lib.mk:build/lib-static.mk        \
1772 servers/Makefile:build/top.mk:servers/Makefile.in:build/dir.mk \
1773 servers/ldapd/Makefile:build/top.mk:servers/ldapd/Makefile.in:build/srv.mk \
1774 servers/slapd/Makefile:build/top.mk:servers/slapd/Makefile.in:build/srv.mk \
1775 servers/slapd/back-bdb2/Makefile:build/top.mk:servers/slapd/back-bdb2/Makefile.in:build/srv.mk \
1776 servers/slapd/back-ldap/Makefile:build/top.mk:servers/slapd/back-ldap/Makefile.in:build/srv.mk \
1777 servers/slapd/back-ldbm/Makefile:build/top.mk:servers/slapd/back-ldbm/Makefile.in:build/srv.mk \
1778 servers/slapd/back-passwd/Makefile:build/top.mk:servers/slapd/back-passwd/Makefile.in:build/srv.mk \
1779 servers/slapd/back-perl/Makefile:build/top.mk:servers/slapd/back-perl/Makefile.in:build/srv.mk \
1780 servers/slapd/back-shell/Makefile:build/top.mk:servers/slapd/back-shell/Makefile.in:build/srv.mk \
1781 servers/slapd/back-tcl/Makefile:build/top.mk:servers/slapd/back-tcl/Makefile.in:build/srv.mk \
1782 servers/slapd/shell-backends/Makefile:build/top.mk:servers/slapd/shell-backends/Makefile.in:build/srv.mk \
1783 servers/slapd/tools/Makefile:build/top.mk:servers/slapd/tools/Makefile.in \
1784 servers/slurpd/Makefile:build/top.mk:servers/slurpd/Makefile.in:build/srv.mk \
1785 tests/Makefile:build/top.mk:tests/Makefile.in:build/dir.mk \
1786 tests/progs/Makefile:build/top.mk:tests/progs/Makefile.in:build/rules.mk \
1787 contrib/Makefile:build/top.mk:contrib/Makefile.in:build/dir.mk \
1788 contrib/saucer/Makefile:build/top.mk:contrib/saucer/Makefile.in:build/rules.mk \
1789 contrib/web_ldap/Makefile:build/top.mk:contrib/web_ldap/Makefile.in:build/rules.mk \
1790 ,[
1791 date > stamp-h
1792 echo Please \"make depend\" to build dependencies
1793 ])