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