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