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