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