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