]> git.sur5r.net Git - openldap/blob - configure.in
5243f355e69f28e43b84344eaeee5400284a1cc4
[openldap] / configure.in
1 dnl $OpenLDAP$
2 dnl
3 dnl Copyright 1998-2003 The OpenLDAP Foundation.  All Rights Reserved.
4 dnl 
5 dnl Redistribution and use in source and binary forms, with or without
6 dnl modification, are permitted only as authorized by the OpenLDAP
7 dnl Public License.  A copy of this license is available at
8 dnl http://www.OpenLDAP.org/license.html or in file LICENSE in the
9 dnl top-level directory of the distribution.
10 dnl
11 dnl ----------------------------------------------------------------
12 dnl Redefine AC_INIT_BINSH to provide RCS IDs and copyright notice
13 dnl at top of generated configure script.  Prints simple copyright.
14 define([AC_INIT_BINSH],
15 [[#! /bin/sh
16 # $]OpenLDAP[$
17 # from] translit([$OpenLDAP$], $")] [
18
19 # Copyright 1998-2003 The OpenLDAP Foundation.  All Rights Reserved.
20
21 # Redistribution and use in source and binary forms, with or without
22 # modification, are permitted only as authorized by the OpenLDAP
23 # Public License.  A copy of this license is available at
24 # http://www.OpenLDAP.org/license.html or in file LICENSE in the
25 # top-level directory of the distribution.
26
27 echo "Copyright 1998-2003 The OpenLDAP Foundation,  All Rights Reserved."
28 echo "  Restrictions apply, see COPYRIGHT and LICENSE files."
29 ])dnl
30 dnl ----------------------------------------------------------------
31 dnl Disable config.cache!
32 define([AC_CACHE_LOAD], )dnl
33 define([AC_CACHE_SAVE], )dnl
34 dnl ================================================================
35 dnl Configure.in for OpenLDAP
36 AC_INIT(build/version.sh)dnl
37
38 # set unset (borrowed from autoconf 2.49c)
39 if (OL_FOO=OL_FOO; unset OL_FOO) >/dev/null 2>&1; then
40   ol_unset=unset
41 else
42   ol_unset=false
43 fi
44 # unset CDPATH
45 $ol_unset CDPATH || test "${CDPATH+set}" != set || { CDPATH=:; export CDPATH; }
46
47 AC_CONFIG_AUX_DIR(build)dnl
48
49 eval `$ac_aux_dir/version.sh`
50 if test -z "$OL_STRING"; then
51         AC_MSG_ERROR([could not determine version])
52 fi
53
54 if test -f "$ac_aux_dir/shtool" -a ! -d $ac_aux_dir/shtool; then
55         ac_cv_shtool="$ac_aux_dir/shtool"
56 else
57         AC_MSG_ERROR([no shtool found in $ac_aux_dir])
58 fi
59
60 SHTOOL="$ac_cv_shtool"
61 dnl AC_SUBST(SHTOOL)dnl
62
63 TB="`$SHTOOL echo -e '%B' 2>/dev/null`"
64 TN="`$SHTOOL echo -e '%b' 2>/dev/null`"
65
66 OPENLDAP_CVS=""
67 if test -d $ac_aux_dir/CVS; then
68         OPENLDAP_CVS="(from CVS sources) "
69 fi
70
71 echo "Configuring ${TB}${OL_STRING}${TN} ${OPENLDAP_CVS}..."
72
73 dnl Determine host platform
74 dnl             we try not to use this for much
75 AC_CANONICAL_SYSTEM
76
77 AM_INIT_AUTOMAKE([$OL_PACKAGE],[$OL_VERSION], [no defines])dnl
78 AC_SUBST(PACKAGE)dnl
79 AC_SUBST(VERSION)dnl
80 AC_DEFINE_UNQUOTED(OPENLDAP_PACKAGE,"$PACKAGE",Package)
81 AC_DEFINE_UNQUOTED(OPENLDAP_VERSION,"$VERSION",Version)
82
83 AC_DEFINE_UNQUOTED(LDAP_VENDOR_VERSION,$OL_API_INC,Version)
84 AC_DEFINE_UNQUOTED(LDAP_VENDOR_VERSION_MAJOR,$OL_MAJOR,Major)
85 AC_DEFINE_UNQUOTED(LDAP_VENDOR_VERSION_MINOR,$OL_MINOR,Minor)
86 AC_DEFINE_UNQUOTED(LDAP_VENDOR_VERSION_PATCH,$OL_PATCH,Patch)
87
88 OPENLDAP_LIBVERSION=$OL_API_LIB
89 AC_SUBST(OPENLDAP_LIBVERSION)dnl
90
91 OPENLDAP_RELEASE_DATE="$OL_RELEASE_DATE"
92 AC_SUBST(OPENLDAP_RELEASE_DATE)dnl
93
94 dnl We use autoconf features new to 2.13.
95 dnl aclocal.m4 should be built using aclocal from automake 1.4
96 dnl libtool 1.4.2 should be installed.
97 AC_PREREQ(2.13)dnl Required Autoconf version
98
99 AC_CONFIG_HEADER(include/portable.h include/ldap_features.h include/lber_types.h)dnl
100
101 dnl ================================================================
102 dnl Start Args
103 AC_MSG_CHECKING(configure arguments)
104 AC_PREFIX_DEFAULT(/usr/local)
105
106 top_builddir=`pwd`
107 AC_SUBST(top_builddir)dnl
108
109 dnl ----------------------------------------------------------------
110 dnl --with-subdir
111 ldap_subdir="/openldap"
112
113 AC_ARG_WITH(subdir,
114 [  --with-subdir=DIR       change default subdirectory used for installs],
115 [case "$withval" in
116         no) ldap_subdir=""
117                 ;;
118         yes)
119                 ;;
120         /*|\\*)
121                 ldap_subdir="$withval"
122                 ;;
123         *)
124                 ldap_subdir="/$withval"
125                 ;;
126 esac
127 ])dnl
128
129 AC_SUBST(ldap_subdir)dnl
130
131 dnl ----------------------------------------------------------------
132 dnl General "enable" options
133 OL_ARG_ENABLE(debug,[  --enable-debug     enable debugging], yes)dnl
134 OL_ARG_ENABLE(dynamic,[  --enable-dynamic         enable linking built binaries with dynamic libs], no)dnl
135 OL_ARG_ENABLE(syslog,[  --enable-syslog   enable syslog support], auto)dnl
136 OL_ARG_ENABLE(proctitle,[  --enable-proctitle     enable proctitle support], yes)dnl
137 dnl OL_ARG_ENABLE(referrals,[  --enable-referrals         enable LDAPv2+ Referrals (experimental)], no)dnl
138 ol_enable_referrals=${ol_enable_referrals-no}
139 dnl OL_ARG_ENABLE(kbind,[  --enable-kbind         enable LDAPv2+ Kerberos IV bind (deprecated)], no)dnl
140 ol_enable_kbind=${ol_enable_kbind-no}
141 OL_ARG_ENABLE(ipv6,[  --enable-ipv6       enable IPv6 support], auto)dnl
142 OL_ARG_ENABLE(local,[  --enable-local     enable AF_LOCAL (AF_UNIX) socket support], auto)dnl
143 OL_ARG_ENABLE(x_compile,[  --enable-x-compile     enable cross compiling],
144         no, [yes no])dnl
145
146 dnl ----------------------------------------------------------------
147 dnl General "with" options
148 dnl OL_ARG_ENABLE(dmalloc,[  --enable-dmalloc     enable debug malloc support], no)dnl
149
150 OL_ARG_WITH(cyrus_sasl,[  --with-cyrus-sasl       with Cyrus SASL support],
151         auto, [auto yes no] )
152 OL_ARG_WITH(fetch,[  --with-fetch                 with fetch(3) URL support],
153         auto, [auto yes no] )
154 OL_ARG_WITH(kerberos,[  --with-kerberos   with Kerberos support],
155         auto, [auto k5 k5only k425 kth k4 afs yes no])
156 OL_ARG_WITH(threads,[  --with-threads     with threads],
157         auto, [auto nt posix mach pth lwp yes no manual] )
158 OL_ARG_WITH(tls,[  --with-tls             with TLS/SSL support],
159         auto, [auto ssleay openssl yes no] )
160 OL_ARG_WITH(yielding_select,[  --with-yielding-select  with implicitly yielding select],
161         auto, [auto yes no manual] )
162
163 dnl ----------------------------------------------------------------
164 dnl Server options
165 dnl ----------------------------------------------------------------
166
167 dnl ----------------------------------------------------------------
168 dnl SLAPD OPTIONS
169 AC_ARG_WITH(xxslapdoptions,[
170 SLAPD (Standalone LDAP Daemon) Options:])
171 OL_ARG_ENABLE(slapd,[  --enable-slapd     enable building slapd], yes)dnl
172 OL_ARG_ENABLE(aci,[    --enable-aci       enable per-object ACIs (experimental)], no)dnl
173 OL_ARG_ENABLE(cleartext,[    --enable-cleartext   enable cleartext passwords], yes)dnl
174 OL_ARG_ENABLE(crypt,[    --enable-crypt   enable crypt(3) passwords], no)dnl
175 OL_ARG_ENABLE(kpasswd,[    --enable-kpasswd       enable Kerberos password verification], no)dnl
176 OL_ARG_ENABLE(lmpasswd,[    --enable-lmpasswd     enable LAN Manager passwords], no)dnl
177 OL_ARG_ENABLE(spasswd,[    --enable-spasswd       enable (Cyrus) SASL password verification], no)dnl
178 OL_ARG_ENABLE(modules,[    --enable-modules       enable dynamic module support], no)dnl
179 dnl OL_ARG_ENABLE(multimaster,[    --enable-multimaster  enable multimaster replication], no)dnl
180 ol_enable_multimaster=${ol_enable_multimaster-no}
181 OL_ARG_ENABLE(rewrite,[    --enable-rewrite       enable DN rewriting in back-ldap and back-meta], no)dnl
182 OL_ARG_ENABLE(rlookups,[    --enable-rlookups     enable reverse lookups of client hostnames], no)dnl
183 OL_ARG_ENABLE(slapi,[    --enable-slapi        enable installation of slapi library], no)dnl
184 OL_ARG_ENABLE(slp,[    --enable-slp          enable SLPv2 support], no)dnl     
185 OL_ARG_ENABLE(wrappers,[    --enable-wrappers     enable tcp wrapper support], no)dnl
186
187
188 dnl SLAPD Backend options
189 OL_ARG_ENABLE(bdb,[    --enable-bdb       enable Berkeley DB backend], yes)dnl
190 OL_ARG_WITH(bdb_module,[    --with-bdb-module     module type static|dynamic], static,
191         [static dynamic])
192 OL_ARG_ENABLE(dnssrv,[    --enable-dnssrv         enable dnssrv backend], no)dnl
193 OL_ARG_WITH(dnssrv_module,[    --with-dnssrv-module  module type static|dynamic], static,
194         [static dynamic])
195 OL_ARG_ENABLE(hdb,[    --enable-hdb       enable Hierarchical DB backend], no)dnl
196 OL_ARG_WITH(hdb_module,[    --with-hdb-module     module type static|dynamic], static,
197         [static dynamic])
198 OL_ARG_ENABLE(ldap,[    --enable-ldap     enable ldap backend], no)dnl
199 OL_ARG_WITH(ldap_module,[    --with-ldap-module   module type static|dynamic], static,
200         [static dynamic])
201 OL_ARG_ENABLE(ldbm,[    --enable-ldbm     enable ldbm backend], no)dnl
202 OL_ARG_WITH(ldbm_api,[    --with-ldbm-api       with LDBM API auto|berkeley|bcompat|mdbm|gdbm], auto,
203         [auto berkeley bcompat mdbm gdbm])
204 OL_ARG_WITH(ldbm_module,[    --with-ldbm-module   module type static|dynamic], static,
205         [static dynamic])
206 OL_ARG_WITH(ldbm_type,[    --with-ldbm-type       use LDBM type auto|btree|hash], auto,
207         [auto btree hash])
208 OL_ARG_ENABLE(meta,[    --enable-meta     enable metadirectory backend], no)dnl
209 OL_ARG_WITH(meta_module,[    --with-meta-module   module type static|dynamic], static,
210         [static dynamic])
211 OL_ARG_ENABLE(monitor,[    --enable-monitor       enable monitor backend], no)dnl
212 OL_ARG_WITH(monitor_module,[    --with-monitor-module module type static|dynamic], static,
213         [static dynamic])
214 OL_ARG_ENABLE(null,[    --enable-null     enable null backend], no)dnl
215 OL_ARG_WITH(null_module,[    --with-null-module   module type static|dynamic], static,
216         [static dynamic])
217 OL_ARG_ENABLE(passwd,[    --enable-passwd         enable passwd backend], no)dnl
218 OL_ARG_WITH(passwd_module,[    --with-passwd-module  module type static|dynamic], static,
219         [static dynamic])
220 OL_ARG_ENABLE(perl,[    --enable-perl     enable perl backend], no)dnl
221 OL_ARG_WITH(perl_module,[    --with-perl-module   module type static|dynamic], static,
222         [static dynamic])
223 OL_ARG_ENABLE(shell,[    --enable-shell   enable shell backend], no)dnl
224 OL_ARG_WITH(shell_module,[    --with-shell-module         module type static|dynamic], static,
225         [static dynamic])
226 OL_ARG_ENABLE(sql,[    --enable-sql       enable sql backend], no)dnl
227 OL_ARG_WITH(sql_module,[    --with-sql-module     module type static|dynamic], static,
228         [static dynamic])
229
230 dnl ----------------------------------------------------------------
231 dnl SLURPD OPTIONS
232 AC_ARG_WITH(xxslurpdoptions,[
233 SLURPD (Replication Daemon) Options:])
234 OL_ARG_ENABLE(slurpd,[  --enable-slurpd   enable building slurpd], auto)dnl
235
236 dnl ----------------------------------------------------------------
237 AC_ARG_WITH(xxliboptions,[
238 Library Generation & Linking Options])
239 AC_ENABLE_STATIC
240 AC_ENABLE_SHARED
241
242 dnl ----------------------------------------------------------------
243
244 dnl General "enable" options
245 # validate options
246 if test $ol_enable_slapd = no ; then
247         dnl SLAPD was specificallly disabled
248         if test $ol_enable_slapi = yes ; then
249                 AC_MSG_WARN([slapd disabled, ignoring --enable-slapi argument])
250         fi
251         if test $ol_enable_bdb = yes ; then
252                 AC_MSG_WARN([slapd disabled, ignoring --enable-bdb argument])
253         fi
254         if test $ol_enable_dnssrv = yes ; then
255                 AC_MSG_WARN([slapd disabled, ignoring --enable-dnssrv argument])
256         fi
257         if test $ol_enable_hdb = yes ; then
258                 AC_MSG_WARN([slapd disabled, ignoring --enable-hdb argument])
259         fi
260         if test $ol_enable_ldap = yes ; then
261                 AC_MSG_WARN([slapd disabled, ignoring --enable-ldap argument])
262         fi
263         if test $ol_enable_ldbm = yes ; then
264                 AC_MSG_WARN([slapd disabled, ignoring --enable-ldbm argument])
265         fi
266         if test $ol_enable_meta = yes ; then
267                 AC_MSG_WARN([slapd disabled, ignoring --enable-meta argument])
268         fi
269         if test $ol_enable_monitor = yes ; then
270                 AC_MSG_WARN([slapd disabled, ignoring --enable-monitor argument])
271         fi
272         if test $ol_enable_null = yes ; then
273                 AC_MSG_WARN([slapd disabled, ignoring --enable-null argument])
274         fi
275         if test $ol_enable_passwd = yes ; then
276                 AC_MSG_WARN([slapd disabled, ignoring --enable-passwd argument])
277         fi
278         if test $ol_enable_perl = yes ; then
279                 AC_MSG_WARN([slapd disabled, ignoring --enable-perl argument])
280         fi
281         if test $ol_enable_shell = yes ; then
282                 AC_MSG_WARN([slapd disabled, ignoring --enable-shell argument])
283         fi
284         if test $ol_enable_sql = yes ; then
285                 AC_MSG_WARN([slapd disabled, ignoring --enable-sql argument])
286         fi
287         if test $ol_enable_modules = yes ; then
288                 AC_MSG_WARN([slapd disabled, ignoring --enable-modules argument])
289         fi
290         if test $ol_enable_multimaster = yes ; then
291                 AC_MSG_WARN([slapd disabled, ignoring --enable-multimaster argument])
292         fi
293         if test $ol_enable_wrappers = yes ; then
294                 AC_MSG_WARN([slapd disabled, ignoring --enable-wrappers argument])
295         fi
296         if test $ol_enable_rlookups = yes ; then
297                 AC_MSG_WARN([slapd disabled, ignoring --enable-rlookups argument])
298         fi
299         if test $ol_enable_aci = yes ; then
300                 AC_MSG_WARN([slapd disabled, ignoring --enable-aci argument])
301         fi
302         if test $ol_with_ldbm_api != auto ; then
303                 AC_MSG_WARN([slapd disabled, ignoring --with-ldbm-api argument])
304         fi
305         if test $ol_with_ldbm_type != auto ; then
306                 AC_MSG_WARN([slapd disabled, ignoring --with-ldbm-type argument])
307         fi
308         if test $ol_with_bdb_module != static ; then
309                 AC_MSG_WARN([slapd disabled, ignoring --with-bdb-module argument])
310         fi
311         if test $ol_with_dnssrv_module != static ; then
312                 AC_MSG_WARN([slapd disabled, ignoring --with-dnssrv-module argument])
313         fi
314         if test $ol_with_hdb_module != static ; then
315                 AC_MSG_WARN([slapd disabled, ignoring --with-hdb-module argument])
316         fi
317         if test $ol_with_ldap_module != static ; then
318                 AC_MSG_WARN([slapd disabled, ignoring --with-ldap-module argument])
319         fi
320         if test $ol_with_ldbm_module != static ; then
321                 AC_MSG_WARN([slapd disabled, ignoring --with-ldbm-module argument])
322         fi
323         if test $ol_with_meta_module != static ; then
324                 AC_MSG_WARN([slapd disabled, ignoring --with-meta-module argument])
325         fi
326         if test $ol_with_monitor_module != static ; then
327                 AC_MSG_WARN([slapd disabled, ignoring --with-monitor-module argument])
328         fi
329         if test $ol_with_null_module != static ; then
330                 AC_MSG_WARN([slapd disabled, ignoring --with-null-module argument])
331         fi
332         if test $ol_with_passwd_module != static ; then
333                 AC_MSG_WARN([slapd disabled, ignoring --with-passwd-module argument])
334         fi
335         if test $ol_with_perl_module != static ; then
336                 AC_MSG_WARN([slapd disabled, ignoring --with-perl-module argument])
337         fi
338         if test $ol_with_shell_module != static ; then
339                 AC_MSG_WARN([slapd disabled, ignoring --with-shell-module argument])
340         fi
341         if test $ol_with_sql_module != static ; then
342                 AC_MSG_WARN([slapd disabled, ignoring --with-sql-module argument])
343         fi
344         if test $ol_enable_slurpd = yes ; then
345                 AC_MSG_ERROR([slurpd requires slapd])
346         fi
347         if test $ol_enable_rewrite = yes ; then
348                 AC_MSG_WARN([slapd disabled, ignoring --enable-rewrite argument])
349         fi
350
351         # force settings to no
352         ol_enable_slapi=no
353         ol_enable_bdb=no
354         ol_enable_dnssrv=no
355         ol_enable_hdb=no
356         ol_enable_ldap=no
357         ol_enable_ldbm=no
358         ol_enable_meta=no
359         ol_enable_monitor=no
360         ol_enable_null=no
361         ol_enable_passwd=no
362         ol_enable_perl=no
363         ol_enable_shell=no
364         ol_enable_sql=no
365
366         ol_enable_modules=no
367         ol_enable_multimaster=no
368         ol_enable_rlookups=no
369         ol_enable_aci=no
370         ol_enable_wrappers=no
371         ol_enable_dynamic=no
372
373         ol_with_ldbm_api=no
374         ol_with_ldbm_type=no
375
376         ol_with_bdb_module=static
377         ol_with_dnssrv_module=static
378         ol_with_hdb_module=static
379         ol_with_ldap_module=static
380         ol_with_ldbm_module=static
381         ol_with_meta_module=static
382         ol_with_monitor_module=static
383         ol_with_null_module=static
384         ol_with_passwd_module=static
385         ol_with_perl_module=static
386         ol_with_shell_module=static
387         ol_with_sql_module=static
388
389         ol_enable_slurpd=no
390
391         ol_enable_rewrite=no
392
393 elif test $ol_enable_ldbm = no ; then
394         dnl SLAPD without LDBM
395
396         if test $ol_with_ldbm_api != auto ; then
397                 AC_MSG_WARN([LDBM disabled, ignoring --with-ldbm-api argument])
398         fi
399
400         if test $ol_with_ldbm_type != auto ; then
401                 AC_MSG_WARN([LDBM disabled, ignoring --with-ldbm-type argument])
402         fi
403
404         if test $ol_with_ldbm_module != static ; then
405                 AC_MSG_WARN([LDBM disabled, ignoring --with-ldbm-module argument])
406         fi
407
408         if test $ol_enable_modules != yes -a \
409                 $ol_enable_bdb = no -a \
410                 $ol_enable_dnssrv = no -a \
411                 $ol_enable_hdb = no -a \
412                 $ol_enable_ldap = no -a \
413                 $ol_enable_meta = no -a \
414                 $ol_enable_monitor = no -a \
415                 $ol_enable_null = no -a \
416                 $ol_enable_passwd = no -a \
417                 $ol_enable_perl = no -a \
418                 $ol_enable_shell = no -a \
419                 $ol_enable_sql = no -a \
420
421                 if test $ol_enable_slapd = yes ; then
422                         AC_MSG_ERROR([slapd requires a backend])
423                 else
424                         AC_MSG_WARN([skipping slapd, no backend specified])
425                         ol_enable_slapd=no
426                 fi
427         fi
428
429         ol_with_ldbm_api=no
430         ol_with_ldbm_type=no
431         ol_with_ldbm_module=static
432
433         if test $ol_enable_bdb != no -o $ol_enable_hdb != no; then
434                 ol_with_ldbm_api=berkeley
435         fi
436
437 else
438         dnl SLAPD with LDBM
439         if test $ol_with_ldbm_api = gdbm -a \
440                 $ol_with_ldbm_type = btree ; then
441                 AC_MSG_ERROR([GDBM only supports LDBM type hash])
442         fi
443         if test $ol_with_ldbm_api = mdbm -a \
444                 $ol_with_ldbm_type = btree ; then
445                 AC_MSG_ERROR([MDBM only supports LDBM type hash])
446         fi
447         if test $ol_with_ldbm_api = ndbm -a \
448                 $ol_with_ldbm_type = btree ; then
449                 AC_MSG_ERROR([NDBM only supports LDBM type hash])
450         fi
451
452         if test $ol_enable_bdb = yes -o $ol_enable_hdb = yes ; then
453                 if test $ol_with_ldbm_api = auto ; then
454                         ol_with_ldbm_api=berkeley
455                 elif test $ol_with_ldbm_api != berkeley ; then
456                         AC_MSG_ERROR([LDBM API not compatible with BDB/HDB])
457                 fi
458
459         elif test $ol_enable_bdb = auto ; then
460                 if test $ol_with_ldbm_api != berkeley \
461                         -o $ol_with_ldbm_api != auto ; then
462                         AC_MSG_WARN([LDBM API not compatible with BDB, disabling BDB])
463                         ol_enable_bdb=no
464                 fi
465         fi
466 fi
467
468 if test $ol_enable_slurpd = yes ; then
469         dnl SLURPD was specifically enabled
470         if test $ol_with_threads = no ; then
471                 AC_MSG_ERROR([slurpd requires threads])
472         fi
473 fi
474
475 if test $ol_enable_lmpasswd = yes ; then
476         if test $ol_with_tls = no ; then
477                 AC_MSG_ERROR([LAN Manager passwords require OpenSSL])
478         fi
479 fi
480
481 if test $ol_enable_kbind = yes -o $ol_enable_kpasswd = yes ; then
482         if test $ol_with_kerberos = no ; then
483                 AC_MSG_ERROR([options require --with-kerberos])
484         elif test $ol_with_kerberos = auto ; then
485                 ol_with_kerberos=yes
486         fi
487
488 elif test $ol_enable_kbind = no -o $ol_enable_kpasswd = no ; then
489         if test $ol_with_kerberos = auto ; then
490                 ol_with_kerberos=no
491         elif test $ol_with_kerberos != no ; then
492                 AC_MSG_WARN([Kerberos detection enabled unnecessarily]);
493                 ol_with_kerberos=no
494         fi
495 fi
496
497 if test $ol_enable_spasswd = yes ; then
498         if test $ol_with_cyrus_sasl = no ; then
499                 AC_MSG_ERROR([options require --with-cyrus-sasl])
500         fi
501         ol_with_cyrus_sasl=yes
502 fi
503
504 AC_MSG_RESULT(done)
505
506 dnl ----------------------------------------------------------------
507 dnl Initialize vars
508 LDAP_LIBS=
509 LDIF_LIBS=
510 LDBM_LIBS=
511 LTHREAD_LIBS=
512 LUTIL_LIBS=
513
514 SLAPD_LIBS=
515 SLURPD_LIBS=
516
517 BUILD_SLAPD=no
518 BUILD_SLURPD=no
519
520 BUILD_THREAD=no
521
522 BUILD_SLAPI=no
523 SLAPD_SLAPI_DEPEND=
524
525 BUILD_BDB=no
526 BUILD_DNSSRV=no
527 BUILD_HDB=no
528 BUILD_LDAP=no
529 BUILD_LDBM=no
530 BUILD_META=no
531 BUILD_MONITOR=no
532 BUILD_NULL=no
533 BUILD_PASSWD=no
534 BUILD_PERL=no
535 BUILD_SHELL=no
536 BUILD_SQL=no
537
538 BUILD_BDB_DYNAMIC=static
539 BUILD_DNSSRV_DYNAMIC=static
540 BUILD_HDB_DYNAMIC=static
541 BUILD_LDAP_DYNAMIC=static
542 BUILD_LDBM_DYNAMIC=static
543 BUILD_META_DYNAMIC=static
544 BUILD_MONITOR_DYNAMIC=static
545 BUILD_NULL_DYNAMIC=static
546 BUILD_PASSWD_DYNAMIC=static
547 BUILD_PERL_DYNAMIC=static
548 BUILD_SHELL_DYNAMIC=static
549 BUILD_SQL_DYNAMIC=static
550
551 SLAPD_MODULES_LDFLAGS=
552 SLAPD_MODULES_CPPFLAGS=
553
554 SLAPD_STATIC_BACKENDS=
555 SLAPD_DYNAMIC_BACKENDS=
556
557 SLAPD_PERL_LDFLAGS=
558 MOD_PERL_LDFLAGS=
559 PERL_CPPFLAGS=
560
561 SLAPD_SQL_LDFLAGS=
562 SLAPD_SQL_LIBS=
563 SLAPD_SQL_INCLUDES=
564
565 KRB4_LIBS=
566 KRB5_LIBS=
567 SASL_LIBS=
568 TERMCAP_LIBS=
569 TLS_LIBS=
570 MODULES_LIBS=
571 SLAPI_LIBS=
572 LIBSLAPI=
573 LIBSLAPITOOLS=
574 AUTH_LIBS=
575
576 SLAPD_SLP_LIBS=
577
578 dnl ================================================================
579 dnl Checks for programs
580
581 AC_PROG_INSTALL
582
583 AC_DEFINE(HAVE_MKVERSION, 1, [define this if you have mkversion])
584
585 dnl ----------------------------------------------------------------
586 dnl
587 dnl Determine which C translator to use
588 dnl
589
590 dnl AIX Thread requires we use cc_r or xlc_r.
591 dnl But only do this IF AIX and CC is not set
592 dnl and threads are auto|yes|posix.
593 dnl
594 dnl If we find cc_r|xlc_r, force pthreads and assume
595 dnl             pthread_create is in $LIBS (ie: don't bring in
596 dnl             any additional thread libraries)
597 dnl If we do not find cc_r|xlc_r, disable threads
598
599 ol_aix_threads=no
600 case "$target" in
601 *-*-aix*) dnl all AIX is not a good idea.
602         if test -z "$CC" ; then
603                 case "$ol_with_threads" in
604                 auto | yes |  posix) ol_aix_threads=yes ;;
605                 esac
606         fi
607 ;;
608 esac
609
610 if test $ol_aix_threads = yes ; then
611         if test -z "${CC}" ; then
612                 AC_CHECK_PROGS(CC,cc_r xlc_r cc)
613
614                 if test "$CC" = cc ; then
615                         dnl no CC! don't allow --with-threads
616                         if test $ol_with_threads != auto ; then
617                                 AC_MSG_ERROR([--with-threads requires cc_r (or other suitable compiler) on AIX])
618                         else
619                                 AC_MSG_WARN([disabling threads, no cc_r on AIX])
620                         fi
621                         ol_with_threads=no
622                 fi
623         fi
624
625         if test "${CC}" = "cc_r" -o "${CC}" = "xlc_r" ; then
626                 ol_with_threads=posix
627                 ol_cv_pthread_create=yes
628         fi
629 fi
630
631 if test -z "${CC}"; then
632         AC_CHECK_PROGS(CC,cc gcc,missing)
633
634         if test "${CC}" = "missing" ; then
635                 AC_MSG_ERROR([Unable to locate cc(1) or suitable replacement.  Check PATH or set CC.])
636         fi
637 fi
638
639 if test -z "${AR}"; then
640         AC_CHECK_PROGS(AR,ar gar,missing)
641
642         if test "${AR}" = "missing" ; then
643                 AC_MSG_ERROR([Unable to locate ar(1) or suitable replacement.  Check PATH or set AR.])
644         fi
645 fi
646
647 AC_LIBTOOL_WIN32_DLL
648 AC_LIBTOOL_DLOPEN
649 AC_PROG_LIBTOOL
650
651 OL_PROG_LN_H
652 AC_PROG_LN_S
653
654 dnl ----------------------------------------------------------------
655 dnl Perl
656 ol_link_perl=no
657 if test $ol_enable_perl != no ; then
658         AC_PATH_PROG(PERLBIN, perl, /usr/bin/perl)
659
660         if test "no$PERLBIN" = "no" ; then
661                 if test $ol_enable_perl = yes ; then
662                         AC_MSG_ERROR([could not locate perl])
663                 fi
664
665         else
666                 PERL_CPPFLAGS="`$PERLBIN -MExtUtils::Embed -e ccopts`"
667                 if test x"$ol_with_perl_module" = "xstatic" ; then
668                         SLAPD_PERL_LDFLAGS="`$PERLBIN -MExtUtils::Embed -e ldopts|sed -e s/-lc//`"
669                 else
670                         MOD_PERL_LDFLAGS="`$PERLBIN -MExtUtils::Embed -e ldopts|sed -e s/-lc//`"
671                 fi
672                 dnl should check perl version
673                 ol_link_perl=yes
674         fi
675 fi
676
677 AC_PROG_CPP
678
679 dnl ----------------------------------------------------------------
680 dnl Cross compiling checks
681 if test $cross_compiling = yes -a $ol_enable_x_compile = yes; then
682         AC_MSG_WARN([cross compiling....  some functionality will be removed.])
683
684 elif test $cross_compiling = no -a $ol_enable_x_compile = yes; then
685         AC_MSG_WARN([programs compiled here do run here...])
686         AC_MSG_ERROR([  if not cross compiling, use --disable-x-compile.])
687
688 elif test $cross_compiling = yes -a $ol_enable_x_compile = no; then
689         AC_MSG_WARN([programs compiled here do not run here...])
690         AC_MSG_ERROR([  if cross compiling,  add --enable-x-compile.])
691 fi
692
693 dnl ----------------------------------------------------------------
694 dnl Checks for UNIX Variants
695 dnl AC_AIX
696 dnl AC_ISC_POSIX
697 dnl AC_MINIX
698
699 dnl ----------------------------------------------------------------
700 dnl Checks for system services
701 AC_CYGWIN
702 AC_MINGW32
703 AC_EXEEXT
704 AC_OBJEXT
705
706 AC_DEFINE_UNQUOTED(EXEEXT, "${EXEEXT}", [defined to be the EXE extension])
707
708 dnl ----------------------------------------------------------------
709 dnl BeOS requires -lbe -lroot -lnet
710 AC_CHECK_LIB(be, be_app, [LIBS="$LIBS -lbe -lroot -lnet"], :, [-lroot -lnet])
711
712 dnl ----------------------------------------------------------------
713 dnl OpenLDAP requires STDC features
714 AM_PROG_CC_STDC
715 if test "X${am_cv_prog_cc_stdc}" = "Xno" ; then
716         AC_MSG_ERROR([OpenLDAP requires compiler to support STDC constructs.])
717 fi
718
719 dnl ----------------------------------------------------------------
720 dnl Check cc depend flags
721 OL_MKDEPEND
722 if test "${ol_cv_mkdep}" = no ; then
723         # this will soon become an error
724         AC_MSG_WARN([do not know how to generate dependencies])
725 fi
726
727 dnl ----------------------------------------------------------------
728 dnl Check for AIX security library
729 AC_CHECK_LIB(s, afopen, [
730         AUTH_LIBS=-ls
731         AC_DEFINE(HAVE_AIX_SECURITY,1,[define if you have AIX security lib])
732 ])
733
734 dnl ----------------------------------------------------------------
735 dnl Check for IBM OS/390
736 case "$target" in
737 *-ibm-openedition)
738         ac_cv_func_getopt=no
739         AC_DEFINE(BOTH_STRINGS_H,1,[define to use both <string.h> and <strings.h>])
740         ;;
741 esac
742
743 dnl ----------------------------------------------------------------
744 dnl Check for module support
745 ol_link_modules=no
746 if test $ol_enable_modules != no ; then
747         AC_CHECK_HEADERS(ltdl.h)
748
749         if test $ac_cv_header_ltdl_h = no ; then
750                 AC_MSG_ERROR([could not locate libtool ltdl.h])
751         fi
752
753         AC_CHECK_LIB(ltdl, lt_dlinit, [
754                 MODULES_LIBS=-lltdl
755                 AC_DEFINE(HAVE_LIBLTDL,1,[define if you have libtool -ltdl])
756         ])
757
758         if test "$ac_cv_lib_ltdl_lt_dlinit" = no ; then
759                 AC_MSG_ERROR([could not locate libtool -lltdl])
760         fi
761         ol_link_modules=yes
762 else
763         ol_with_bdb_module=static
764         ol_with_dnssrv_module=static
765         ol_with_hdb_module=static
766         ol_with_ldap_module=static
767         ol_with_ldbm_module=static
768         ol_with_meta_module=static
769         ol_with_monitor_module=static
770         ol_with_null_module=static
771         ol_with_passwd_module=static
772         ol_with_perl_module=static
773         ol_with_shell_module=static
774         ol_with_sql_module=static
775 fi
776
777 dnl ----------------------------------------------------------------
778 dnl Checks for header files.
779 OL_HEADER_STDC
780
781 if test $ol_cv_header_stdc != yes; then
782         AC_MSG_WARN([could not locate Standard C compliant headers])
783 fi
784
785 AC_HEADER_DIRENT
786 AC_HEADER_SYS_WAIT
787 AM_HEADER_TIOCGWINSZ_NEEDS_SYS_IOCTL
788 if test $am_cv_sys_posix_termios = yes ; then
789         AC_DEFINE(HAVE_POSIX_TERMIOS,1,
790                 [define if you have POSIX termios])
791 fi
792
793 AC_CHECK_HEADERS(       \
794         arpa/inet.h             \
795         arpa/nameser.h  \
796         assert.h                \
797         conio.h                 \
798         crypt.h                 \
799         direct.h                \
800         errno.h                 \
801         fcntl.h                 \
802         filio.h                 \
803         getopt.h                \
804         grp.h                   \
805         io.h                    \
806         libutil.h               \
807         limits.h                \
808         locale.h                \
809         netinet/tcp.h   \
810         malloc.h                \
811         memory.h                \
812         psap.h                  \
813         pwd.h                   \
814         process.h               \
815         resolv.h                \
816         sgtty.h                 \
817         shadow.h                \
818         stddef.h                \
819         string.h                \
820         strings.h               \
821         sysexits.h              \
822         sys/file.h              \
823         sys/filio.h             \
824         sys/errno.h             \
825         sys/ioctl.h             \
826         sys/param.h             \
827         sys/resource.h  \
828         sys/select.h    \
829         sys/socket.h    \
830         sys/stat.h              \
831         sys/syslog.h    \
832         sys/time.h              \
833         sys/types.h             \
834         sys/ucred.h             \
835         sys/uio.h               \
836         syslog.h                \
837         termios.h               \
838         unistd.h                \
839         winsock.h               \
840         winsock2.h              \
841 )
842
843
844 dnl ----------------------------------------------------------------
845 dnl Checks for libraries
846
847 AC_CHECK_FUNC(dlopen, :, [AC_CHECK_LIB(dl, dlopen)])
848
849 dnl HP-UX requires -lV3
850 dnl this is not needed on newer versions of HP-UX
851 AC_CHECK_LIB(V3, sigset)
852
853 dnl The following is INTENTIONALLY scripted out because shell does not
854 dnl support variable names with the '@' character, which is what
855 dnl autoconf would try to generate if one merely used AC_SEARCH_LIBS
856 AC_MSG_CHECKING(for winsock)
857 save_LIBS="$LIBS"
858 for curlib in ws2_32 wsock32; do
859         LIBS="$LIBS -l$curlib"
860         AC_TRY_LINK([
861                         char socket@12();
862                         char select@20();
863                         char closesocket@4();
864                         char gethostname@8();
865                         ],
866                         [
867                         socket@12();
868                         select@20();
869                         closesocket@4();
870                         gethostname@8();
871                         ],
872                         have_winsock=yes, have_winsock=no)
873
874         if test $have_winsock = yes; then
875                 AC_DEFINE(HAVE_WINSOCK, 1, [define if you have winsock])
876                 ac_cv_func_socket=yes
877                 ac_cv_func_select=yes
878                 ac_cv_func_closesocket=yes
879                 ac_cv_func_gethostname=yes
880                 if test $curlib = ws2_32; then
881                         have_winsock=winsock2
882                         AC_DEFINE(HAVE_WINSOCK2, 1,
883                                   [define if you have winsock2])
884                 fi
885                 break
886         fi
887         LIBS="$save_LIBS"
888 done
889 AC_MSG_RESULT($have_winsock)
890
891 dnl Find socket()
892 dnl Likely combinations:
893 dnl             -lsocket [ -lnsl_s | -lnsl ]
894 dnl             -linet
895
896 AC_CHECK_FUNC(socket, :, [      
897 dnl hopefully we won't include too many libraries
898         AC_CHECK_LIB(socket, main)
899         AC_CHECK_LIB(net, main)
900         AC_CHECK_LIB(nsl_s, main)
901         AC_CHECK_LIB(nsl, main)
902         AC_CHECK_LIB(inet, socket)
903         AC_CHECK_LIB(gen, main)
904 ])
905
906 dnl require select
907 AC_CHECK_FUNC(select, :, AC_MSG_ERROR([select() required.]))
908
909 if test "${ac_cv_header_winsock_h}" != yes; then
910         dnl Select arg types
911         dnl (if this detection becomes permenent, it and the select() detection
912         dnl should be done before the yielding select test) 
913         AC_FUNC_SELECT_ARGTYPES
914 fi
915
916 dnl check to see if system call automatically restart
917 dnl AC_SYS_RESTARTABLE_SYSCALLS
918
919 dnl ----------------------------------------------------------------
920 dnl require POSIX regex
921 AC_CHECK_HEADERS( regex.h )
922 if test "$ac_cv_header_regex_h" != yes ; then
923         AC_MSG_ERROR([POSIX regex.h required.])
924 fi
925 AC_SEARCH_LIBS(regfree, [regex gnuregex],
926         :, AC_MSG_ERROR([POSIX regex required.]))
927
928 OL_POSIX_REGEX
929 if test "$ol_cv_c_posix_regex" = no ; then
930         AC_MSG_ERROR([broken POSIX regex!])
931 fi
932
933 dnl ----------------------------------------------------------------
934 dnl UUID Support
935
936 have_uuid=no
937 AC_CHECK_HEADERS(sys/uuid.h)
938 if test $ac_cv_header_sys_uuid_h = yes ; then
939         save_LIBS="$LIBS"
940         AC_SEARCH_LIBS(uuid_to_str, uuid, [have_uuid=yes], :)
941         LIBS="$save_LIBS"
942
943         if test have_uuid = yes ; then
944                 AC_DEFINE(HAVE_UUID_TO_STR,1,
945                         [define if you have uuid_to_str()])
946
947                 test "$ac_cv_search_uuid_to_str" = "none required" || \
948                         SLAPD_LIBS="$SLAPD_LIBS $ac_cv_search_uuid_to_str"
949         fi
950 fi
951
952 dnl For windows, check for the need of RPCRT for UUID function support
953 if test $have_uuid = no ; then
954         AC_MSG_CHECKING(to see if -lrpcrt4 is needed for win32 UUID support)
955         save_LIBS="$LIBS"
956         LIBS="$LIBS -lrpcrt4"
957         AC_TRY_LINK([
958                 char UuidCreate@4();
959                 char UuidToStringA@8();
960                 ],
961                 [
962                 UuidCreate@4();
963                 UuidToStringA@8();
964                 ],
965                 need_rpcrt=yes, need_rpcrt=no)
966         if test $need_rpcrt = yes; then
967                 SLAPD_LIBS="$SLAPD_LIBS -lrpcrt4"
968         fi
969         LIBS="$save_LIBS"
970         AC_MSG_RESULT($need_rpcrt)
971 fi
972
973 dnl ----------------------------------------------------------------
974 dnl Check for resolver routines
975 dnl       need to check for both res_query and __res_query
976 dnl   need to check -lc, -lbind, and -lresolv
977 ol_link_dnssrv=no
978 AC_CHECK_FUNC(res_query,:)
979 if test $ac_cv_func_res_query = no ; then 
980         AC_CHECK_FUNC(__res_query,:)
981         ac_cv_func_res_query=$ac_cv_func___res_query
982 fi
983
984 if test $ac_cv_func_res_query = no ; then 
985         AC_CHECK_LIB(bind, res_query)
986         ac_cv_func_res_query=$ac_cv_lib_bind_res_query
987 fi
988
989 if test $ac_cv_func_res_query = no ; then 
990         AC_CHECK_LIB(bind, __res_query)
991         ac_cv_func_res_query=$ac_cv_lib_bind___res_query
992 fi
993
994 if test $ac_cv_func_res_query = no ; then 
995         AC_CHECK_LIB(resolv, res_query)
996         ac_cv_func_res_query=$ac_cv_lib_resolv_res_query
997 fi
998
999 if test $ac_cv_func_res_query = no ; then 
1000         AC_CHECK_LIB(resolv, __res_query)
1001         ac_cv_func_res_query=$ac_cv_lib_resolv___res_query
1002 fi
1003
1004 if test "$ac_cv_func_res_query" = yes ; then
1005         AC_DEFINE(HAVE_RES_QUERY,1,
1006                 [define if you have res_query()])
1007
1008         if test $ol_enable_dnssrv != no ; then
1009                 ol_link_dnssrv=yes
1010         fi
1011 fi
1012
1013 if test "$ol_enable_dnssrv" = yes -a "$ol_link_dnssrv" = no ; then
1014         AC_MSG_ERROR([DNSSRV requires res_query()])
1015 fi
1016
1017 dnl ----------------------------------------------------------------
1018 dnl PF_INET6 support requires getaddrinfo and INET6_ADDRSTRLEN
1019 dnl PF_LOCAL may use getaddrinfo in available
1020 AC_CHECK_FUNCS( getaddrinfo getnameinfo gai_strerror inet_ntop )
1021
1022 ol_link_ipv6=no
1023 if test $ac_cv_func_getaddrinfo = no -o $ac_cv_func_inet_ntop = no ; then
1024         if test $ol_enable_ipv6 = yes ; then
1025                 AC_MSG_ERROR([IPv6 support requires getaddrinfo() and inet_ntop()])
1026         fi
1027 elif test $ol_enable_ipv6 != no ; then
1028         AC_CACHE_CHECK([INET6_ADDRSTRLEN],[ol_cv_inet6_addrstrlen],[
1029                 AC_EGREP_CPP(__has_inet6_addrstrlen__,[
1030 #                       include <netinet/in.h>
1031 #                       ifdef INET6_ADDRSTRLEN
1032                                 __has_inet6_addrstrlen__;
1033 #                       endif
1034                 ], [ol_cv_inet6_addrstrlen=yes], [ol_cv_inet6_addrstrlen=no])])
1035
1036
1037         AC_CACHE_CHECK([struct sockaddr_storage],ol_cv_struct_sockaddr_storage,[
1038                 AC_TRY_COMPILE([
1039 #include <sys/types.h>
1040 #include <sys/socket.h>
1041 ],[
1042                         struct sockaddr_storage ss;
1043 ],                      [ol_cv_struct_sockaddr_storage=yes],
1044                         [ol_cv_struct_sockaddr_storage=no])])
1045
1046         if test $ol_cv_inet6_addrstrlen = yes \
1047                 -a $ol_cv_struct_sockaddr_storage = yes ; then
1048                 ol_link_ipv6=yes
1049         elif test $ol_enable_ipv6 = yes \
1050                         -a $ol_cv_inet6_addrstrlen = no ; then
1051                 AC_MSG_ERROR([IPv6 support requires INET6_ADDRSTRLEN])
1052         elif test $ol_enable_ipv6 = yes \
1053                         -a $ol_cv_struct_sockaddr_storage = no ; then
1054                 AC_MSG_ERROR([IPv6 support requires struct sockaddr_storage])
1055         fi
1056 fi
1057
1058 if test $ol_enable_local != no ; then
1059         AC_CHECK_HEADERS( sys/un.h )
1060
1061         if test $ol_enable_local = auto ; then
1062                 ol_enable_local=$ac_cv_header_sys_un_h
1063         elif test $ac_cv_header_sys_un_h = no ; then
1064                 AC_MSG_ERROR([AF_LOCAL domain support requires sys/un.h])
1065         fi
1066 fi
1067
1068 dnl ----------------------------------------------------------------
1069 dnl Kerberos
1070 ol_link_kbind=no
1071 ol_link_kpasswd=no
1072 ol_link_krb5=no
1073 ol_link_krb4=no
1074
1075 if test $ol_with_kerberos = yes -o $ol_with_kerberos = auto \
1076         -o $ol_with_kerberos = k5 -o $ol_with_kerberos = k5only \
1077         -o $ol_with_kerberos = k425 ; then
1078
1079         AC_CHECK_HEADERS(krb5.h)
1080
1081         if test $ac_cv_header_krb5_h = yes ; then
1082                 dnl lazy check for Heimdal Kerberos
1083                 AC_CHECK_HEADERS(heim_err.h)
1084                 if test $ac_cv_header_heim_err_h = yes ; then
1085                         krb5_impl=heimdal
1086                 else
1087                         krb5_impl=mit
1088                 fi
1089
1090                 if test $krb5_impl = mit; then
1091                         AC_CHECK_LIB(k5crypto, main,
1092                                 [krb5crypto=k5crypto],
1093                                 [krb5crypto=crypto])
1094
1095                         AC_CHECK_LIB(krb5, main,
1096                                 [have_krb5=yes
1097                                 KRB5_LIBS="-lkrb5 -l$krb5crypto -lcom_err"],
1098                                 [have_krb5=no],
1099                                 [-l$krb5crypto -lcom_err])
1100
1101                 elif test $krb5_impl = heimdal; then
1102                         AC_CHECK_LIB(des, main,
1103                                 [krb5crypto=des],
1104                                 [krb5crypto=crypto])
1105
1106                         AC_CHECK_LIB(krb5, main,
1107                                 [have_krb5=yes
1108                                 KRB5_LIBS="-lkrb5 -l$krb5crypto -lasn1 -lroken -lcom_err"],
1109                                 [have_krb5=no],
1110                                 [-l$krb5crypto -lasn1 -lroken -lcom_err])
1111
1112                         AC_DEFINE(HAVE_HEIMDAL_KERBEROS, 1,
1113                                 [define if you have HEIMDAL Kerberos])
1114
1115                 else
1116                         have_krb5=no
1117                         AC_MSG_WARN([Unrecognized Kerberos5 Implementation])
1118                 fi
1119
1120                 if test $have_krb5 = yes ; then
1121                         ol_link_krb5=yes
1122
1123                         AC_DEFINE(HAVE_KRB5, 1,
1124                                 [define if you have Kerberos V])
1125
1126                         if test $ol_enable_kpasswd != no ; then
1127                                 ol_link_kpasswd=yes;
1128                         fi
1129
1130                         if test $ol_with_kerberos = k5only ; then
1131                                 ol_with_kerberos=found
1132                         fi
1133
1134                 elif test $ol_with_kerberos != auto ; then
1135                         AC_MSG_ERROR([Required Kerberos 5 support not available])
1136                 fi
1137
1138         fi
1139 fi
1140
1141 if test $ol_link_krb5 = yes -a \( $ol_with_kerberos = yes -o \
1142         $ol_with_kerberos = auto -o $ol_with_kerberos = k425 \) ; then
1143
1144         AC_CHECK_HEADERS(kerberosIV/krb.h kerberosIV/des.h)
1145
1146         if test $ac_cv_header_kerberosIV_krb_h = yes ; then
1147                 if test $krb5_impl = mit; then
1148                         AC_CHECK_LIB(krb4, main, [have_k425=yes
1149                                 KRB4_LIBS="-lkrb4 -ldes425"], [have_k425=no],
1150                                 [-ldes425 -lkrb5 -l$krb5crypto -lcom_err])
1151
1152                 elif test $krb5_impl = heimdal; then
1153                         AC_CHECK_LIB(krb4, main, [have_k425=yes
1154                                 KRB4_LIBS="-lkrb4"], [have_k425=no],
1155                                 [-lkrb5 -l$krb5crypto -lasn1 -lroken -lcom_err])
1156
1157                 else
1158                         have_425=no
1159                         AC_MSG_WARN([Unrecongized Kerberos V Implementation])
1160                 fi
1161
1162                 if test $have_k425 = yes ; then
1163                         ol_with_kerberos=found
1164                         ol_link_krb4=yes
1165
1166                         AC_DEFINE(HAVE_KRB425, 1,
1167                                 [define if you have Kerberos V with IV support])
1168                         AC_DEFINE(HAVE_KRB4, 1,
1169                                 [define if you have Kerberos IV])
1170
1171                         AC_CACHE_CHECK([for des_debug in Kerberos libraries],
1172                                 [ol_cv_var_des_debug], [
1173                                 dnl save the flags
1174                                 save_LIBS="$LIBS"
1175                                 LIBS="$KRB4_LIBS $KRB5_LIBS $LIBS"
1176                                 AC_TRY_LINK([
1177 #include <kerberosIV/krb.h>
1178 #include <kerberosIV/des.h>
1179 extern int des_debug;
1180 ],[
1181 des_debug = 1;
1182 ],                              ol_cv_var_des_debug=yes, ol_cv_var_des_debug=no)
1183                                 dnl restore the LIBS
1184                                 LIBS="$save_LIBS"
1185                         ])
1186
1187                         if test $ol_cv_var_des_debug = yes ; then
1188                                 AC_DEFINE(HAVE_DES_DEBUG,1,
1189                                         [define if you have Kerberos des_debug])
1190                         fi
1191
1192                         LIBS="$save_LIBS"
1193                 fi
1194         fi
1195 fi
1196
1197 if test $ol_link_krb5 = yes ; then
1198         ol_with_kerberos=found
1199 fi
1200
1201 if test $ol_with_kerberos = yes -o $ol_with_kerberos = auto \
1202         -o $ol_with_kerberos = k4 -o $ol_with_kerberos = kth ; then
1203
1204         AC_CHECK_HEADERS(krb.h des.h krb-archaeology.h )
1205
1206         if test $ac_cv_header_krb_h = yes ; then
1207                 AC_CHECK_LIB(krb, main, [have_k4=yes], [have_k4=no], [-ldes])
1208
1209                 if test $have_k4 = yes ; then
1210                         ol_with_kerberos=found
1211                         ol_link_krb4=yes
1212
1213                         AC_DEFINE(HAVE_KRB4, 1,
1214                                 [define if you have Kerberos IV])
1215
1216                         KRB4_LIBS="-lkrb -ldes"
1217
1218                         if test $ac_cv_header_krb_archaeology_h = yes ; then
1219                                 AC_DEFINE(HAVE_KTH_KERBEROS, 1,
1220                                         [define if you have Kth Kerberos])
1221                         fi
1222                 fi
1223         fi
1224 fi
1225
1226 if test $ol_link_krb4 = yes -a $ol_enable_kpasswd != no ; then
1227         ol_link_kpasswd=yes
1228 fi
1229
1230 if test $ol_link_krb4 = yes -a $ol_enable_kbind != no ; then
1231         ol_link_kbind=yes
1232
1233 elif test $ol_enable_kbind = yes ; then
1234         AC_MSG_ERROR([Kerberos IV detection failed])
1235 fi
1236
1237 if test $ol_link_krb4 = yes -o $ol_link_krb5 = yes ; then
1238         AC_DEFINE(HAVE_KERBEROS, 1, [define if you have Kerberos])
1239
1240 elif test $ol_with_kerberos != auto -a $ol_with_kerberos != no ; then
1241         AC_MSG_ERROR([Kerberos detection failed])
1242 fi
1243
1244 dnl ----------------------------------------------------------------
1245 dnl TLS/SSL
1246 ol_link_tls=no
1247 if test $ol_with_tls != no ; then
1248         AC_CHECK_HEADERS(openssl/ssl.h ssl.h)
1249         
1250         if test $ac_cv_header_openssl_ssl_h = yes \
1251                 -o $ac_cv_header_ssl_h = yes ; then
1252                 AC_CHECK_LIB(ssl, SSLeay_add_ssl_algorithms, 
1253                         [have_ssleay=yes
1254                         need_rsaref=no],
1255                         [have_ssleay=no],
1256                         [-lcrypto])
1257                         
1258                 if test $have_ssleay = no ; then
1259                         AC_CHECK_LIB(ssl, SSL_library_init,
1260                                 [have_ssleay=yes
1261                                 need_rsaref=no], [have_ssleay=no],
1262                                 [-lcrypto])
1263                 fi
1264
1265                 if test $have_ssleay = no ; then
1266                         AC_CHECK_LIB(ssl, ssl3_accept, 
1267                                 [have_ssleay=yes
1268                                 need_rsaref=yes], [have_ssleay=no],
1269                                 [-lcrypto -lRSAglue -lrsaref])
1270                 fi
1271
1272                 if test $have_ssleay = yes ; then
1273                         ol_with_tls=found
1274                         ol_link_tls=yes
1275
1276                         AC_DEFINE(HAVE_SSLEAY, 1, 
1277                                 [define if you have SSLeay or OpenSSL])
1278
1279                         if test $need_rsaref = yes; then
1280                                 AC_DEFINE(HAVE_RSAREF, 1, 
1281                                         [define if you have RSAref])
1282
1283                                 TLS_LIBS="-lssl -lcrypto -lRSAglue -lrsaref"
1284                         else
1285                                 TLS_LIBS="-lssl -lcrypto"
1286                         fi
1287                 fi
1288         fi
1289
1290 else
1291         AC_WARN([TLS data protection not supported!])
1292 fi
1293
1294 if test $ol_link_tls = yes ; then
1295         AC_DEFINE(HAVE_TLS, 1, [define if you have TLS])
1296
1297 elif test $ol_with_tls = auto ; then
1298         AC_WARN([Could not locate TLS/SSL package])
1299         AC_WARN([TLS data protection not supported!])
1300
1301 elif test $ol_with_tls != no ; then
1302         AC_ERROR([Could not locate TLS/SSL package])
1303 fi
1304
1305 dnl ----------------------------------------------------------------
1306 dnl LAN Manger password checking requires DES from OpenSSL
1307 if test $ol_enable_lmpasswd != no; then
1308         if test $ol_link_tls != yes ; then
1309                 AC_ERROR([LAN Manager passwords require OpenSSL])
1310         fi
1311
1312         AC_DEFINE(SLAPD_LMHASH, 1, [define to support LAN Manager passwords])
1313 fi
1314
1315 dnl ----------------------------------------------------------------
1316 dnl Threads?
1317 ol_link_threads=no
1318
1319 if test $ol_with_threads = auto -o $ol_with_threads = yes \
1320         -o $ol_with_threads = nt ; then
1321
1322         OL_NT_THREADS
1323
1324         if test "$ol_cv_nt_threads" = yes ; then
1325                 ol_link_threads=nt
1326                 ol_with_threads=found
1327                 ol_with_yielding_select=yes
1328
1329                 AC_DEFINE(HAVE_NT_SERVICE_MANAGER,1,[if you have NT Service Manager])
1330                 AC_DEFINE(HAVE_NT_EVENT_LOG,1,[if you have NT Event Log])
1331         fi
1332
1333         if test $ol_with_threads = nt ; then
1334                 AC_MSG_ERROR([could not locate NT Threads])
1335         fi
1336 fi
1337
1338 if test $ol_with_threads = auto -o $ol_with_threads = yes \
1339         -o $ol_with_threads = posix ; then
1340
1341         AC_CHECK_HEADERS(pthread.h)
1342
1343         if test $ac_cv_header_pthread_h = yes ; then
1344                 OL_POSIX_THREAD_VERSION
1345
1346                 if test $ol_cv_pthread_version != 0 ; then
1347                         AC_DEFINE_UNQUOTED(HAVE_PTHREADS,$ol_cv_pthread_version,
1348                                 [define to pthreads API spec revision])
1349                 else
1350                         AC_MSG_ERROR([unknown pthread version])
1351                 fi
1352
1353                 # consider threads found
1354                 ol_with_threads=found
1355
1356                 OL_HEADER_LINUX_THREADS
1357                 OL_HEADER_GNU_PTH_PTHREAD_H
1358
1359                 if test $ol_cv_header_gnu_pth_pthread_h = no ; then
1360                         AC_CHECK_HEADERS(sched.h)
1361                 fi
1362
1363                 dnl Now the hard part, how to link?
1364                 dnl
1365                 dnl currently supported checks:
1366                 dnl
1367                 dnl Check for no flags 
1368                 dnl     pthread_create() in $LIBS
1369                 dnl
1370                 dnl Check special pthread (final) flags
1371                 dnl     [skipped] pthread_create() with -mt (Solaris) [disabled]
1372                 dnl     pthread_create() with -kthread (FreeBSD)
1373                 dnl     pthread_create() with -pthread (FreeBSD/Digital Unix)
1374                 dnl     pthread_create() with -pthreads (?)
1375                 dnl     pthread_create() with -mthreads (AIX)
1376                 dnl     pthread_create() with -thread (?)
1377                 dnl
1378                 dnl Check pthread (final) libraries
1379                 dnl     pthread_mutex_unlock() in -lpthread -lmach -lexc -lc_r (OSF/1)
1380                 dnl     pthread_mutex_lock() in -lpthread -lmach -lexc (OSF/1)
1381                 dnl     [skipped] pthread_mutex_trylock() in -lpthread -lexc (OSF/1)
1382                 dnl     pthread_join() -Wl,-woff,85 -lpthread (IRIX)
1383                 dnl     pthread_create() in -lpthread (many)
1384                 dnl     pthread_create() in -lc_r (FreeBSD)
1385                 dnl
1386                 dnl Check pthread (draft4) flags (depreciated)
1387                 dnl     pthread_create() with -threads (OSF/1)
1388                 dnl
1389                 dnl Check pthread (draft4) libraries (depreciated)
1390                 dnl     pthread_mutex_unlock() in -lpthreads -lmach -lexc -lc_r (OSF/1)
1391                 dnl     pthread_mutex_lock() in -lpthreads -lmach -lexc (OSF/1)
1392                 dnl     pthread_mutex_trylock() in -lpthreads -lexc (OSF/1)
1393                 dnl     pthread_create() in -lpthreads (many)
1394                 dnl
1395
1396                 dnl pthread_create in $LIBS
1397                 AC_CACHE_CHECK([for pthread_create in default libraries],
1398                         ol_cv_pthread_create,[
1399                 AC_TRY_RUN(OL_PTHREAD_TEST_PROGRAM,
1400                         [ol_cv_pthread_create=yes],
1401                         [ol_cv_pthread_create=no],
1402                         [AC_TRY_LINK(OL_PTHREAD_TEST_INCLUDES,OL_PTHREAD_TEST_FUNCTION,
1403                                 [ol_cv_pthread_create=yes],
1404                                 [ol_cv_pthread_create=no])])])
1405
1406                 if test $ol_cv_pthread_create != no ; then
1407                         ol_link_threads=posix
1408                         ol_link_pthreads=""
1409                 fi
1410                 
1411 dnl             OL_PTHREAD_TRY([-mt],           [ol_cv_pthread_mt])
1412                 OL_PTHREAD_TRY([-kthread],      [ol_cv_pthread_kthread])
1413                 OL_PTHREAD_TRY([-pthread],      [ol_cv_pthread_pthread])
1414                 OL_PTHREAD_TRY([-pthreads],     [ol_cv_pthread_pthreads])
1415                 OL_PTHREAD_TRY([-mthreads],     [ol_cv_pthread_mthreads])
1416                 OL_PTHREAD_TRY([-thread],       [ol_cv_pthread_thread])
1417
1418                 OL_PTHREAD_TRY([-lpthread -lmach -lexc -lc_r],
1419                         [ol_cv_pthread_lpthread_lmach_lexc_lc_r])
1420                 OL_PTHREAD_TRY([-lpthread -lmach -lexc],
1421                         [ol_cv_pthread_lpthread_lmach_lexc])
1422 dnl             OL_PTHREAD_TRY([-lpthread -lexc],
1423 dnl                     [ol_cv_pthread_lpthread_lexc])
1424
1425                 OL_PTHREAD_TRY([-lpthread -Wl,-woff,85],
1426                         [ol_cv_pthread_lib_lpthread_woff])
1427
1428                 OL_PTHREAD_TRY([-lpthread],     [ol_cv_pthread_lpthread])
1429                 OL_PTHREAD_TRY([-lc_r],         [ol_cv_pthread_lc_r])
1430
1431                 OL_PTHREAD_TRY([-threads],      [ol_cv_pthread_threads])
1432
1433                 OL_PTHREAD_TRY([-lpthreads -lmach -lexc -lc_r],
1434                         [ol_cv_pthread_lpthreads_lmach_lexc_lc_r])
1435                 OL_PTHREAD_TRY([-lpthreads -lmach -lexc],
1436                         [ol_cv_pthread_lpthreads_lmach_lexc])
1437                 OL_PTHREAD_TRY([-lpthreads -lexc],
1438                         [ol_cv_pthread_lpthreads_lexc])
1439
1440                 OL_PTHREAD_TRY([-lpthreads],[ol_cv_pthread_lib_lpthreads])
1441
1442                 if test $ol_link_threads != no ; then
1443                         LTHREAD_LIBS="$LTHREAD_LIBS $ol_link_pthreads"
1444
1445                         dnl save flags
1446                         save_CPPFLAGS="$CPPFLAGS"
1447                         save_LIBS="$LIBS"
1448                         LIBS="$LTHREAD_LIBS $LIBS"
1449
1450                         dnl All POSIX Thread (final) implementations should have
1451                         dnl sched_yield instead of pthread yield.
1452                         dnl check for both, and thr_yield for Solaris
1453                         AC_CHECK_FUNCS(sched_yield pthread_yield thr_yield)
1454
1455                         if test $ac_cv_func_sched_yield = no -a \
1456                                 $ac_cv_func_pthread_yield = no -a \
1457                                 $ac_cv_func_thr_yield = no ; then
1458                                 dnl Digital UNIX has sched_yield() in -lrt
1459                                 AC_CHECK_LIB(rt, sched_yield,
1460                                         [LTHREAD_LIBS="$LTHREAD_LIBS -lrt"
1461                                         AC_DEFINE(HAVE_SCHED_YIELD,1,
1462                                                 [Define if you have the sched_yield function.])
1463                                         ac_cv_func_sched_yield=yes],
1464                                         [ac_cv_func_sched_yield=no])
1465                         fi
1466                         if test $ac_cv_func_sched_yield = no -a \
1467                                 $ac_cv_func_pthread_yield = no -a \
1468                                 "$ac_cv_func_thr_yield" = no ; then
1469                                 AC_MSG_WARN([could not locate sched_yield() or pthread_yield()])
1470                         fi
1471
1472                         dnl Check functions for compatibility
1473                         AC_CHECK_FUNCS(pthread_kill pthread_rwlock_destroy)
1474
1475                         dnl Check for pthread_detach with <pthread.h> inclusion
1476                         dnl as it's symbol may have been mangled.
1477                         AC_CACHE_CHECK([for pthread_detach with <pthread.h>],
1478                                 [ol_cv_func_pthread_detach], [
1479                                 dnl save the flags
1480                                 AC_TRY_LINK([
1481 #include <pthread.h>
1482 #ifndef NULL
1483 #define NULL (void*)0
1484 #endif
1485 ],
1486                                         [pthread_detach(NULL);],
1487                                         [ol_cv_func_pthread_detach=yes],
1488                                         [ol_cv_func_pthread_detach=no])
1489                         ])
1490
1491                         if test $ol_cv_func_pthread_detach = no ; then
1492                                 AC_MSG_ERROR([could not locate pthread_detach()])
1493                         fi
1494
1495                         AC_DEFINE(HAVE_PTHREAD_DETACH,1,
1496                                 [define if you have pthread_detach function])
1497
1498                         dnl Check for setconcurreny functions
1499                         AC_CHECK_FUNCS( \
1500                                 pthread_setconcurrency \
1501                                 pthread_getconcurrency \
1502                                 thr_setconcurrency \
1503                                 thr_getconcurrency \
1504                         )
1505
1506                         OL_SYS_LINUX_THREADS
1507                         OL_LINUX_THREADS
1508
1509                         if test $ol_cv_linux_threads = error; then
1510                                 AC_MSG_ERROR([LinuxThreads header/library mismatch]);
1511                         fi
1512
1513                         AC_CACHE_CHECK([if pthread_create() works],
1514                                 ol_cv_pthread_create_works,[
1515                         AC_TRY_RUN(OL_PTHREAD_TEST_PROGRAM,
1516                                 [ol_cv_pthread_create_works=yes],
1517                                 [ol_cv_pthread_create_works=no],
1518                                 [dnl assume yes
1519                                 ol_cv_pthread_create_works=yes])])
1520
1521                         if test $ol_cv_pthread_create_works = no ; then
1522                                 AC_MSG_ERROR([pthread_create is not usable, check environment settings])
1523                         fi
1524
1525                         dnl Check if select causes an yield
1526                         if test $ol_with_yielding_select = auto ; then
1527                                 AC_CACHE_CHECK([if select yields when using pthreads],
1528                                         ol_cv_pthread_select_yields,[
1529                                 AC_TRY_RUN([
1530 #include <sys/types.h>
1531 #include <sys/time.h>
1532 #include <unistd.h>
1533 #include <pthread.h>
1534 #ifndef NULL
1535 #define NULL (void*) 0
1536 #endif
1537
1538 static int fildes[2];
1539
1540 static void *task(p)
1541         void *p;
1542 {
1543         int i;
1544         struct timeval tv;
1545
1546         fd_set rfds;
1547
1548         tv.tv_sec=10;
1549         tv.tv_usec=0;
1550
1551         FD_ZERO(&rfds);
1552         FD_SET(fildes[0], &rfds);
1553
1554         /* we're not interested in any fds */
1555         i = select(FD_SETSIZE, &rfds, NULL, NULL, &tv);
1556
1557         if(i < 0) {
1558                 perror("select");
1559                 exit(10);
1560         }
1561
1562         exit(0); /* if we exit here, the select blocked the whole process */
1563 }
1564
1565 int main(argc, argv)
1566         int argc;
1567         char **argv;
1568 {
1569         pthread_t t;
1570
1571         /* create a pipe to select */
1572         if(pipe(&fildes[0])) {
1573                 perror("select");
1574                 exit(1);
1575         }
1576
1577 #ifdef HAVE_PTHREAD_SETCONCURRENCY
1578         (void) pthread_setconcurrency(2);
1579 #else
1580 #ifdef HAVE_THR_SETCONCURRENCY
1581         /* Set Solaris LWP concurrency to 2 */
1582         thr_setconcurrency(2);
1583 #endif
1584 #endif
1585
1586 #if HAVE_PTHREADS < 6
1587         pthread_create(&t, pthread_attr_default, task, NULL);
1588 #else
1589         pthread_create(&t, NULL, task, NULL);
1590 #endif
1591
1592         /* make sure task runs first */
1593 #if HAVE_THR_YIELD
1594         thr_yield();
1595 #elif defined( HAVE_SCHED_YIELD )
1596         sched_yield();
1597 #elif defined( HAVE_PTHREAD_YIELD )
1598         pthread_yield();
1599 #endif
1600
1601         exit(2);
1602 }],
1603                                 [ol_cv_pthread_select_yields=no],
1604                                 [ol_cv_pthread_select_yields=yes],
1605                                 [ol_cv_pthread_select_yields=cross])])
1606
1607                                 if test $ol_cv_pthread_select_yields = cross ; then
1608                                         AC_MSG_ERROR([crossing compiling: use --with-yielding_select=yes|no|manual])
1609                                 fi
1610
1611                                 if test $ol_cv_pthread_select_yields = yes ; then
1612                                         ol_with_yielding_select=yes
1613                                 fi
1614                         fi
1615
1616                         dnl restore flags
1617                         CPPFLAGS="$save_CPPFLAGS"
1618                         LIBS="$save_LIBS"
1619                 else
1620                         AC_MSG_ERROR([could not locate usable POSIX Threads])
1621                 fi
1622         fi
1623
1624         if test $ol_with_threads = posix ; then
1625                 AC_MSG_ERROR([could not locate POSIX Threads])
1626         fi
1627 fi
1628
1629 if test $ol_with_threads = auto -o $ol_with_threads = yes \
1630         -o $ol_with_threads = mach ; then
1631
1632         dnl check for Mach CThreads
1633         AC_CHECK_HEADERS(mach/cthreads.h cthreads.h)
1634         if test $ac_cv_header_mach_cthreads_h = yes ; then
1635                 ol_with_threads=found
1636
1637                 dnl check for cthreads support in current $LIBS
1638                 AC_CHECK_FUNC(cthread_fork,[ol_link_threads=yes])
1639
1640                 if test $ol_link_threads = no ; then
1641                         dnl try -all_load
1642                         dnl this test needs work
1643                         AC_CACHE_CHECK([for cthread_fork with -all_load],
1644                                 [ol_cv_cthread_all_load], [
1645                                 dnl save the flags
1646                                 save_LIBS="$LIBS"
1647                                 LIBS="-all_load $LIBS"
1648                                 AC_TRY_LINK([#include <mach/cthreads.h>],[
1649                                         cthread_fork((void *)0, (void *)0);
1650                                         ], ol_cv_cthread_all_load=yes, ol_cv_cthread_all_load=no)
1651                                 dnl restore the LIBS
1652                                 LIBS="$save_LIBS"
1653                         ])
1654
1655                         if test $ol_cv_cthread_all_load = yes ; then
1656                                 LTHREAD_LIBS="$LTHREAD_LIBS -all_load"
1657                                 ol_link_threads=mach
1658                                 ol_with_threads=found
1659                         fi
1660                 fi
1661
1662         elif test $ac_cv_header_cthreads_h = yes ; then
1663                 dnl Hurd variant of Mach Cthreads
1664                 dnl uses <cthreads.h> and -lthreads
1665
1666                 ol_with_threads=found
1667  
1668                 dnl save the flags
1669                 save_LIBS="$LIBS"
1670                 LIBS="$LIBS -lthreads"
1671                 AC_CHECK_FUNC(cthread_fork,[ol_link_threads=yes])
1672                 LIBS="$save_LIBS"
1673
1674                 if test $ol_link_threads = yes ; then
1675                         LTHREAD_LIBS="-lthreads"
1676                         ol_link_threads=mach
1677                         ol_with_threads=found
1678                 else
1679                         AC_MSG_ERROR([could not link with Mach CThreads])
1680                 fi
1681
1682         elif test $ol_with_threads = mach ; then
1683                 AC_MSG_ERROR([could not locate Mach CThreads])
1684         fi
1685
1686         if test $ol_link_threads = mach ; then
1687                 AC_DEFINE(HAVE_MACH_CTHREADS,1,
1688                         [define if you have Mach Cthreads])
1689         elif test $ol_with_threads = found ; then
1690                 AC_MSG_ERROR([could not link with Mach CThreads])
1691         fi
1692 fi
1693
1694 if test $ol_with_threads = auto -o $ol_with_threads = yes \
1695         -o $ol_with_threads = pth ; then
1696
1697         AC_CHECK_HEADERS(pth.h)
1698
1699         if test $ac_cv_header_pth_h = yes ; then
1700                 AC_CHECK_LIB(pth, pth_version, [have_pth=yes], [have_pth=no])
1701
1702                 if test $have_pth = yes ; then
1703                         AC_DEFINE(HAVE_GNU_PTH,1,[if you have GNU Pth])
1704                         LTHREAD_LIBS="$LTHREAD_LIBS -lpth"
1705                         ol_link_threads=pth
1706                         ol_with_threads=found
1707
1708                         if test $ol_with_yielding_select = auto ; then
1709                                 ol_with_yielding_select=yes
1710                         fi
1711                 fi
1712         fi
1713 fi
1714
1715 if test $ol_with_threads = auto -o $ol_with_threads = yes \
1716         -o $ol_with_threads = lwp ; then
1717
1718         dnl check for SunOS5 LWP
1719         AC_CHECK_HEADERS(thread.h synch.h)
1720         if test $ac_cv_header_thread_h = yes -a $ac_cv_header_synch_h = yes ; then
1721                 AC_CHECK_LIB(thread, thr_create, [have_thr=yes], [have_thr=no])
1722
1723                 if test $have_thr = yes ; then
1724                         AC_DEFINE(HAVE_THR,1,
1725                                 [if you have Solaris LWP (thr) package])
1726                         LTHREAD_LIBS="$LTHREAD_LIBS -lthread"
1727                         ol_link_threads=thr
1728
1729                         if test $ol_with_yielding_select = auto ; then
1730                                 ol_with_yielding_select=yes
1731                         fi
1732
1733                         dnl Check for setconcurreny functions
1734                         AC_CHECK_FUNCS( \
1735                                 thr_setconcurrency \
1736                                 thr_getconcurrency \
1737                         )
1738                 fi
1739         fi
1740
1741         dnl check for SunOS4 LWP
1742         AC_CHECK_HEADERS(lwp/lwp.h)
1743         if test $ac_cv_header_lwp_lwp_h = yes ; then
1744                 AC_CHECK_LIB(lwp, lwp_create, [have_lwp=yes], [have_lwp=no])
1745
1746                 if test $have_lwp = yes ; then
1747                         AC_DEFINE(HAVE_LWP,1,
1748                                 [if you have SunOS LWP package])
1749                         LTHREAD_LIBS="$LTHREAD_LIBS -llwp"
1750                         ol_link_threads=lwp
1751
1752                         if test $ol_with_yielding_select = auto ; then
1753                                 ol_with_yielding_select=no
1754                         fi
1755                 fi
1756         fi
1757 fi
1758
1759 if test $ol_with_yielding_select = yes ; then
1760         AC_DEFINE(HAVE_YIELDING_SELECT,1,
1761                 [define if select implicitly yields])
1762 fi
1763
1764 if test $ol_with_threads = manual ; then
1765         dnl User thinks he can manually configure threads.
1766         ol_link_threads=yes
1767
1768         AC_MSG_WARN([thread defines and link options must be set manually])
1769
1770         AC_CHECK_HEADERS(pthread.h sched.h)
1771         AC_CHECK_FUNCS(sched_yield pthread_yield)
1772         OL_HEADER_LINUX_THREADS
1773
1774         AC_CHECK_HEADERS(mach/cthreads.h)
1775         AC_CHECK_HEADERS(lwp/lwp.h)
1776         AC_CHECK_HEADERS(thread.h synch.h)
1777 fi
1778
1779 if test $ol_link_threads != no -a $ol_link_threads != nt ; then  
1780         dnl needed to get reentrant/threadsafe versions
1781         dnl
1782         AC_DEFINE(REENTRANT,1)
1783         AC_DEFINE(_REENTRANT,1)
1784         AC_DEFINE(THREAD_SAFE,1)
1785         AC_DEFINE(_THREAD_SAFE,1)
1786         AC_DEFINE(THREADSAFE,1)
1787         AC_DEFINE(_THREADSAFE,1)
1788         AC_DEFINE(_SGI_MP_SOURCE,1)
1789
1790         dnl The errno declaration may dependent upon _REENTRANT.
1791         dnl If it does, we must link with thread support.
1792         AC_CACHE_CHECK([for thread specific errno],
1793                 [ol_cv_errno_thread_specific], [
1794                 AC_TRY_LINK([#include <errno.h>], [errno = 0;],
1795                         [ol_cv_errno_thread_specific=yes],
1796                         [ol_cv_errno_thread_specific=no])
1797         ])
1798
1799         dnl The h_errno declaration may dependent upon _REENTRANT.
1800         dnl If it does, we must link with thread support.
1801         AC_CACHE_CHECK([for thread specific h_errno],
1802                 [ol_cv_h_errno_thread_specific], [
1803                 AC_TRY_LINK([#include <netdb.h>], [h_errno = 0;],
1804                         [ol_cv_h_errno_thread_specific=yes],
1805                         [ol_cv_h_errno_thread_specific=no])
1806         ])
1807
1808         if test $ol_cv_errno_thread_specific != yes \
1809                 -o $ol_cv_h_errno_thread_specific != yes ; then
1810                 LIBS="$LTHREAD_LIBS $LIBS"
1811                 LTHREAD_LIBS=""
1812         fi
1813
1814 dnl When in thread environment, use 
1815 dnl             #if defined( HAVE_REENTRANT_FUNCTIONS ) || defined( HAVE_FUNC_R )
1816 dnl                     func_r(...);
1817 dnl             #else
1818 dnl             #       if defined( HAVE_THREADS ) 
1819 dnl                             /* lock */
1820 dnl             #       endif
1821 dnl                             func(...);
1822 dnl             #       if defined( HAVE_THREADS ) 
1823 dnl                             /* unlock */
1824 dnl             #       endif
1825 dnl             #endif
1826 dnl
1827 dnl HAVE_REENTRANT_FUNCTIONS is derived from:
1828 dnl             _POSIX_REENTRANT_FUNCTIONS
1829 dnl             _POSIX_THREAD_SAFE_FUNCTIONS
1830 dnl             _POSIX_THREADSAFE_FUNCTIONS
1831 dnl
1832 dnl             and is currently defined in <ldap_pvt_thread.h>
1833 dnl
1834 dnl HAVE_THREADS is defined by <ldap_pvt_thread.h> iff -UNO_THREADS
1835 dnl 
1836 dnl libldap/*.c should only include <ldap_pvt_thread.h> iff
1837 dnl LDAP_R_COMPILE is defined.  ie:
1838 dnl             #ifdef LDAP_R_COMPILE
1839 dnl             #       include <ldap_pvt_thread.h>
1840 dnl             #endif
1841 dnl
1842 dnl LDAP_R_COMPILE is defined by libldap_r/Makefile.in
1843 dnl specifically for compiling the threadsafe version of
1844 dnl     the ldap library (-lldap_r).
1845 dnl             
1846 dnl     dnl check for reentrant/threadsafe functions
1847 dnl     dnl
1848 dnl     dnl note: these should only be used when linking
1849 dnl     dnl             with $LTHREAD_LIBS
1850 dnl     dnl
1851 dnl     save_CPPFLAGS="$CPPFLAGS"
1852 dnl     save_LIBS="$LIBS"
1853 dnl     LIBS="$LTHREAD_LIBS $LIBS"
1854 dnl     AC_CHECK_FUNCS( \
1855 dnl             gmtime_r \
1856 dnl             gethostbyaddr_r gethostbyname_r \
1857 dnl             feof_unlocked unlocked_feof \
1858 dnl             putc_unlocked unlocked_putc \
1859 dnl             flockfile ftrylockfile \
1860 dnl     )
1861 dnl     CPPFLAGS="$save_CPPFLAGS"
1862 dnl     LIBS="$save_LIBS"
1863 fi  
1864
1865 if test $ol_link_threads = no ; then
1866         if test $ol_with_threads = yes ; then
1867                 AC_MSG_ERROR([no suitable thread support])
1868         fi
1869
1870         if test $ol_with_threads = auto ; then
1871                 AC_MSG_WARN([no suitable thread support, disabling threads])
1872                 ol_with_threads=no
1873         fi
1874
1875         AC_DEFINE(NO_THREADS,1,
1876                 [define if you have (or want) no threads])
1877         LTHREAD_LIBS=""
1878 fi
1879
1880 if test $ol_link_threads != no ; then
1881         AC_DEFINE(LDAP_API_FEATURE_X_OPENLDAP_THREAD_SAFE,1)
1882 fi
1883
1884 dnl ----------------------------------------------------------------
1885 dnl Tests for reentrant functions necessary to build -lldap_r
1886 AC_CHECK_FUNCS(         \
1887         ctime_r                 \
1888         gethostbyname_r gethostbyaddr_r \
1889 )
1890
1891 if test "$ac_cv_func_ctime_r" = no ; then
1892         ol_cv_func_ctime_r_nargs=0
1893 else
1894         OL_FUNC_CTIME_R_NARGS
1895 dnl     OL_FUNC_CTIME_R_TYPE
1896 fi
1897
1898 if test "$ac_cv_func_gethostbyname_r" = yes ; then
1899         OL_FUNC_GETHOSTBYNAME_R_NARGS
1900 else
1901         ol_cv_func_gethostbyname_r_nargs=0
1902 fi
1903  
1904 if test "$ac_cv_func_gethostbyaddr_r" = yes ; then
1905         OL_FUNC_GETHOSTBYADDR_R_NARGS
1906 else
1907         ol_cv_func_gethostbyaddr_r_nargs=0
1908 fi
1909
1910 dnl ----------------------------------------------------------------
1911 ol_link_ldbm=no 
1912
1913 if test $ol_with_ldbm_api = auto \
1914         -o $ol_with_ldbm_api = berkeley \
1915         -o $ol_with_ldbm_api = bcompat ; then
1916
1917         if test $ol_with_ldbm_api = bcompat; then \
1918                 OL_BERKELEY_COMPAT_DB
1919         else
1920                 OL_BERKELEY_DB
1921         fi
1922
1923         if test $ol_cv_berkeley_db != no ; then
1924                 AC_DEFINE(HAVE_BERKELEY_DB,1,
1925                         [define this if Berkeley DB is available])
1926
1927                 ol_link_ldbm=berkeley
1928                 ol_with_ldbm_api=berkeley
1929
1930                 if test $ol_with_ldbm_type = hash ; then
1931                         AC_DEFINE(LDBM_USE_DBHASH,1,
1932                                 [define this to use DBHASH w/ LDBM backend])
1933                 else
1934                         AC_DEFINE(LDBM_USE_DBBTREE,1,
1935                                 [define this to use DBBTREE w/ LDBM backend])
1936                 fi
1937
1938                 dnl $ol_cv_lib_db should be yes or -ldb
1939                 dnl (it could be no, but that would be an error
1940                 if test $ol_cv_lib_db != yes ; then
1941                         LDBM_LIBS="$LDBM_LIBS $ol_cv_lib_db"
1942                 fi
1943         fi
1944 fi
1945
1946 if test $ol_enable_bdb = yes -a $ol_link_ldbm != berkeley ; then
1947         AC_MSG_ERROR(BDB: BerkeleyDB not available)
1948 elif test $ol_enable_bdb != no -a $ol_link_ldbm = berkeley ; then
1949         OL_BDB_COMPAT
1950
1951         if test $ol_cv_bdb_compat = yes ; then
1952                 ol_enable_bdb=yes
1953         elif test $ol_enable_bdb = yes ; then
1954                 AC_MSG_ERROR(BDB: BerkeleyDB version incompatible)
1955         else
1956                 ol_enable_bdb=no
1957         fi
1958 fi
1959 if test $ol_enable_hdb = yes -a $ol_link_ldbm != berkeley ; then
1960         AC_MSG_ERROR(HDB: BerkeleyDB not available)
1961 fi
1962
1963 if test $ol_link_ldbm = no -a $ol_with_ldbm_type = btree ; then
1964         AC_MSG_WARN(Could not find LDBM with BTREE support)
1965         ol_with_ldbm_api=none
1966 fi
1967
1968 if test $ol_with_ldbm_api = auto -o $ol_with_ldbm_api = mdbm ; then
1969         OL_MDBM
1970
1971         if test $ol_cv_mdbm = yes ; then
1972                 ol_link_ldbm=mdbm
1973                 ol_with_ldbm_api=mdbm
1974                 if test $ol_cv_lib_mdbm != yes ; then
1975                         LDBM_LIBS="$LDBM_LIBS $ol_cv_lib_mdbm"
1976                 fi
1977         fi
1978 fi
1979
1980 if test $ol_with_ldbm_api = auto -o $ol_with_ldbm_api = gdbm ; then
1981         OL_GDBM
1982
1983         if test $ol_cv_gdbm = yes ; then
1984                 ol_link_ldbm=gdbm
1985                 ol_with_ldbm_api=gdbm
1986
1987                 if test $ol_cv_lib_gdbm != yes ; then
1988                         LDBM_LIBS="$LDBM_LIBS $ol_cv_lib_gdbm"
1989                 fi
1990         fi
1991 fi
1992
1993 if test $ol_with_ldbm_api = ndbm ; then
1994         OL_NDBM
1995
1996         if test $ol_cv_ndbm = yes ; then
1997                 ol_link_ldbm=ndbm
1998                 ol_with_ldbm_api=ndbm
1999
2000                 if test $ol_cv_lib_ndbm != yes ; then
2001                         LDBM_LIBS="$LDBM_LIBS $ol_cv_lib_ndbm"
2002                 fi
2003         fi
2004 fi
2005
2006 if test $ol_link_ldbm = no -a $ol_enable_ldbm != no ; then
2007         AC_MSG_WARN(could not find suitable LDBM backend)
2008         if test $ol_enable_ldbm = yes ; then
2009                 AC_MSG_ERROR(select appropriate LDBM options or disable)
2010         fi
2011
2012         AC_MSG_WARN(disabling LDBM)
2013         ol_enable_ldbm=no
2014 fi
2015
2016 dnl ----------------------------------------------------------------
2017
2018 if test $ol_enable_dynamic = yes -a $enable_shared = yes ; then
2019         BUILD_LIBS_DYNAMIC=shared
2020         AC_DEFINE(LDAP_LIBS_DYNAMIC, 1, [define if LDAP libs are dynamic])
2021         LTSTATIC=""
2022 else
2023         BUILD_LIBS_DYNAMIC=static
2024         LTSTATIC="-static"
2025 fi
2026 AC_SUBST(LTSTATIC)dnl
2027
2028 dnl ----------------------------------------------------------------
2029 if test $ol_enable_wrappers != no ; then
2030         AC_CHECK_HEADERS(tcpd.h,[
2031                 AC_MSG_CHECKING([for TCP wrappers library])
2032                 save_LIBS="$LIBS"
2033                 LIBS="$LIBS -lwrap"
2034                 AC_TRY_LINK([
2035 #include <tcpd.h>
2036 int allow_severity = 0;
2037 int deny_severity  = 0;
2038
2039 struct request_info *req;
2040                 ],[
2041 hosts_access(req)
2042                 ],[AC_MSG_RESULT([-lwrap])
2043                 have_wrappers=yes
2044                 LIBS="$save_LIBS"],[
2045                 dnl try with -lnsl
2046                 LIBS="$LIBS -lnsl"
2047                 AC_TRY_LINK([
2048 #include <tcpd.h>
2049 int allow_severity = 0;
2050 int deny_severity  = 0;
2051
2052 struct request_info *req;
2053                 ],[
2054 hosts_access(req)
2055                 ],[AC_MSG_RESULT([-lwrap -lnsl])
2056                 have_wrappers=yes
2057                 LIBS="$save_LIBS -lnsl"],[
2058                 AC_MSG_RESULT(no)
2059                 have_wrappers=no
2060                 LIBS=$save_LIBS])],[
2061                 have_wrappers=no])],[have_wrappers=no])
2062
2063         if test $have_wrappers = yes ; then
2064                 AC_DEFINE(HAVE_TCPD,1, [define if you have -lwrap])
2065                 WRAP_LIBS="-lwrap"
2066         elif test $ol_enable_wrappers = yes ; then
2067                 AC_MSG_ERROR([could not find TCP wrappers, select apppropriate options ore disable])
2068         else
2069                 AC_MSG_WARN([could not find TCP wrappers, support disabled])
2070                 WRAP_LIBS=""
2071         fi
2072 fi
2073
2074 dnl ----------------------------------------------------------------
2075 if test $ol_enable_syslog != no ; then
2076         AC_CHECK_FUNC(openlog)
2077         if test $ac_cv_func_openlog = no -a $ol_enable_syslog = yes; then
2078                 AC_MSG_ERROR(could not find syslog, select appropriate options or disable)
2079         fi
2080         ol_enable_syslog=$ac_cv_func_openlog
2081 fi
2082
2083 dnl ----------------------------------------------------------------
2084 dnl dmalloc support (deprecated in favor of -DCSRIMALLOC support)
2085 dnl if test $ol_enable_dmalloc != no ; then
2086 dnl     AC_CHECK_HEADERS(dmalloc.h)
2087 dnl     AC_CHECK_LIB(dmalloc, dmalloc_shutdown)
2088 dnl fi
2089
2090 dnl ----------------------------------------------------------------
2091 dnl SQL
2092 ol_link_sql=no
2093 if test $ol_enable_sql != no ; then
2094         AC_CHECK_HEADERS(sql.h sqlext.h,[],[
2095                 AC_MSG_ERROR([could not locate SQL headers])
2096         ])
2097
2098         AC_CHECK_LIB(iodbc,SQLDriverConnect,[have_iodbc=yes],[have_iodbc=no])
2099         if test $have_iodbc = yes ; then
2100                 ol_link_sql="-liodbc"
2101         else
2102                 AC_CHECK_LIB(odbc,SQLDriverConnect,[have_odbc=yes],[have_odbc=no])
2103                 if test $have_odbc = yes ; then
2104                         ol_link_sql="-lodbc"
2105                 fi
2106         fi
2107
2108         if test $ol_link_sql != no ; then
2109                 SLAPD_SQL_LIBS="$ol_link_sql"
2110
2111         elif test $ol_enable_sql != auto ; then
2112                 AC_MSG_ERROR([could not locate suitable ODBC library])
2113         fi
2114 fi
2115
2116 dnl ----------------------------------------------------------------
2117 dnl ud needs termcap (should insert check here)
2118 ol_link_termcap=no
2119 AC_CHECK_HEADERS(termcap.h ncurses.h)
2120
2121 if test $ol_link_termcap = no ; then
2122         AC_CHECK_LIB(termcap, tputs, [have_termcap=yes], [have_termcap=no])
2123         if test $have_termcap = yes ; then
2124                 AC_DEFINE(HAVE_TERMCAP, 1, [define if you have -ltermcap])
2125                 ol_link_termcap=yes
2126                 TERMCAP_LIBS=-ltermcap
2127         fi
2128 fi
2129
2130 if test $ol_link_termcap = no ; then
2131         AC_CHECK_LIB(ncurses, initscr, [have_ncurses=yes], [have_ncurses=no])
2132         if test $have_ncurses = yes ; then
2133                 AC_DEFINE(HAVE_NCURSES, 1, [define if you have -lncurses])
2134                 ol_link_termcap=yes
2135                 TERMCAP_LIBS=-lncurses
2136         fi
2137 fi
2138
2139 if test $ol_link_termcap = no ; then
2140         AC_DEFINE(NO_TERMCAP,1, [define if you have no termcap support])
2141         TERMCAP_LIBS=
2142 fi
2143
2144 dnl ----------------------------------------------------------------
2145 dnl
2146 dnl Check for Cyrus SASL
2147 dnl
2148 ol_link_sasl=no
2149 ol_link_spasswd=no
2150 if test $ol_with_cyrus_sasl != no ; then
2151         AC_CHECK_HEADERS(sasl/sasl.h sasl.h)
2152
2153         if test $ac_cv_header_sasl_sasl_h = yes -o $ac_cv_header_sasl_h = yes; then
2154                 AC_CHECK_LIB(sasl2, sasl_client_init,
2155                         [ol_link_sasl="-lsasl2"],
2156                         [AC_CHECK_LIB(sasl, sasl_client_init,
2157                                 [ol_link_sasl="-lsasl"])])
2158         fi
2159
2160         if test $ol_link_sasl = no ; then
2161                 if test $ol_with_cyrus_sasl != auto ; then
2162                         AC_MSG_ERROR([Could not locate Cyrus SASL])
2163                 else
2164                         AC_MSG_WARN([Could not locate Cyrus SASL])
2165                         AC_MSG_WARN([SASL authentication not supported!])
2166                         if test $ol_link_tls = no ; then
2167                                 AC_MSG_WARN([Strong authentication not supported!])
2168                         fi
2169                 fi
2170         else
2171                 OL_SASL_COMPAT
2172                 if test $ol_cv_sasl_compat = no ; then
2173                         ol_link_sasl=no
2174                         AC_MSG_ERROR([Cyrus SASL library located but incompatible])
2175                 fi
2176
2177                 AC_DEFINE(HAVE_CYRUS_SASL,1,[define if you have Cyrus SASL])
2178                 SASL_LIBS="$ol_link_sasl"
2179                 if test $ol_enable_spasswd != no ; then
2180                         ol_link_spasswd=yes
2181                 fi
2182
2183                 ac_save_LIBS="$LIBS"
2184                 LIBS="$LIBS $ol_link_sasl"
2185                 AC_CHECK_FUNC(sasl_version, [AC_DEFINE(HAVE_SASL_VERSION,1,
2186                         [define if your SASL library has sasl_version()])])
2187                 LIBS="$ac_save_LIBS"
2188         fi
2189
2190 else
2191         AC_MSG_WARN([SASL authentication not supported!])
2192         if test $ol_link_tls = no ; then
2193                 AC_MSG_WARN([Strong authentication not supported!])
2194         fi
2195 fi
2196
2197 dnl ----------------------------------------------------------------
2198 dnl Check for entropy sources
2199 if test $cross_compiling != yes -a "$ac_cv_mingw32" != yes ; then
2200         dev=no
2201         if test -r /dev/urandom ; then
2202                 dev="/dev/urandom";
2203         elif test -r /idev/urandom ; then
2204                 dev="/idev/urandom";
2205         elif test -r /dev/srandom ; then
2206                 dev="/dev/srandom";
2207         elif test -r /dev/random ; then
2208                 dev="/dev/random";
2209         elif test -r /idev/random ; then
2210                 dev="/idev/random";
2211         fi
2212
2213         if test $dev != no ; then
2214                 AC_DEFINE_UNQUOTED(URANDOM_DEVICE,"$dev",[set to urandom device])
2215         fi
2216 fi
2217
2218 dnl ----------------------------------------------------------------
2219 dnl
2220 dnl Check for fetch URL support
2221 dnl             should be extended to support other fetch URL APIs
2222 dnl
2223 ol_link_fetch=no
2224 if test $ol_with_fetch != no ; then
2225         OL_LIB_FETCH
2226
2227         if test $ol_cv_lib_fetch != no ; then
2228                 LDIF_LIBS="$LDIF_LIBS $ol_link_fetch"
2229                 ol_link_fetch=freebsd
2230
2231         elif test $ol_with_fetch != auto ; then
2232                 AC_MSG_ERROR(no suitable API for --with-fetch=$ol_with_fetch)
2233         fi 
2234 fi
2235
2236 dnl ----------------------------------------------------------------
2237 dnl FreeBSD (and others) have crypt(3) in -lcrypt
2238 if test $ol_enable_crypt != no ; then
2239         save_LIBS="$LIBS"
2240         LIBS="$TLS_LIBS $LIBS"
2241
2242         AC_CHECK_FUNC(crypt, [have_crypt=yes], [
2243                 LIBS="$save_LIBS"
2244                 AC_CHECK_LIB(crypt, crypt, [LUTIL_LIBS="$LUTIL_LIBS -lcrypt"
2245                         have_crypt=yes], [have_crypt=no])])
2246
2247         LIBS="$save_LIBS"
2248
2249         if test $have_crypt = yes ; then
2250                 AC_DEFINE(HAVE_CRYPT,1, [define if crypt(3) is available])
2251         else
2252                 AC_MSG_WARN(could not find crypt)
2253                 if test $ol_enable_crypt = yes ; then
2254                         AC_MSG_ERROR(could not find crypt, select appropriate options or disable)
2255                 fi
2256
2257                 AC_MSG_WARN(disabling crypt support)
2258                 ol_enable_crypt=no
2259         fi
2260 fi
2261
2262 dnl ----------------------------------------------------------------
2263 dnl FreeBSD (and others) have setproctitle(3) in -lutil
2264 if test $ol_enable_proctitle != no ; then
2265         AC_CHECK_FUNC(setproctitle,     [have_setproctitle=yes], [
2266                 AC_CHECK_LIB(util, setproctitle,
2267                         [have_setproctitle=yes
2268                         LUTIL_LIBS="$LUTIL_LIBS -lutil"],
2269                         [have_setproctitle=no
2270                         LIBOBJS="$LIBOBJS setproctitle.o"
2271                         LIBSRCS="$LIBSRCS setproctitle.c"])])
2272
2273         if test $have_setproctitle = yes ; then
2274                 AC_DEFINE(HAVE_SETPROCTITLE,1,
2275                         [define if setproctitle(3) is available])
2276         fi
2277 fi
2278
2279 dnl ----------------------------------------------------------------
2280 dnl Check for SLPv2 Compliant API Library
2281 if test $ol_enable_slp != no ; then
2282         AC_CHECK_HEADERS( slp.h )
2283
2284         if test $ac_cv_header_slp_h = yes ; then
2285                 AC_CHECK_LIB(slp, SLPOpen, [have_slp=yes], [have_slp=no])
2286                 if test $have_slp = yes ; then
2287                         AC_DEFINE(HAVE_SLP, 1, [define if you have -lslp])
2288                         SLAPD_SLP_LIBS=-lslp
2289                 fi
2290
2291         elif test $ol_enable_slp = yes ; then
2292                 AC_MSG_ERROR([SLP not found])
2293         fi
2294 fi
2295
2296 dnl ----------------------------------------------------------------
2297 dnl Checks for typedefs, structures, and compiler characteristics.
2298 AC_TYPE_MODE_T
2299 AC_TYPE_OFF_T
2300 AC_TYPE_PID_T
2301 AM_TYPE_PTRDIFF_T
2302 AC_TYPE_SIGNAL
2303 AC_TYPE_SIZE_T
2304
2305 AC_CHECK_TYPE(ssize_t, [signed int])
2306 AC_CHECK_TYPE(caddr_t,  [char *])
2307
2308 OL_TYPE_SOCKLEN_T
2309 AC_STRUCT_ST_BLKSIZE
2310 AC_HEADER_TIME
2311 AC_STRUCT_TM
2312 AC_TYPE_UID_T
2313 OL_TYPE_SIG_ATOMIC_T
2314
2315 dnl AC_TYPE_GETGROUPS
2316
2317 OL_STRUCT_PASSWD_PW_GECOS
2318 OL_STRUCT_PASSWD_PW_PASSWD
2319
2320 OL_C_UPPER_LOWER
2321 AC_C_CONST
2322 OL_C_VOLATILE
2323
2324 if test $cross_compiling = yes ; then
2325         AC_DEFINE(CROSS_COMPILING, 1, [define if cross compiling])
2326 else
2327         AC_C_BIGENDIAN
2328 fi
2329
2330 AC_COMPILE_CHECK_SIZEOF(short) 
2331 AC_COMPILE_CHECK_SIZEOF(int) 
2332 AC_COMPILE_CHECK_SIZEOF(long)
2333
2334 if test "$ac_cv_sizeof_int" -lt 4 ; then
2335         AC_MSG_WARN([OpenLDAP requires 'int' to be 32 bits or greater.])
2336
2337         AC_DEFINE(LBER_INT_T,long)
2338 else
2339         AC_DEFINE(LBER_INT_T,int)
2340 fi
2341
2342 AC_DEFINE(LBER_LEN_T,long)
2343 AC_DEFINE(LBER_SOCKET_T,int)
2344 AC_DEFINE(LBER_TAG_T,long)
2345
2346 dnl ----------------------------------------------------------------
2347 dnl Checks for library functions.
2348 AC_FUNC_MEMCMP
2349 dnl AM_FUNC_MKTIME dnl checks for sys/time.h and unistd.h
2350 AC_FUNC_STRFTIME
2351 dnl AM_FUNC_STRTOD
2352
2353 OL_FUNC_INET_ATON
2354
2355 dnl Check for NT specific routines
2356 AC_CHECK_FUNC(_spawnlp, AC_DEFINE(HAVE_SPAWNLP,1,[if you have spawnlp()]))
2357
2358 AC_CHECK_FUNC(_snprintf, [ac_cv_func_snprintf=yes
2359         AC_DEFINE(snprintf, _snprintf, [define to snprintf routine])
2360 ])
2361
2362 AC_CHECK_FUNC(_vsnprintf, [ac_cv_func_vsnprintf=yes
2363         AC_DEFINE(vsnprintf, _vsnprintf, [define to vsnprintf routine])
2364 ])
2365
2366 AC_FUNC_VPRINTF
2367
2368 if test $ac_cv_func_vprintf = yes ; then
2369         dnl check for vsnprintf
2370         AC_CHECK_FUNCS(snprintf vsnprintf)
2371 fi
2372
2373 AC_CHECK_FUNCS(         \
2374         bcopy                   \
2375         closesocket             \
2376         chroot                  \
2377         endgrent                \
2378         endpwent                \
2379         fcntl                   \
2380         flock                   \
2381         fstat                   \
2382         getdtablesize   \
2383         getgrgid                \
2384         gethostname             \
2385         getpass                 \
2386         getpassphrase   \
2387         getpwuid                \
2388         getpwnam                \
2389         getspnam                \
2390         gettimeofday    \
2391         initgroups              \
2392         lockf                   \
2393         memcpy                  \
2394         memmove                 \
2395         mkstemp                 \
2396         mktemp                  \
2397         pipe                    \
2398         read                    \
2399         recv                    \
2400         recvfrom                \
2401         setpwfile               \
2402         setgid                  \
2403         setegid                 \
2404         setsid                  \
2405         setuid                  \
2406         seteuid                 \
2407         sigaction               \
2408         signal                  \
2409         sigset                  \
2410         strdup                  \
2411         strerror                \
2412         strpbrk                 \
2413         strrchr                 \
2414         strsep                  \
2415         strstr                  \
2416         strtol                  \
2417         strtoul                 \
2418         strspn                  \
2419         sysconf                 \
2420         usleep                  \
2421         waitpid                 \
2422         wait4                   \
2423         write                   \
2424         send                    \
2425         sendmsg                 \
2426         sendto                  \
2427 )
2428
2429 dnl We actually may need to replace more than this.
2430 AC_REPLACE_FUNCS(getopt getpeereid)
2431
2432 if test "$ac_cv_func_getopt" != yes; then
2433         LIBSRCS="$LIBSRCS getopt.c"
2434 fi
2435 if test "$ac_cv_func_getpeereid" != yes; then
2436         OL_MSGHDR_MSG_ACCRIGHTS
2437         LIBSRCS="$LIBSRCS getpeereid.c"
2438 fi
2439 if test "$ac_cv_func_snprintf" != yes -o "$ac_cv_func_vsnprintf" != yes; then
2440         if test "$ac_cv_func_snprintf" != yes; then
2441                 AC_DEFINE(snprintf, ber_pvt_snprintf, [define to snprintf routine])
2442         fi
2443         if test "$ac_cv_func_vsnprintf" != yes; then
2444                 AC_DEFINE(vsnprintf, ber_pvt_vsnprintf, [define to snprintf routine])
2445         fi
2446 fi
2447
2448 dnl ----------------------------------------------------------------
2449 # Check Configuration
2450 OL_SYS_ERRLIST
2451
2452 dnl ----------------------------------------------------------------
2453 dnl Sort out defines
2454
2455 if test "$ol_enable_slapi" != no ; then
2456         dnl This check is donel also if --enable-modules is used;
2457         dnl it is duplicated here, 'cause it'd be cached anyway
2458         AC_CHECK_HEADERS(ltdl.h)
2459
2460         if test $ac_cv_header_ltdl_h != yes ; then
2461                 AC_MSG_ERROR([could not locate <ltdl.h>])
2462         fi
2463         AC_CHECK_LIB(ltdl, lt_dlinit, [
2464                 SLAPI_LIBS=-lltdl
2465                 LIBSLAPI=libslapi.a
2466                 LIBSLAPITOOLS=../libslapi.a
2467                 AC_DEFINE(HAVE_LIBLTDL,1,[define if you have libtool -ltdl])
2468         ],[AC_MSG_ERROR([could not locate libtool -lltdl])])
2469
2470         AC_DEFINE(LDAP_SLAPI,1, [define this to add SLAPI code])
2471 fi
2472
2473 if test "$ol_enable_debug" != no ; then
2474         AC_DEFINE(LDAP_DEBUG,1,
2475                 [define this to add debugging code])
2476 fi
2477 if test "$ol_enable_syslog" = yes ; then
2478         AC_DEFINE(LDAP_SYSLOG,1,
2479                 [define this to add syslog code])
2480 fi
2481 if test "$ol_link_kbind" != no ; then
2482         AC_DEFINE(LDAP_API_FEATURE_X_OPENLDAP_V2_KBIND,LDAP_VENDOR_VERSION)
2483 fi
2484 if test "$ol_enable_proctitle" != no ; then
2485         AC_DEFINE(LDAP_PROCTITLE,1,
2486                 [define this for LDAP process title support])
2487 fi
2488 if test "$ol_enable_referrals" != no ; then
2489         AC_DEFINE(LDAP_API_FEATURE_X_OPENLDAP_V2_REFERRALS,LDAP_VENDOR_VERSION)
2490 fi
2491 if test "$ol_enable_local" != no; then
2492         AC_DEFINE(LDAP_PF_LOCAL,1,[define to support PF_LOCAL])
2493 fi
2494 if test "$ol_link_ipv6" != no; then
2495         AC_DEFINE(LDAP_PF_INET6,1,[define to support PF_INET6])
2496 fi
2497 if test "$ol_enable_cleartext" != no ; then
2498         AC_DEFINE(SLAPD_CLEARTEXT,1,[define to support cleartext passwords])
2499 fi
2500 if test "$ol_enable_crypt" != no ; then
2501         AC_DEFINE(SLAPD_CRYPT,1,[define to support crypt(3) passwords])
2502 fi
2503 if test "$ol_link_kpasswd" != no ; then
2504         AC_DEFINE(SLAPD_KPASSWD,1,[define to support Kerberos passwords])
2505 fi
2506 if test "$ol_link_spasswd" != no ; then
2507         AC_DEFINE(SLAPD_SPASSWD,1,[define to support SASL passwords])
2508 fi
2509 if test "$ol_enable_multimaster" != no ; then
2510         AC_DEFINE(SLAPD_MULTIMASTER,1,[define to support multimaster replication])
2511 fi
2512 if test "$ol_enable_rlookups" != no ; then
2513         AC_DEFINE(SLAPD_RLOOKUPS,1,[define to support reverse lookups])
2514 fi
2515 if test "$ol_enable_aci" != no ; then
2516         AC_DEFINE(SLAPD_ACI_ENABLED,1,[define to support per-object ACIs])
2517 fi
2518
2519 if test "$ol_link_modules" != no ; then
2520         AC_DEFINE(SLAPD_MODULES,1,[define to support modules])
2521         BUILD_SLAPD=yes
2522         SLAPD_MODULES_LDFLAGS="-dlopen self"
2523 fi
2524
2525 if test "$ol_enable_bdb" != no ; then
2526         AC_DEFINE(SLAPD_BDB,1,[define to support BDB backend])
2527         BUILD_SLAPD=yes
2528         BUILD_BDB=yes
2529         if test "$ol_with_bdb_module" != static ; then
2530                 AC_DEFINE(SLAPD_BDB_DYNAMIC,1,
2531                         [define to support dynamic BDB backend])
2532                 BUILD_BDB=mod
2533                 BUILD_BDB_DYNAMIC=shared
2534                 SLAPD_DYNAMIC_BACKENDS="$SLAPD_DYNAMIC_BACKENDS back-bdb"
2535         else
2536                 SLAPD_STATIC_BACKENDS="$SLAPD_STATIC_BACKENDS back-bdb"
2537         fi
2538 fi
2539
2540 if test "$ol_link_dnssrv" != no ; then
2541         AC_DEFINE(SLAPD_DNSSRV,1,[define to support DNS SRV backend])
2542         BUILD_SLAPD=yes
2543         BUILD_DNSSRV=yes
2544         if test "$ol_with_dnssrv_module" != static ; then
2545                 AC_DEFINE(SLAPD_DNSSRV_DYNAMIC,1,
2546                         [define to support dynamic DNS SRV backend])
2547                 BUILD_DNSSRV=mod
2548                 BUILD_DNSSRV_DYNAMIC=shared
2549                 SLAPD_DYNAMIC_BACKENDS="$SLAPD_DYNAMIC_BACKENDS back-dnssrv"
2550         else
2551                 SLAPD_STATIC_BACKENDS="$SLAPD_STATIC_BACKENDS back-dnssrv"
2552         fi
2553 fi
2554
2555 if test "$ol_enable_hdb" != no ; then
2556         AC_DEFINE(SLAPD_HDB,1,[define to support HDB backend])
2557         BUILD_SLAPD=yes
2558         BUILD_HDB=yes
2559         if test "$ol_with_hdb_module" != static ; then
2560                 AC_DEFINE(SLAPD_HDB_DYNAMIC,1,
2561                         [define to support dynamic HDB backend])
2562                 BUILD_HDB=mod
2563                 BUILD_HDB_DYNAMIC=shared
2564                 SLAPD_DYNAMIC_BACKENDS="$SLAPD_DYNAMIC_BACKENDS back-hdb"
2565         else
2566                 SLAPD_STATIC_BACKENDS="$SLAPD_STATIC_BACKENDS back-hdb"
2567         fi
2568 fi
2569
2570 if test "$ol_enable_ldap" != no ; then
2571         AC_DEFINE(SLAPD_LDAP,1,[define to support LDAP backend])
2572         BUILD_SLAPD=yes
2573         BUILD_LDAP=yes
2574         if test "$ol_with_ldap_module" != static ; then
2575                 AC_DEFINE(SLAPD_LDAP_DYNAMIC,1,
2576                         [define to support dynamic LDAP backend])
2577                 BUILD_LDAP=mod
2578                 BUILD_LDAP_DYNAMIC=shared
2579                 SLAPD_DYNAMIC_BACKENDS="$SLAPD_DYNAMIC_BACKENDS back-ldap"
2580         else
2581                 SLAPD_STATIC_BACKENDS="$SLAPD_STATIC_BACKENDS back-ldap"
2582         fi
2583 fi
2584
2585 if test "$ol_link_ldbm" != no -a $ol_enable_ldbm != no; then
2586         AC_DEFINE(SLAPD_LDBM,1,[define to support LDBM backend])
2587         BUILD_SLAPD=yes
2588         BUILD_LDBM=yes
2589         if test "$ol_with_ldbm_module" != static ; then
2590                 AC_DEFINE(SLAPD_LDBM_DYNAMIC,1,
2591                         [define to support dynamic LDBM backend])
2592                 BUILD_LDBM=mod
2593                 BUILD_LDBM_DYNAMIC=shared
2594                 SLAPD_DYNAMIC_BACKENDS="$SLAPD_DYNAMIC_BACKENDS back-ldbm"
2595         else
2596                 SLAPD_STATIC_BACKENDS="$SLAPD_STATIC_BACKENDS back-ldbm"
2597         fi
2598 fi
2599
2600 if test "$ol_enable_meta" != no ; then
2601         if test "$ol_enable_ldap" = no ; then
2602                 AC_MSG_ERROR([need --enable-ldap to use --enable-meta])
2603         fi
2604         if test "$ol_enable_rewrite" = no ; then
2605                 AC_MSG_ERROR([need --enable-rewrite to use --enable-meta])
2606         fi
2607         AC_DEFINE(SLAPD_META,1,[define to support LDAP Metadirectory backend])
2608         BUILD_SLAPD=yes
2609         BUILD_META=yes
2610         BUILD_LDAP=yes
2611         BUILD_REWRITE=yes
2612         if test "$ol_with_meta_module" != static ; then
2613                 AC_DEFINE(SLAPD_META_DYNAMIC,1,
2614                         [define to support dynamic LDAP Metadirectory backend])
2615                 BUILD_META=mod
2616                 BUILD_META_DYNAMIC=shared
2617                 SLAPD_DYNAMIC_BACKENDS="$SLAPD_DYNAMIC_BACKENDS back-meta"
2618         else
2619                 SLAPD_STATIC_BACKENDS="$SLAPD_STATIC_BACKENDS back-meta"
2620         fi
2621 fi
2622
2623 if test "$ol_enable_monitor" != no ; then
2624         AC_DEFINE(SLAPD_MONITOR,1,[define to support cn=Monitor backend])
2625         BUILD_SLAPD=yes
2626         BUILD_MONITOR=yes
2627         if test "$ol_with_monitor_module" != static ; then
2628                 AC_DEFINE(SLAPD_MONITOR_DYNAMIC,1,
2629                         [define to support dynamic cn=Monitor backend])
2630                 BUILD_MONITOR=mod
2631                 BUILD_MONITOR_DYNAMIC=shared
2632                 SLAPD_DYNAMIC_BACKENDS="$SLAPD_DYNAMIC_BACKENDS back-monitor"
2633         else
2634                 SLAPD_STATIC_BACKENDS="$SLAPD_STATIC_BACKENDS back-monitor"
2635         fi
2636 fi
2637
2638 if test "$ol_enable_null" != no ; then
2639         AC_DEFINE(SLAPD_NULL,1,[define to support NULL backend])
2640         BUILD_SLAPD=yes
2641         BUILD_NULL=yes
2642         if test "$ol_with_null_module" != static ; then
2643                 AC_DEFINE(SLAPD_NULL_DYNAMIC,1,
2644                         [define to support dynamic NULL backend])
2645                 BUILD_NULL=mod
2646                 BUILD_NULL_DYNAMIC=shared
2647                 SLAPD_DYNAMIC_BACKENDS="$SLAPD_DYNAMIC_BACKENDS back-null"
2648         else
2649                 SLAPD_STATIC_BACKENDS="$SLAPD_STATIC_BACKENDS back-null"
2650         fi
2651 fi
2652
2653 if test "$ol_enable_passwd" != no ; then
2654         AC_DEFINE(SLAPD_PASSWD,1,[define to support PASSWD backend])
2655         BUILD_SLAPD=yes
2656         BUILD_PASSWD=yes
2657         if test "$ol_with_passwd_module" != static ; then
2658                 AC_DEFINE(SLAPD_PASSWD_DYNAMIC,1,
2659                         [define to support dynamic PASSWD backend])
2660                 BUILD_PASSWD=mod
2661                 BUILD_PASSWD_DYNAMIC=shared
2662                 SLAPD_DYNAMIC_BACKENDS="$SLAPD_DYNAMIC_BACKENDS back-passwd"
2663         else
2664                 SLAPD_STATIC_BACKENDS="$SLAPD_STATIC_BACKENDS back-passwd"
2665         fi
2666 fi
2667
2668 if test "$ol_link_perl" != no ; then
2669         AC_DEFINE(SLAPD_PERL,1,[define to support PERL backend])
2670         BUILD_SLAPD=yes
2671         BUILD_PERL=yes
2672         if test "$ol_with_perl_module" != static ; then
2673                 AC_DEFINE(SLAPD_PERL_DYNAMIC,1,
2674                         [define to support dynamic PERL backend])
2675                 BUILD_PERL=mod
2676                 BUILD_PERL_DYNAMIC=shared
2677                 SLAPD_DYNAMIC_BACKENDS="$SLAPD_DYNAMIC_BACKENDS back-perl"
2678         else
2679                 SLAPD_STATIC_BACKENDS="$SLAPD_STATIC_BACKENDS back-perl"
2680         fi
2681 fi
2682
2683 if test "$ol_enable_shell" != no ; then
2684         if test "$ol_link_thread" != no ; then
2685                 AC_MSG_WARN([Use of --without-threads is recommended with back-shell])
2686         fi
2687         AC_DEFINE(SLAPD_SHELL,1,[define to support SHELL backend])
2688         BUILD_SLAPD=yes
2689         BUILD_SHELL=yes
2690         if test "$ol_with_shell_module" != static ; then
2691                 AC_DEFINE(SLAPD_SHELL_DYNAMIC,1,
2692                         [define to support dynamic SHELL backend])
2693                 BUILD_SHELL=mod
2694                 BUILD_SHELL_DYNAMIC=shared
2695                 SLAPD_DYNAMIC_BACKENDS="$SLAPD_DYNAMIC_BACKENDS back-shell"
2696         else
2697                 SLAPD_STATIC_BACKENDS="$SLAPD_STATIC_BACKENDS back-shell"
2698         fi
2699 fi
2700
2701 if test "$ol_link_sql" != no ; then
2702         AC_DEFINE(SLAPD_SQL,1,[define to support SQL backend])
2703         BUILD_SLAPD=yes
2704         BUILD_SQL=yes
2705         if test "$ol_with_sql_module" != static; then
2706                 AC_DEFINE(SLAPD_SQL_DYNAMIC,1,
2707                         [define to support dynamic SQL backend])
2708                 BUILD_SQL=mod
2709                 BUILD_SQL_DYNAMIC=shared
2710                 SLAPD_DYNAMIC_BACKENDS="$SLAPD_DYNAMIC_BACKENDS back-sql"
2711         else
2712                 SLAPD_STATIC_BACKENDS="$SLAPD_STATIC_BACKENDS back-sql"
2713         fi
2714 fi
2715
2716 if test "$ol_enable_slurpd" != no -a "$ol_link_threads" != no -a \
2717         $BUILD_SLAPD = yes ; then
2718         BUILD_SLURPD=yes
2719 fi
2720
2721 if test "$ol_enable_rewrite" != no ; then
2722         AC_DEFINE(ENABLE_REWRITE,1,[define to enable rewriting in back-ldap and back-meta])
2723         BUILD_REWRITE=yes
2724 fi
2725
2726 if test "$ol_enable_slapi" != no ; then
2727         AC_DEFINE(ENABLE_SLAPI,1,[define to enable slapi library])
2728         BUILD_SLAPI=yes
2729         SLAPD_SLAPI_DEPEND=libslapi.a
2730 fi
2731
2732 dnl ----------------------------------------------------------------
2733
2734 dnl
2735 dnl For Windows build, we don't want to include -dlopen flags.
2736 dnl They hurt more than they help.
2737 dnl
2738
2739 if test "$ac_cv_mingw32" = yes ; then
2740         PLAT=NT
2741         SLAPD_MODULES_LDFLAGS=
2742 else
2743         PLAT=UNIX
2744 fi
2745
2746 if test -z "$SLAPD_STATIC_BACKENDS"; then
2747         SLAPD_NO_STATIC='#'
2748 else
2749         SLAPD_NO_STATIC=
2750 fi
2751
2752 AC_SUBST(LIBSRCS)
2753 AC_SUBST(PLAT)
2754 AC_SUBST(BUILD_LIBS_DYNAMIC)
2755
2756 AC_SUBST(BUILD_SLAPD)
2757   AC_SUBST(BUILD_SLAPI)
2758   AC_SUBST(SLAPD_SLAPI_DEPEND)
2759   AC_SUBST(BUILD_BDB)
2760   AC_SUBST(BUILD_DNSSRV)
2761   AC_SUBST(BUILD_HDB)
2762   AC_SUBST(BUILD_LDAP)
2763   AC_SUBST(BUILD_LDBM)
2764   AC_SUBST(BUILD_META)
2765   AC_SUBST(BUILD_MONITOR)
2766   AC_SUBST(BUILD_NULL)
2767   AC_SUBST(BUILD_PASSWD)
2768   AC_SUBST(BUILD_PERL)
2769   AC_SUBST(BUILD_SHELL)
2770   AC_SUBST(BUILD_SQL)
2771   AC_SUBST(BUILD_BDB_DYNAMIC)
2772   AC_SUBST(BUILD_DNSSRV_DYNAMIC)
2773   AC_SUBST(BUILD_HDB_DYNAMIC)
2774   AC_SUBST(BUILD_LDAP_DYNAMIC)
2775   AC_SUBST(BUILD_LDBM_DYNAMIC)
2776   AC_SUBST(BUILD_META_DYNAMIC)
2777   AC_SUBST(BUILD_MONITOR_DYNAMIC)
2778   AC_SUBST(BUILD_NULL_DYNAMIC)
2779   AC_SUBST(BUILD_PASSWD_DYNAMIC)
2780   AC_SUBST(BUILD_PERL_DYNAMIC)
2781   AC_SUBST(BUILD_SHELL_DYNAMIC)
2782   AC_SUBST(BUILD_SQL_DYNAMIC)
2783 AC_SUBST(BUILD_SLURPD)
2784
2785 AC_SUBST(LDAP_LIBS)
2786 AC_SUBST(LDIF_LIBS)
2787 AC_SUBST(SLAPD_LIBS)
2788 AC_SUBST(SLURPD_LIBS)
2789 AC_SUBST(LDBM_LIBS)
2790 AC_SUBST(LTHREAD_LIBS)
2791 AC_SUBST(LUTIL_LIBS)
2792 AC_SUBST(WRAP_LIBS)
2793
2794 AC_SUBST(SLAPD_MODULES_CPPFLAGS)
2795 AC_SUBST(SLAPD_MODULES_LDFLAGS)
2796
2797 AC_SUBST(SLAPD_NO_STATIC)
2798 AC_SUBST(SLAPD_STATIC_BACKENDS)
2799 AC_SUBST(SLAPD_DYNAMIC_BACKENDS)
2800
2801 AC_SUBST(PERL_CPPFLAGS)
2802 AC_SUBST(SLAPD_PERL_LDFLAGS)
2803 AC_SUBST(MOD_PERL_LDFLAGS)
2804
2805 AC_SUBST(KRB4_LIBS)
2806 AC_SUBST(KRB5_LIBS)
2807 AC_SUBST(SASL_LIBS)
2808 AC_SUBST(TERMCAP_LIBS)
2809 AC_SUBST(TLS_LIBS)
2810 AC_SUBST(MODULES_LIBS)
2811 AC_SUBST(SLAPI_LIBS)
2812 AC_SUBST(LIBSLAPI)
2813 AC_SUBST(LIBSLAPITOOLS)
2814 AC_SUBST(AUTH_LIBS)
2815
2816 AC_SUBST(SLAPD_SLP_LIBS)
2817
2818 AC_SUBST(SLAPD_SQL_LDFLAGS)
2819 AC_SUBST(SLAPD_SQL_LIBS)
2820 AC_SUBST(SLAPD_SQL_INCLUDES)
2821
2822 dnl ----------------------------------------------------------------
2823 dnl final help output
2824 AC_ARG_WITH(xxinstall,[
2825 See INSTALL file for further details.])
2826
2827 dnl ----------------------------------------------------------------
2828 dnl final output
2829 dnl
2830
2831 AC_OUTPUT( \
2832 Makefile:build/top.mk:Makefile.in:build/dir.mk \
2833 doc/Makefile:build/top.mk:doc/Makefile.in:build/dir.mk \
2834 doc/man/Makefile:build/top.mk:doc/man/Makefile.in:build/dir.mk \
2835 doc/man/man1/Makefile:build/top.mk:doc/man/man1/Makefile.in:build/man.mk \
2836 doc/man/man3/Makefile:build/top.mk:doc/man/man3/Makefile.in:build/man.mk \
2837 doc/man/man5/Makefile:build/top.mk:doc/man/man5/Makefile.in:build/man.mk \
2838 doc/man/man8/Makefile:build/top.mk:doc/man/man8/Makefile.in:build/man.mk \
2839 clients/Makefile:build/top.mk:clients/Makefile.in:build/dir.mk \
2840 clients/tools/Makefile:build/top.mk:clients/tools/Makefile.in:build/rules.mk \
2841 include/Makefile:build/top.mk:include/Makefile.in \
2842 libraries/Makefile:build/top.mk:libraries/Makefile.in:build/dir.mk      \
2843 libraries/libavl/Makefile:build/top.mk:libraries/libavl/Makefile.in:build/lib.mk:build/lib-static.mk    \
2844 libraries/liblber/Makefile:build/top.mk:libraries/liblber/Makefile.in:build/lib.mk:build/lib-shared.mk  \
2845 libraries/libldap/Makefile:build/top.mk:libraries/libldap/Makefile.in:build/lib.mk:build/lib-shared.mk  \
2846 libraries/libldap_r/Makefile:build/top.mk:libraries/libldap_r/Makefile.in:build/lib.mk:build/lib-shared.mk      \
2847 libraries/libldbm/Makefile:build/top.mk:libraries/libldbm/Makefile.in:build/lib.mk:build/lib-static.mk  \
2848 libraries/libldif/Makefile:build/top.mk:libraries/libldif/Makefile.in:build/lib.mk:build/lib-static.mk  \
2849 libraries/liblunicode/Makefile:build/top.mk:libraries/liblunicode/Makefile.in:build/lib.mk:build/lib-static.mk  \
2850 libraries/liblutil/Makefile:build/top.mk:libraries/liblutil/Makefile.in:build/lib.mk:build/lib-static.mk        \
2851 libraries/librewrite/Makefile:build/top.mk:libraries/librewrite/Makefile.in:build/lib.mk:build/lib-static.mk \
2852 servers/Makefile:build/top.mk:servers/Makefile.in:build/dir.mk \
2853 servers/slapd/Makefile:build/top.mk:servers/slapd/Makefile.in:build/srv.mk \
2854 servers/slapd/back-bdb/Makefile:build/top.mk:servers/slapd/back-bdb/Makefile.in:build/mod.mk \
2855 servers/slapd/back-dnssrv/Makefile:build/top.mk:servers/slapd/back-dnssrv/Makefile.in:build/mod.mk \
2856 servers/slapd/back-hdb/Makefile:build/top.mk:servers/slapd/back-hdb/Makefile.in:build/mod.mk \
2857 servers/slapd/back-ldap/Makefile:build/top.mk:servers/slapd/back-ldap/Makefile.in:build/mod.mk \
2858 servers/slapd/back-ldbm/Makefile:build/top.mk:servers/slapd/back-ldbm/Makefile.in:build/mod.mk \
2859 servers/slapd/back-meta/Makefile:build/top.mk:servers/slapd/back-meta/Makefile.in:build/mod.mk \
2860 servers/slapd/back-monitor/Makefile:build/top.mk:servers/slapd/back-monitor/Makefile.in:build/mod.mk \
2861 servers/slapd/back-null/Makefile:build/top.mk:servers/slapd/back-null/Makefile.in:build/mod.mk \
2862 servers/slapd/back-passwd/Makefile:build/top.mk:servers/slapd/back-passwd/Makefile.in:build/mod.mk \
2863 servers/slapd/back-perl/Makefile:build/top.mk:servers/slapd/back-perl/Makefile.in:build/mod.mk \
2864 servers/slapd/back-shell/Makefile:build/top.mk:servers/slapd/back-shell/Makefile.in:build/mod.mk \
2865 servers/slapd/back-sql/Makefile:build/top.mk:servers/slapd/back-sql/Makefile.in:build/mod.mk \
2866 servers/slapd/shell-backends/Makefile:build/top.mk:servers/slapd/shell-backends/Makefile.in:build/srv.mk \
2867 servers/slapd/slapi/Makefile:build/top.mk:servers/slapd/slapi/Makefile.in:build/lib.mk:build/lib-shared.mk  \
2868 servers/slapd/tools/Makefile:build/top.mk:servers/slapd/tools/Makefile.in \
2869 servers/slurpd/Makefile:build/top.mk:servers/slurpd/Makefile.in:build/srv.mk \
2870 tests/Makefile:build/top.mk:tests/Makefile.in:build/dir.mk \
2871 tests/progs/Makefile:build/top.mk:tests/progs/Makefile.in:build/rules.mk \
2872 ,[
2873 date > stamp-h
2874 echo Please run \"make depend\" to build dependencies
2875 ])