]> git.sur5r.net Git - openldap/blob - configure.in
autoheader is now working...
[openldap] / configure.in
1 dnl $OpenLDAP$
2 dnl This work is part of OpenLDAP Software <http://www.openldap.org/>.
3 dnl
4 dnl Copyright 1998-2005 The OpenLDAP Foundation.
5 dnl All rights reserved.
6 dnl
7 dnl Redistribution and use in source and binary forms, with or without
8 dnl modification, are permitted only as authorized by the OpenLDAP
9 dnl Public License.
10 dnl
11 dnl A copy of this license is available in the file LICENSE in the
12 dnl top-level directory of the distribution or, alternatively, at
13 dnl <http://www.OpenLDAP.org/license.html>.
14 dnl
15 dnl ----------------------------------------------------------------
16 dnl
17 dnl Redefine AC_INIT_BINSH to provide RCS IDs and copyright notice
18 dnl at top of generated configure script.  Prints simple copyright.
19 define([AC_INIT_BINSH],
20 [[#! /bin/sh
21 # $]OpenLDAP[$
22 # from] translit([$OpenLDAP$], $")] [
23
24 # This work is part of OpenLDAP Software <http://www.openldap.org/>.
25 #
26 # Copyright 1998-2005 The OpenLDAP Foundation.
27 # All rights reserved.
28 #
29 # Redistribution and use in source and binary forms, with or without
30 # modification, are permitted only as authorized by the OpenLDAP
31 # Public License.
32 #
33 # A copy of this license is available in the file LICENSE in the
34 # top-level directory of the distribution or, alternatively, at
35 # <http://www.OpenLDAP.org/license.html>.
36
37 echo "Copyright 1998-2005 The OpenLDAP Foundation. All rights reserved."
38 echo "  Restrictions apply, see COPYRIGHT and LICENSE files."
39 ])dnl
40 dnl ----------------------------------------------------------------
41 dnl OpenLDAP Autoconf Macros
42 builtin(include, build/openldap.m4)dnl
43 dnl ----------------------------------------------------------------
44 dnl Disable config.cache!
45 define([AC_CACHE_LOAD], )dnl
46 define([AC_CACHE_SAVE], )dnl
47 dnl ================================================================
48 dnl Configure.in for OpenLDAP
49 AC_INIT
50 AC_CONFIG_SRCDIR(build/version.sh)dnl
51
52 # set unset (borrowed from autoconf 2.49c)
53 if (OL_FOO=OL_FOO; unset OL_FOO) >/dev/null 2>&1; then
54   ol_unset=unset
55 else
56   ol_unset=false
57 fi
58 # unset CDPATH
59 $ol_unset CDPATH || test "${CDPATH+set}" != set || { CDPATH=:; export CDPATH; }
60
61 AC_CONFIG_AUX_DIR(build)dnl
62
63 eval `$ac_aux_dir/version.sh`
64 if test -z "$OL_STRING"; then
65         AC_MSG_ERROR([could not determine version])
66 fi
67
68 if test -f "$ac_aux_dir/shtool" -a ! -d $ac_aux_dir/shtool; then
69         ac_cv_shtool="$ac_aux_dir/shtool"
70 else
71         AC_MSG_ERROR([no shtool found in $ac_aux_dir])
72 fi
73
74 SHTOOL="$ac_cv_shtool"
75 dnl AC_SUBST(SHTOOL)dnl
76
77 TB="`$SHTOOL echo -e '%B' 2>/dev/null`"
78 TN="`$SHTOOL echo -e '%b' 2>/dev/null`"
79
80 OPENLDAP_CVS=""
81 if test -d $ac_aux_dir/CVS; then
82         OPENLDAP_CVS="(from CVS sources) "
83 fi
84
85 echo "Configuring ${TB}${OL_STRING}${TN} ${OPENLDAP_CVS}..."
86
87 dnl Determine host platform
88 dnl             we try not to use this for much
89 AC_CANONICAL_TARGET([])
90
91 AM_INIT_AUTOMAKE([$OL_PACKAGE],[$OL_VERSION], [no defines])dnl
92 AC_SUBST(PACKAGE)dnl
93 AC_SUBST(VERSION)dnl
94 AC_DEFINE_UNQUOTED(OPENLDAP_PACKAGE,"$PACKAGE",Package)
95 AC_DEFINE_UNQUOTED(OPENLDAP_VERSION,"$VERSION",Version)
96
97 AC_DEFINE_UNQUOTED(LDAP_VENDOR_VERSION,$OL_API_INC,Version)
98 AC_DEFINE_UNQUOTED(LDAP_VENDOR_VERSION_MAJOR,$OL_MAJOR,Major)
99 AC_DEFINE_UNQUOTED(LDAP_VENDOR_VERSION_MINOR,$OL_MINOR,Minor)
100 AC_DEFINE_UNQUOTED(LDAP_VENDOR_VERSION_PATCH,$OL_PATCH,Patch)
101
102 OPENLDAP_LIBRELEASE=$OL_API_LIB_RELEASE
103 AC_SUBST(OPENLDAP_LIBRELEASE)dnl
104
105 OPENLDAP_LIBVERSION=$OL_API_LIB_VERSION
106 AC_SUBST(OPENLDAP_LIBVERSION)dnl
107
108 OPENLDAP_RELEASE_DATE="$OL_RELEASE_DATE"
109 AC_SUBST(OPENLDAP_RELEASE_DATE)dnl
110
111 dnl We use autoconf features new to 2.59.  Later versions like won't work.
112 dnl aclocal.m4 should be built using aclocal from automake 1.5
113 dnl libtool 1.5 should be installed.
114 AC_PREREQ(2.59)dnl Required Autoconf version
115
116 AH_TOP([
117 /* begin of portable.h.pre */
118 /* This work is part of OpenLDAP Software <http://www.openldap.org/>.
119  *
120  * Copyright 1998-2005 The OpenLDAP Foundation
121  * All rights reserved.
122  *
123  * Redistribution and use in source and binary forms, with or without
124  * modification, are permitted only as authorized by the OpenLDAP
125  * Public License.
126  *
127  * A copy of this license is available in the file LICENSE in the
128  * top-level directory of the distribution or, alternatively, at
129  * <http://www.OpenLDAP.org/license.html>.
130  */
131
132 #ifndef _LDAP_PORTABLE_H
133 #define _LDAP_PORTABLE_H
134
135 /* define this if needed to get reentrant functions */
136 #ifndef REENTRANT
137 #undef REENTRANT
138 #endif
139 #ifndef _REENTRANT
140 #undef _REENTRANT
141 #endif
142
143 /* define this if needed to get threadsafe functions */
144 #ifndef THREADSAFE
145 #undef THREADSAFE
146 #endif
147 #ifndef _THREADSAFE
148 #undef _THREADSAFE
149 #endif
150 #ifndef THREAD_SAFE
151 #undef THREAD_SAFE
152 #endif
153 #ifndef _THREAD_SAFE
154 #undef _THREAD_SAFE
155 #endif
156
157 #ifndef _SGI_MP_SOURCE
158 #undef _SGI_MP_SOURCE
159 #endif
160
161 /* end of portable.h.pre */
162 ])
163 AH_BOTTOM([
164 /* begin of portable.h.post */
165
166 #ifdef _WIN32
167         /* don't suck in all of the win32 api */
168 #       define WIN32_LEAN_AND_MEAN 1
169 #endif
170
171 #ifndef LDAP_NEEDS_PROTOTYPES
172 /* force LDAP_P to always include prototypes */
173 #define LDAP_NEEDS_PROTOTYPES 1
174 #endif
175
176 #ifndef LDAP_REL_ENG
177 #if (LDAP_VENDOR_VERSION == 000000) && !defined(LDAP_DEVEL)
178 #define LDAP_DEVEL
179 #endif
180 #if defined(LDAP_DEVEL) && !defined(LDAP_TEST)
181 #define LDAP_TEST
182 #endif
183 #endif
184
185 #ifdef HAVE_STDDEF_H
186 #       include <stddef.h>
187 #endif
188
189 #ifdef HAVE_EBCDIC 
190 /* ASCII/EBCDIC converting replacements for stdio funcs
191  * vsnprintf and snprintf are used too, but they are already
192  * checked by the configure script
193  */
194 #define fputs ber_pvt_fputs
195 #define fgets ber_pvt_fgets
196 #define printf ber_pvt_printf
197 #define fprintf ber_pvt_fprintf
198 #define vfprintf ber_pvt_vfprintf
199 #define vsprintf ber_pvt_vsprintf
200 #endif
201
202 #include "ac/fdset.h"
203
204 #include "ldap_cdefs.h"
205 #include "ldap_features.h"
206
207 #include "ac/assert.h"
208 #include "ac/localize.h"
209
210 #endif /* _LDAP_PORTABLE_H */
211 /* end of portable.h.post */
212 ])
213
214 AC_CONFIG_HEADERS([include/portable.h:include/portable.hin])
215 AC_CONFIG_HEADERS([include/ldap_features.h:include/ldap_features.hin])
216 AC_CONFIG_HEADERS([include/lber_types.h:include/lber_types.hin])
217
218 dnl ================================================================
219 dnl Start Args
220 AC_MSG_CHECKING(configure arguments)
221 AC_PREFIX_DEFAULT(/usr/local)
222
223 top_builddir=`pwd`
224 AC_SUBST(top_builddir)dnl
225
226 dnl ----------------------------------------------------------------
227 dnl --with-subdir
228 ldap_subdir="/openldap"
229
230 AC_ARG_WITH(subdir,
231 [  --with-subdir=DIR       change default subdirectory used for installs],
232 [case "$withval" in
233         no) ldap_subdir=""
234                 ;;
235         yes)
236                 ;;
237         /*|\\*)
238                 ldap_subdir="$withval"
239                 ;;
240         *)
241                 ldap_subdir="/$withval"
242                 ;;
243 esac
244 ])dnl
245
246 AC_SUBST(ldap_subdir)dnl
247
248 dnl ----------------------------------------------------------------
249 dnl General "enable" options
250 OL_ARG_ENABLE(debug,[  --enable-debug     enable debugging], yes)dnl
251 OL_ARG_ENABLE(dynamic,[  --enable-dynamic         enable linking built binaries with dynamic libs], no)dnl
252 OL_ARG_ENABLE(syslog,[  --enable-syslog   enable syslog support], auto)dnl
253 OL_ARG_ENABLE(proctitle,[  --enable-proctitle     enable proctitle support], yes)dnl
254 dnl OL_ARG_ENABLE(referrals,[  --enable-referrals         enable LDAPv2+ Referrals (experimental)], no)dnl
255 ol_enable_referrals=${ol_enable_referrals-no}
256 dnl OL_ARG_ENABLE(kbind,[  --enable-kbind         enable LDAPv2+ Kerberos IV bind (deprecated)], no)dnl
257 ol_enable_kbind=${ol_enable_kbind-no}
258 OL_ARG_ENABLE(ipv6,[  --enable-ipv6       enable IPv6 support], auto)dnl
259 OL_ARG_ENABLE(local,[  --enable-local     enable AF_LOCAL (AF_UNIX) socket support], auto)dnl
260
261 dnl ----------------------------------------------------------------
262 dnl General "with" options
263 dnl OL_ARG_ENABLE(dmalloc,[  --enable-dmalloc     enable debug malloc support], no)dnl
264
265 OL_ARG_WITH(cyrus_sasl,[  --with-cyrus-sasl       with Cyrus SASL support],
266         auto, [auto yes no] )
267 OL_ARG_WITH(fetch,[  --with-fetch                 with fetch(3) URL support],
268         auto, [auto yes no] )
269 dnl     OL_ARG_WITH(kerberos,[  --with-kerberos   with Kerberos support],
270 dnl             auto, [auto k5 k5only k425 kth k4 afs yes no])
271 ol_with_kerberos=${ol_with_kerberos-auto}
272 OL_ARG_WITH(threads,[  --with-threads     with threads],
273         auto, [auto nt posix mach pth lwp yes no manual] )
274 OL_ARG_WITH(tls,[  --with-tls             with TLS/SSL support],
275         auto, [auto ssleay openssl yes no] )
276 OL_ARG_WITH(yielding_select,[  --with-yielding-select  with implicitly yielding select],
277         auto, [auto yes no manual] )
278 OL_ARG_WITH(multiple_precision,[  --with-multiple-precision
279                           multiple precision support for statistics
280                           auto|bignum|gmp],
281         auto, [auto bignum gmp yes no] )
282
283 dnl ----------------------------------------------------------------
284 dnl Server options
285 dnl ----------------------------------------------------------------
286
287 dnl ----------------------------------------------------------------
288 dnl SLAPD OPTIONS
289 AC_ARG_WITH(xxslapdoptions,[
290 SLAPD (Standalone LDAP Daemon) Options:])
291 OL_ARG_ENABLE(slapd,[  --enable-slapd     enable building slapd], yes)dnl
292 OL_ARG_ENABLE(aci,[    --enable-aci       enable per-object ACIs (experimental)], no)dnl
293 OL_ARG_ENABLE(cleartext,[    --enable-cleartext   enable cleartext passwords], yes)dnl
294 OL_ARG_ENABLE(crypt,[    --enable-crypt   enable crypt(3) passwords], no)dnl
295 OL_ARG_ENABLE(lmpasswd,[    --enable-lmpasswd     enable LAN Manager passwords], no)dnl
296 OL_ARG_ENABLE(spasswd,[    --enable-spasswd       enable (Cyrus) SASL password verification], no)dnl
297 OL_ARG_ENABLE(modules,[    --enable-modules       enable dynamic module support], no)dnl
298 dnl OL_ARG_ENABLE(multimaster,[    --enable-multimaster  enable multimaster replication], no)dnl
299 ol_enable_multimaster=${ol_enable_multimaster-no}
300 OL_ARG_ENABLE(rewrite,[    --enable-rewrite       enable DN rewriting in back-ldap and rwm overlay], auto)dnl
301 OL_ARG_ENABLE(rlookups,[    --enable-rlookups     enable reverse lookups of client hostnames], no)dnl
302 OL_ARG_ENABLE(slapi,[    --enable-slapi        enable SLAPI support (experimental)], no)dnl
303 OL_ARG_ENABLE(slp,[    --enable-slp          enable SLPv2 support], no)dnl     
304 OL_ARG_ENABLE(wrappers,[    --enable-wrappers     enable tcp wrapper support], no)dnl
305
306 dnl ----------------------------------------------------------------
307 dnl SLAPD Backend Options
308 Backends="bdb dnssrv hdb ldap ldbm meta monitor null \
309         passwd perl relay shell sql"
310
311 AC_ARG_WITH(xxslapbackends,[
312 SLAPD Backend Options:])
313
314 OL_ARG_ENABLE(backends,[    --enable-backends     enable all available backends no|yes|mod],
315         --, [no yes mod])dnl
316 test -n "$ol_enable_backends" && ol_dflt_backends="$ol_enable_backends"
317 OL_ARG_ENABLE(bdb,[    --enable-bdb       enable Berkeley DB backend no|yes|mod],
318         ${ol_dflt_backends-yes}, [no yes mod])dnl
319 OL_ARG_ENABLE(dnssrv,[    --enable-dnssrv         enable dnssrv backend no|yes|mod],
320         ${ol_dflt_backends-no}, [no yes mod])dnl
321 OL_ARG_ENABLE(hdb,[    --enable-hdb       enable Hierarchical DB backend no|yes|mod],
322         ${ol_dflt_backends-yes}, [no yes mod])dnl
323 OL_ARG_ENABLE(ldap,[    --enable-ldap     enable ldap backend no|yes|mod],
324         ${ol_dflt_backends-no}, [no yes mod])dnl
325 OL_ARG_ENABLE(ldbm,[    --enable-ldbm     enable ldbm backend no|yes|mod],
326         ${ol_dflt_backends-no}, [no yes mod])dnl
327 OL_ARG_WITH(ldbm_api,[      --with-ldbm-api     with LDBM API auto|berkeley|bcompat|mdbm|gdbm],
328         auto, [auto berkeley bcompat mdbm gdbm])
329 OL_ARG_WITH(ldbm_type,[      --with-ldbm-type     use LDBM type auto|btree|hash],
330         auto, [auto btree hash])
331 OL_ARG_ENABLE(meta,[    --enable-meta     enable metadirectory backend no|yes|mod],
332         ${ol_dflt_backends-no}, [no yes mod])dnl
333 OL_ARG_ENABLE(monitor,[    --enable-monitor       enable monitor backend no|yes|mod],
334         ${ol_dflt_backends-yes}, [no yes mod])dnl
335 OL_ARG_ENABLE(null,[    --enable-null     enable null backend no|yes|mod],
336         ${ol_dflt_backends-no}, [no yes mod])dnl
337 OL_ARG_ENABLE(passwd,[    --enable-passwd         enable passwd backend no|yes|mod],
338         ${ol_dflt_backends-no}, [no yes mod])dnl
339 OL_ARG_ENABLE(perl,[    --enable-perl     enable perl backend no|yes|mod],
340         ${ol_dflt_backends-no}, [no yes mod])dnl
341 OL_ARG_ENABLE(relay,[    --enable-relay           enable relay backend no|yes|mod],
342         ${ol_dflt_backends-yes}, [no yes mod])dnl
343 OL_ARG_ENABLE(shell,[    --enable-shell   enable shell backend no|yes|mod],
344         ${ol_dflt_backends-no}, [no yes mod])dnl
345 OL_ARG_ENABLE(sql,[    --enable-sql       enable sql backend no|yes|mod],
346         ${ol_dflt_backends-no}, [no yes mod])dnl
347
348 dnl ----------------------------------------------------------------
349 dnl SLAPD Overlay Options
350 Overlays="accesslog denyop dyngroup dynlist glue lastmod ppolicy proxycache \
351         refint retcode rwm syncprov translucent unique"
352
353 AC_ARG_WITH(xxslapoverlays,[
354 SLAPD Overlay Options:])
355
356 OL_ARG_ENABLE(overlays,[    --enable-overlays     enable all available overlays no|yes|mod],
357         --, [no yes mod])dnl
358 test -n "$ol_enable_overlays" && ol_dflt_overlays="$ol_enable_overlays"
359 OL_ARG_ENABLE(accesslog,[    --enable-accesslog   In-Directory Access Logging overlay no|yes|mod],
360         ${ol_dflt_overlays-no}, [no yes mod])
361 OL_ARG_ENABLE(denyop,[    --enable-denyop         Deny Operation overlay no|yes|mod],
362         ${ol_dflt_overlays-no}, [no yes mod])
363 OL_ARG_ENABLE(dyngroup,[    --enable-dyngroup     Dynamic Group overlay no|yes|mod],
364         ${ol_dflt_overlays-no}, [no yes mod])
365 OL_ARG_ENABLE(dynlist,[    --enable-dynlist       Dynamic List overlay no|yes|mod],
366         ${ol_dflt_overlays-no}, [no yes mod])
367 OL_ARG_ENABLE(glue,[    --enable-glue     Backend Glue overlay no|yes|mod],
368         ${ol_dflt_overlays-yes}, [no yes mod])
369 OL_ARG_ENABLE(lastmod,[    --enable-lastmod       Last Modification overlay no|yes|mod],
370         ${ol_dflt_overlays-no}, [no yes mod])
371 OL_ARG_ENABLE(ppolicy,[    --enable-ppolicy       Password Policy overlay no|yes|mod],
372         ${ol_dflt_overlays-no}, [no yes mod])
373 OL_ARG_ENABLE(proxycache,[    --enable-proxycache         Proxy Cache overlay no|yes|mod],
374         ${ol_dflt_overlays-no}, [no yes mod])
375 OL_ARG_ENABLE(refint,[    --enable-refint         Referential Integrity overlay no|yes|mod],
376         ${ol_dflt_overlays-no}, [no yes mod])
377 OL_ARG_ENABLE(retcode,[    --enable-retcode       Return Code testing overlay no|yes|mod],
378         ${ol_dflt_overlays-no}, [no yes mod])
379 OL_ARG_ENABLE(rwm,[    --enable-rwm               Rewrite/Remap overlay no|yes|mod],
380         ${ol_dflt_overlays-no}, [no yes mod])
381 OL_ARG_ENABLE(syncprov,[    --enable-syncprov     Syncrepl Provider overlay no|yes|mod],
382         ${ol_dflt_overlays-yes}, [no yes mod])
383 OL_ARG_ENABLE(translucent,[    --enable-translucent  Translucent Proxy overlay no|yes|mod],
384         ${ol_dflt_overlays-no}, [no yes mod])
385 OL_ARG_ENABLE(unique,[    --enable-unique       Attribute Uniqueness overlay no|yes|mod],
386         ${ol_dflt_overlays-no}, [no yes mod])
387
388
389 dnl ----------------------------------------------------------------
390 dnl SLURPD OPTIONS
391 AC_ARG_WITH(xxslurpdoptions,[
392 SLURPD (Replication Daemon) Options:])
393 OL_ARG_ENABLE(slurpd,[  --enable-slurpd   enable building slurpd], auto)dnl
394
395 dnl ----------------------------------------------------------------
396 AC_ARG_WITH(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_with_ldbm_api != auto ; then
435                 AC_MSG_WARN([slapd disabled, ignoring --with-ldbm-api argument])
436         fi
437         if test $ol_with_ldbm_type != auto ; then
438                 AC_MSG_WARN([slapd disabled, ignoring --with-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_with_ldbm_api=no
470         ol_with_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_with_ldbm_api != auto ; then
480                 AC_MSG_WARN([LDBM disabled, ignoring --with-ldbm-api argument])
481         fi
482
483         if test $ol_with_ldbm_type != auto ; then
484                 AC_MSG_WARN([LDBM disabled, ignoring --with-ldbm-type argument])
485         fi
486
487         if test $ol_enable_modules != yes -a \
488                 $ol_enable_bdb = no -a \
489                 $ol_enable_dnssrv = no -a \
490                 $ol_enable_hdb = no -a \
491                 $ol_enable_ldap = no -a \
492                 $ol_enable_meta = no -a \
493                 $ol_enable_monitor = no -a \
494                 $ol_enable_null = no -a \
495                 $ol_enable_passwd = no -a \
496                 $ol_enable_perl = no -a \
497                 $ol_enable_relay = no -a \
498                 $ol_enable_shell = no -a \
499                 $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_with_ldbm_api=no
510         ol_with_ldbm_type=no
511
512         if test $ol_enable_bdb != no -o $ol_enable_hdb != no; then
513                 ol_with_ldbm_api=berkeley
514         fi
515
516 else
517         dnl SLAPD with LDBM
518         if test $ol_with_ldbm_api = gdbm -a \
519                 $ol_with_ldbm_type = btree ; then
520                 AC_MSG_ERROR([GDBM only supports LDBM type hash])
521         fi
522         if test $ol_with_ldbm_api = mdbm -a \
523                 $ol_with_ldbm_type = btree ; then
524                 AC_MSG_ERROR([MDBM only supports LDBM type hash])
525         fi
526         if test $ol_with_ldbm_api = ndbm -a \
527                 $ol_with_ldbm_type = btree ; then
528                 AC_MSG_ERROR([NDBM only supports LDBM type hash])
529         fi
530
531         if test $ol_enable_bdb != no -o $ol_enable_hdb != no ; then
532                 if test $ol_with_ldbm_api = auto ; then
533                         ol_with_ldbm_api=berkeley
534                 elif test $ol_with_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 = yes -a $ol_enable_ldap = 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_GLUE=no
619 BUILD_LASTMOD=no
620 BUILD_PPOLICY=no
621 BUILD_PROXYCACHE=no
622 BUILD_REFINT=no
623 BUILD_RETCODE=no
624 BUILD_RWM=no
625 BUILD_SYNCPROV=no
626 BUILD_TRANSLUCENT=no
627 BUILD_UNIQUE=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         if test "${CC}" = "cc_r" -o "${CC}" = "xlc_r" ; then
705                 ol_with_threads=posix
706                 ol_cv_pthread_create=yes
707         fi
708 fi
709
710 if test -z "${CC}"; then
711         AC_CHECK_PROGS(CC,cc gcc,missing)
712
713         if test "${CC}" = "missing" ; then
714                 AC_MSG_ERROR([Unable to locate cc(1) or suitable replacement.  Check PATH or set CC.])
715         fi
716 fi
717
718 if test -z "${AR}"; then
719         AC_CHECK_PROGS(AR,ar gar,missing)
720
721         if test "${AR}" = "missing" ; then
722                 AC_MSG_ERROR([Unable to locate ar(1) or suitable replacement.  Check PATH or set AR.])
723         fi
724 fi
725
726 AC_LIBTOOL_WIN32_DLL
727 AC_LIBTOOL_DLOPEN
728 AC_PROG_LIBTOOL
729
730 dnl ----------------------------------------------------------------
731 dnl Perl
732 ol_link_perl=no
733 if test $ol_enable_perl != no ; then
734         AC_PATH_PROG(PERLBIN, perl, /usr/bin/perl)
735
736         if test "no$PERLBIN" = "no" ; then
737                 if test $ol_enable_perl = yes ; then
738                         AC_MSG_ERROR([could not locate perl])
739                 fi
740
741         else
742                 PERL_CPPFLAGS="`$PERLBIN -MExtUtils::Embed -e ccopts`"
743                 PERL_LDFLAGS="`$PERLBIN -MExtUtils::Embed -e ldopts|sed -e 's/ -lc / /' -e 's/ -lc$//'`"
744
745                 if test x"$ol_enable_perl" = "xyes" ; then
746                         SLAPD_PERL_LDFLAGS="$PERL_LDFLAGS"
747                 else
748                         MOD_PERL_LDFLAGS="$PERL_LDFLAGS"
749                 fi
750                 dnl should check perl version
751                 ol_link_perl=yes
752         fi
753 fi
754
755 AC_PROG_CPP
756
757 dnl ----------------------------------------------------------------
758 dnl Checks for UNIX Variants
759 dnl AC_AIX
760 dnl AC_ISC_POSIX
761 dnl AC_MINIX
762
763 dnl ----------------------------------------------------------------
764 dnl Checks for file extensions
765 AC_EXEEXT
766 AC_OBJEXT
767 AC_DEFINE_UNQUOTED(EXEEXT, "${EXEEXT}", [defined to be the EXE extension])
768
769 dnl ----------------------------------------------------------------
770 dnl BeOS requires -lbe -lroot -lnet
771 AC_CHECK_LIB(be, be_app, [LIBS="$LIBS -lbe -lroot -lnet"], :, [-lroot -lnet])
772
773 dnl ----------------------------------------------------------------
774 dnl OpenLDAP requires STDC features
775 AC_PROG_CC
776 if test "X${ac_cv_prog_cc_stdc}" = "Xno" ; then
777         AC_MSG_ERROR([OpenLDAP requires compiler to support STDC constructs.])
778 fi
779
780 dnl ----------------------------------------------------------------
781 dnl Check cc depend flags
782 OL_MKDEPEND
783 if test "${ol_cv_mkdep}" = no ; then
784         # this will soon become an error
785         AC_MSG_WARN([do not know how to generate dependencies])
786 fi
787
788 dnl ----------------------------------------------------------------
789 dnl Check for AIX security library
790 AC_CHECK_LIB(s, afopen, [
791         AUTH_LIBS=-ls
792         AC_DEFINE(HAVE_AIX_SECURITY,1,[define if you have AIX security lib])
793 ])
794
795 dnl ----------------------------------------------------------------
796 dnl Check for IBM OS/390
797 case "$target" in
798 *-ibm-openedition)
799         ac_cv_func_getopt=no
800         AC_DEFINE(BOTH_STRINGS_H,1,[define to use both <string.h> and <strings.h>])
801         ;;
802 esac
803
804 dnl ----------------------------------------------------------------
805 dnl Check for module support
806 ol_link_modules=no
807 WITH_MODULES_ENABLED=no
808 if test $ol_enable_modules != no ; then
809         AC_CHECK_HEADERS(ltdl.h)
810
811         if test $ac_cv_header_ltdl_h = no ; then
812                 AC_MSG_ERROR([could not locate libtool ltdl.h])
813         fi
814
815         AC_CHECK_LIB(ltdl, lt_dlinit, [
816                 MODULES_LIBS=-lltdl
817                 AC_DEFINE(HAVE_LIBLTDL,1,[define if you have libtool -ltdl])
818         ])
819
820         if test "$ac_cv_lib_ltdl_lt_dlinit" = no ; then
821                 AC_MSG_ERROR([could not locate libtool -lltdl])
822         fi
823         ol_link_modules=yes
824         WITH_MODULES_ENABLED=yes
825
826 else
827         for i in $Backends; do
828                 eval "ol_tmp=\$ol_enable_$i"
829                 if test $ol_tmp = mod ; then
830                         AC_MSG_WARN([building static $i backend])
831                         eval "ol_enable_$i=yes"
832                 fi
833         done
834         for i in $Overlays; do
835                 eval "ol_tmp=\$ol_enable_$i"
836                 if test $ol_tmp = mod ; then
837                         AC_MSG_WARN([building static $i overlay])
838                         eval "ol_enable_$i=yes"
839                 fi
840         done
841 fi
842
843 dnl ----------------------------------------------------------------
844 dnl Checks for header files.
845 OL_HEADER_STDC
846
847 if test $ol_cv_header_stdc != yes; then
848         AC_MSG_WARN([could not locate Standard C compliant headers])
849 fi
850
851 AC_HEADER_DIRENT
852 AC_HEADER_SYS_WAIT
853 AC_HEADER_TIOCGWINSZ
854
855 AC_CHECK_HEADERS(               \
856         arpa/inet.h             \
857         arpa/nameser.h          \
858         assert.h                \
859         bits/types.h            \
860         conio.h                 \
861         crypt.h                 \
862         direct.h                \
863         errno.h                 \
864         fcntl.h                 \
865         filio.h                 \
866         getopt.h                \
867         grp.h                   \
868         io.h                    \
869         libutil.h               \
870         limits.h                \
871         locale.h                \
872         netinet/tcp.h           \
873         malloc.h                \
874         memory.h                \
875         psap.h                  \
876         pwd.h                   \
877         process.h               \
878         resolv.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/ucred.h             \
898         sys/uio.h               \
899         syslog.h                \
900         termios.h               \
901         unistd.h                \
902         utime.h                 \
903         winsock.h               \
904         winsock2.h              \
905 )
906
907 dnl ----------------------------------------------------------------
908 dnl Checks for libraries
909
910 AC_CHECK_FUNCS( sigaction sigset )
911
912 dnl HP-UX requires -lV3
913 dnl this is not needed on newer versions of HP-UX
914 if test $ac_cv_func_sigaction = no && test $ac_cv_func_sigaction = no ; then
915         AC_CHECK_LIB(V3, sigset)
916 fi
917
918 dnl The following is INTENTIONALLY scripted out because shell does not
919 dnl support variable names with the '@' character, which is what
920 dnl autoconf would try to generate if one merely used AC_SEARCH_LIBS
921 dnl
922 dnl Skip Winsock tests on Cygwin
923 if test "$ac_cv_cygwin" != yes && test "$ac_cv_header_winsock_h" = yes; then
924 AC_CACHE_CHECK([for winsock], [ol_cv_winsock],
925 save_LIBS="$LIBS"
926 for curlib in ws2_32 wsock32; do
927         LIBS="$LIBS -l$curlib"
928         AC_TRY_LINK([#include <winsock.h>
929                         ],
930                         [
931                         socket(0,0,0);
932                         select(0,NULL,NULL,NULL,NULL);
933                         closesocket(0);
934                         gethostname(NULL,0);
935                         ],
936                         ol_cv_winsock=yes, ol_cv_winsock=no)
937
938         if test $ol_cv_winsock = yes; then
939                 AC_DEFINE(HAVE_WINSOCK, 1, [define if you have winsock])
940                 ac_cv_func_socket=yes
941                 ac_cv_func_select=yes
942                 ac_cv_func_closesocket=yes
943                 ac_cv_func_gethostname=yes
944                 if test $curlib = ws2_32; then
945                         ol_cv_winsock=winsock2
946                         AC_DEFINE(HAVE_WINSOCK2, 1,
947                                   [define if you have winsock2])
948                 fi
949                 break
950         fi
951         LIBS="$save_LIBS"
952 done)
953 fi
954
955 dnl Find socket()
956 dnl Likely combinations:
957 dnl             -lsocket [ -lnsl_s | -lnsl ]
958 dnl             -linet
959
960 AC_CHECK_FUNC(socket, :, [      
961 dnl hopefully we won't include too many libraries
962         AC_CHECK_LIB(socket, main)
963         AC_CHECK_LIB(net, main)
964         AC_CHECK_LIB(nsl_s, main)
965         AC_CHECK_LIB(nsl, main)
966         AC_CHECK_LIB(inet, socket)
967         AC_CHECK_LIB(gen, main)
968 ])
969
970 dnl require select
971 AC_CHECK_FUNC(select, :, AC_MSG_ERROR([select() required.]))
972
973 if test "${ac_cv_header_winsock_h}" != yes; then
974         dnl Select arg types
975         dnl (if this detection becomes permenent, it and the select() detection
976         dnl should be done before the yielding select test) 
977         AC_FUNC_SELECT_ARGTYPES
978 fi
979
980 dnl check to see if system call automatically restart
981 dnl AC_SYS_RESTARTABLE_SYSCALLS
982
983 dnl ----------------------------------------------------------------
984 AC_CHECK_FUNCS( poll )
985 AC_CHECK_HEADERS( poll.h )
986
987 dnl ----------------------------------------------------------------
988 AC_CHECK_HEADERS( sys/epoll.h )
989 if test "${ac_cv_header_sys_epoll_h}" = yes; then
990 AC_MSG_CHECKING(for epoll system call)
991 AC_TRY_RUN(
992 int main(int argc, char *argv[])
993 {
994         int epfd = epoll_create(256);
995         exit (epfd == -1 ? 1 : 0);
996 }, [AC_MSG_RESULT(yes)
997 AC_DEFINE(HAVE_EPOLL,1, [define if your system supports epoll])],
998 AC_MSG_RESULT(no),AC_MSG_RESULT(no))
999 fi
1000
1001 dnl ----------------------------------------------------------------
1002 # strerror checks
1003 OL_STRERROR
1004
1005 dnl ----------------------------------------------------------------
1006 dnl require POSIX regex
1007 AC_CHECK_HEADERS( regex.h )
1008 if test "$ac_cv_header_regex_h" != yes ; then
1009         AC_MSG_ERROR([POSIX regex.h required.])
1010 fi
1011 AC_SEARCH_LIBS(regfree, [regex gnuregex],
1012         :, AC_MSG_ERROR([POSIX regex required.]))
1013
1014 OL_POSIX_REGEX
1015 if test "$ol_cv_c_posix_regex" = no ; then
1016         AC_MSG_ERROR([broken POSIX regex!])
1017 fi
1018
1019 dnl ----------------------------------------------------------------
1020 dnl UUID Support
1021
1022 have_uuid=no
1023 AC_CHECK_HEADERS(sys/uuid.h)
1024 if test $ac_cv_header_sys_uuid_h = yes ; then
1025         save_LIBS="$LIBS"
1026         AC_SEARCH_LIBS(uuid_to_str, uuid, [have_uuid=yes], :)
1027         LIBS="$save_LIBS"
1028
1029         if test have_uuid = yes ; then
1030                 AC_DEFINE(HAVE_UUID_TO_STR,1,
1031                         [define if you have uuid_to_str()])
1032
1033                 test "$ac_cv_search_uuid_to_str" = "none required" || \
1034                         SLAPD_LIBS="$SLAPD_LIBS $ac_cv_search_uuid_to_str"
1035         fi
1036 fi
1037
1038 dnl For windows, check for the need of RPCRT for UUID function support
1039 if test $have_uuid = no ; then
1040         AC_MSG_CHECKING(to see if -lrpcrt4 is needed for win32 UUID support)
1041         save_LIBS="$LIBS"
1042         LIBS="$LIBS -lrpcrt4"
1043         AC_TRY_LINK([
1044                 int __stdcall UuidCreate(void *);
1045                 int __stdcall UuidToStringA(void *,void **);
1046                 ],
1047                 [
1048                 UuidCreate(0);
1049                 UuidToStringA(0,0);
1050                 ],
1051                 need_rpcrt=yes, need_rpcrt=no)
1052         if test $need_rpcrt = yes; then
1053                 SLAPD_LIBS="$SLAPD_LIBS -lrpcrt4"
1054         fi
1055         LIBS="$save_LIBS"
1056         AC_MSG_RESULT($need_rpcrt)
1057 fi
1058
1059 dnl ----------------------------------------------------------------
1060 dnl Check for resolver routines
1061 OL_RESOLVER_LINK
1062
1063 ol_link_dnssrv=no
1064 if test "$ol_cv_lib_resolver" != no ; then
1065         AC_DEFINE(HAVE_RES_QUERY,1,
1066                 [define if you have res_query()])
1067
1068         if test "$ol_enable_dnssrv" != no ; then
1069                 ol_link_dnssrv=yes
1070         fi
1071
1072         if test "$ol_cv_lib_resolver" != yes ; then
1073                 LIBS="$ol_cv_lib_resolver $LIBS"
1074         fi
1075 fi
1076
1077 if test "$ol_enable_dnssrv" = yes -o "$ol_enable_dnssrv" = mod ; then
1078         if test "$ol_link_dnssrv" = no ; then
1079                 AC_MSG_ERROR([DNSSRV requires res_query()])
1080         fi
1081 else
1082         ol_enable_dnssrv=no
1083 fi
1084
1085 AC_CHECK_FUNCS( hstrerror )
1086
1087 dnl ----------------------------------------------------------------
1088 dnl PF_INET6 support requires getaddrinfo and INET6_ADDRSTRLEN
1089 dnl PF_LOCAL may use getaddrinfo in available
1090 AC_CHECK_FUNCS( getaddrinfo getnameinfo gai_strerror inet_ntop )
1091
1092 ol_link_ipv6=no
1093 if test $ac_cv_func_getaddrinfo = no -o $ac_cv_func_inet_ntop = no ; then
1094         if test $ol_enable_ipv6 = yes ; then
1095                 AC_MSG_ERROR([IPv6 support requires getaddrinfo() and inet_ntop()])
1096         fi
1097 elif test $ol_enable_ipv6 != no ; then
1098         AC_CACHE_CHECK([INET6_ADDRSTRLEN],[ol_cv_inet6_addrstrlen],[
1099                 AC_EGREP_CPP(__has_inet6_addrstrlen__,[
1100 #                       include <netinet/in.h>
1101 #                       ifdef INET6_ADDRSTRLEN
1102                                 __has_inet6_addrstrlen__;
1103 #                       endif
1104                 ], [ol_cv_inet6_addrstrlen=yes], [ol_cv_inet6_addrstrlen=no])])
1105
1106
1107         AC_CACHE_CHECK([struct sockaddr_storage],ol_cv_struct_sockaddr_storage,[
1108                 AC_TRY_COMPILE([
1109 #include <sys/types.h>
1110 #include <sys/socket.h>
1111 ],[
1112                         struct sockaddr_storage ss;
1113 ],                      [ol_cv_struct_sockaddr_storage=yes],
1114                         [ol_cv_struct_sockaddr_storage=no])])
1115
1116         if test $ol_cv_inet6_addrstrlen = yes \
1117                 -a $ol_cv_struct_sockaddr_storage = yes ; then
1118                 ol_link_ipv6=yes
1119         elif test $ol_enable_ipv6 = yes \
1120                         -a $ol_cv_inet6_addrstrlen = no ; then
1121                 AC_MSG_ERROR([IPv6 support requires INET6_ADDRSTRLEN])
1122         elif test $ol_enable_ipv6 = yes \
1123                         -a $ol_cv_struct_sockaddr_storage = no ; then
1124                 AC_MSG_ERROR([IPv6 support requires struct sockaddr_storage])
1125         fi
1126 fi
1127
1128 if test $ol_enable_local != no ; then
1129         AC_CHECK_HEADERS( sys/un.h )
1130
1131         if test $ol_enable_local = auto ; then
1132                 ol_enable_local=$ac_cv_header_sys_un_h
1133         elif test $ac_cv_header_sys_un_h = no ; then
1134                 AC_MSG_ERROR([AF_LOCAL domain support requires sys/un.h])
1135         fi
1136 fi
1137
1138 dnl ----------------------------------------------------------------
1139 dnl Kerberos
1140 ol_link_kbind=no
1141 ol_link_krb5=no
1142 ol_link_krb4=no
1143
1144 if test $ol_with_kerberos = yes -o $ol_with_kerberos = auto \
1145         -o $ol_with_kerberos = k5 -o $ol_with_kerberos = k5only \
1146         -o $ol_with_kerberos = k425 ; then
1147
1148         AC_CHECK_HEADERS(krb5.h)
1149
1150         if test $ac_cv_header_krb5_h = yes ; then
1151                 dnl lazy check for Heimdal Kerberos
1152                 AC_CHECK_HEADERS(heim_err.h)
1153                 if test $ac_cv_header_heim_err_h = yes ; then
1154                         krb5_impl=heimdal
1155                 else
1156                         krb5_impl=mit
1157                 fi
1158
1159                 if test $krb5_impl = mit; then
1160                         AC_CHECK_LIB(k5crypto, main,
1161                                 [krb5crypto=k5crypto],
1162                                 [krb5crypto=crypto])
1163
1164                         AC_CHECK_LIB(krb5, main,
1165                                 [have_krb5=yes
1166                                 KRB5_LIBS="-lkrb5 -l$krb5crypto -lcom_err"],
1167                                 [have_krb5=no],
1168                                 [-l$krb5crypto -lcom_err])
1169
1170                 elif test $krb5_impl = heimdal; then
1171                         AC_CHECK_LIB(des, main,
1172                                 [krb5crypto=des],
1173                                 [krb5crypto=crypto])
1174
1175                         AC_CHECK_LIB(krb5, main,
1176                                 [have_krb5=yes
1177                                 KRB5_LIBS="-lkrb5 -l$krb5crypto -lasn1 -lroken -lcom_err"],
1178                                 [have_krb5=no],
1179                                 [-l$krb5crypto -lasn1 -lroken -lcom_err])
1180
1181                         AC_DEFINE(HAVE_HEIMDAL_KERBEROS, 1,
1182                                 [define if you have HEIMDAL Kerberos])
1183
1184                 else
1185                         have_krb5=no
1186                         AC_MSG_WARN([Unrecognized Kerberos5 Implementation])
1187                 fi
1188
1189                 if test $have_krb5 = yes ; then
1190                         ol_link_krb5=yes
1191
1192                         AC_DEFINE(HAVE_KRB5, 1,
1193                                 [define if you have Kerberos V])
1194
1195                         if test $ol_with_kerberos = k5only ; then
1196                                 ol_with_kerberos=found
1197                         fi
1198
1199                 elif test $ol_with_kerberos != auto ; then
1200                         AC_MSG_ERROR([Required Kerberos 5 support not available])
1201                 fi
1202
1203         fi
1204 fi
1205
1206 if test $ol_link_krb5 = yes -a \( $ol_with_kerberos = yes -o \
1207         $ol_with_kerberos = auto -o $ol_with_kerberos = k425 \) ; then
1208
1209         AC_CHECK_HEADERS(kerberosIV/krb.h kerberosIV/des.h)
1210
1211         if test $ac_cv_header_kerberosIV_krb_h = yes ; then
1212                 if test $krb5_impl = mit; then
1213                         AC_CHECK_LIB(krb4, main, [have_k425=yes
1214                                 KRB4_LIBS="-lkrb4 -ldes425"], [have_k425=no],
1215                                 [-ldes425 -lkrb5 -l$krb5crypto -lcom_err])
1216
1217                 elif test $krb5_impl = heimdal; then
1218                         AC_CHECK_LIB(krb4, main, [have_k425=yes
1219                                 KRB4_LIBS="-lkrb4"], [have_k425=no],
1220                                 [-lkrb5 -l$krb5crypto -lasn1 -lroken -lcom_err])
1221
1222                 else
1223                         have_425=no
1224                         AC_MSG_WARN([Unrecongized Kerberos V Implementation])
1225                 fi
1226
1227                 if test $have_k425 = yes ; then
1228                         ol_with_kerberos=found
1229                         ol_link_krb4=yes
1230
1231                         AC_DEFINE(HAVE_KRB425, 1,
1232                                 [define if you have Kerberos V with IV support])
1233                         AC_DEFINE(HAVE_KRB4, 1,
1234                                 [define if you have Kerberos IV])
1235
1236                         AC_CACHE_CHECK([for des_debug in Kerberos libraries],
1237                                 [ol_cv_var_des_debug], [
1238                                 dnl save the flags
1239                                 save_LIBS="$LIBS"
1240                                 LIBS="$KRB4_LIBS $KRB5_LIBS $LIBS"
1241                                 AC_TRY_LINK([
1242 #include <kerberosIV/krb.h>
1243 #include <kerberosIV/des.h>
1244 extern int des_debug;
1245 ],[
1246 des_debug = 1;
1247 ],                              ol_cv_var_des_debug=yes, ol_cv_var_des_debug=no)
1248                                 dnl restore the LIBS
1249                                 LIBS="$save_LIBS"
1250                         ])
1251
1252                         if test $ol_cv_var_des_debug = yes ; then
1253                                 AC_DEFINE(HAVE_DES_DEBUG,1,
1254                                         [define if you have Kerberos des_debug])
1255                         fi
1256
1257                         LIBS="$save_LIBS"
1258                 fi
1259         fi
1260 fi
1261
1262 if test $ol_link_krb5 = yes ; then
1263         ol_with_kerberos=found
1264 fi
1265
1266 if test $ol_with_kerberos = yes -o $ol_with_kerberos = auto \
1267         -o $ol_with_kerberos = k4 -o $ol_with_kerberos = kth ; then
1268
1269         AC_CHECK_HEADERS(krb.h des.h krb-archaeology.h )
1270
1271         if test $ac_cv_header_krb_h = yes ; then
1272                 AC_CHECK_LIB(krb, main, [have_k4=yes], [have_k4=no], [-ldes])
1273
1274                 if test $have_k4 = yes ; then
1275                         ol_with_kerberos=found
1276                         ol_link_krb4=yes
1277
1278                         AC_DEFINE(HAVE_KRB4, 1,
1279                                 [define if you have Kerberos IV])
1280
1281                         KRB4_LIBS="-lkrb -ldes"
1282
1283                         if test $ac_cv_header_krb_archaeology_h = yes ; then
1284                                 AC_DEFINE(HAVE_KTH_KERBEROS, 1,
1285                                         [define if you have Kth Kerberos])
1286                         fi
1287                 fi
1288         fi
1289 fi
1290
1291 if test $ol_link_krb4 = yes -a $ol_enable_kbind != no ; then
1292         ol_link_kbind=yes
1293
1294 elif test $ol_enable_kbind = yes ; then
1295         AC_MSG_ERROR([Kerberos IV detection failed])
1296 fi
1297
1298 if test $ol_link_krb4 = yes -o $ol_link_krb5 = yes ; then
1299         AC_DEFINE(HAVE_KERBEROS, 1, [define if you have Kerberos])
1300
1301 elif test $ol_with_kerberos != auto -a $ol_with_kerberos != no ; then
1302         AC_MSG_ERROR([Kerberos detection failed])
1303 fi
1304
1305 dnl ----------------------------------------------------------------
1306 dnl TLS/SSL
1307         
1308 ol_link_tls=no
1309 if test $ol_with_tls != no ; then
1310         AC_CHECK_HEADERS(openssl/ssl.h ssl.h)
1311
1312         if test $ac_cv_header_openssl_ssl_h = yes \
1313                 -o $ac_cv_header_ssl_h = yes ; then
1314                 AC_CHECK_LIB(ssl, SSLeay_add_ssl_algorithms, 
1315                         [have_ssleay=yes
1316                         need_rsaref=no],
1317                         [have_ssleay=no],
1318                         [-lcrypto])
1319                         
1320                 if test $have_ssleay = no ; then
1321                         AC_CHECK_LIB(ssl, SSL_library_init,
1322                                 [have_ssleay=yes
1323                                 need_rsaref=no], [have_ssleay=no],
1324                                 [-lcrypto])
1325                 fi
1326
1327                 if test $have_ssleay = no ; then
1328                         AC_CHECK_LIB(ssl, ssl3_accept, 
1329                                 [have_ssleay=yes
1330                                 need_rsaref=yes], [have_ssleay=no],
1331                                 [-lcrypto -lRSAglue -lrsaref])
1332                 fi
1333
1334                 if test $have_ssleay = yes ; then
1335                         ol_with_tls=found
1336                         ol_link_tls=yes
1337
1338                         AC_DEFINE(HAVE_SSLEAY, 1, 
1339                                 [define if you have SSLeay or OpenSSL])
1340
1341                         if test $need_rsaref = yes; then
1342                                 AC_DEFINE(HAVE_RSAREF, 1, 
1343                                         [define if you have RSAref])
1344
1345                                 TLS_LIBS="-lssl -lcrypto -lRSAglue -lrsaref"
1346                         else
1347                                 TLS_LIBS="-lssl -lcrypto"
1348                         fi
1349                 fi
1350                 OL_SSL_COMPAT
1351                 if test $ol_cv_ssl_crl_compat = no ; then
1352                         ol_link_ssl=no
1353                 else 
1354                         AC_DEFINE(HAVE_OPENSSL_CRL, 1, 
1355                                 [define if you have OpenSSL with CRL checking capability])
1356                 fi
1357         fi
1358
1359 else
1360         AC_WARN([TLS data protection not supported!])
1361 fi
1362
1363 WITH_TLS=no
1364 if test $ol_link_tls = yes ; then
1365         AC_DEFINE(HAVE_TLS, 1, [define if you have TLS])
1366         WITH_TLS=yes
1367
1368 elif test $ol_with_tls = auto ; then
1369         AC_WARN([Could not locate TLS/SSL package])
1370         AC_WARN([TLS data protection not supported!])
1371
1372 elif test $ol_with_tls != no ; then
1373         AC_ERROR([Could not locate TLS/SSL package])
1374 fi
1375
1376 dnl ----------------------------------------------------------------
1377 dnl LAN Manger password checking requires DES from OpenSSL
1378 if test $ol_enable_lmpasswd != no; then
1379         if test $ol_link_tls != yes ; then
1380                 AC_ERROR([LAN Manager passwords require OpenSSL])
1381         fi
1382
1383         AC_DEFINE(SLAPD_LMHASH, 1, [define to support LAN Manager passwords])
1384 fi
1385
1386 dnl ----------------------------------------------------------------
1387 dnl Threads?
1388 ol_link_threads=no
1389
1390 if test $ol_with_threads = auto -o $ol_with_threads = yes \
1391         -o $ol_with_threads = nt ; then
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 fi
1408
1409 if test $ol_with_threads = auto -o $ol_with_threads = yes \
1410         -o $ol_with_threads = posix ; then
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_TRY_RUN(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 -a \
1527                                 $ac_cv_func_pthread_yield = no -a \
1528                                 $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 -a \
1538                                 $ac_cv_func_pthread_yield = no -a \
1539                                 "$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_TRY_LINK([
1552 #include <pthread.h>
1553 #ifndef NULL
1554 #define NULL (void*)0
1555 #endif
1556 ],
1557                                         [pthread_detach(NULL);],
1558                                         [ol_cv_func_pthread_detach=yes],
1559                                         [ol_cv_func_pthread_detach=no])
1560                         ])
1561
1562                         if test $ol_cv_func_pthread_detach = no ; then
1563                                 AC_MSG_ERROR([could not locate pthread_detach()])
1564                         fi
1565
1566                         AC_DEFINE(HAVE_PTHREAD_DETACH,1,
1567                                 [define if you have pthread_detach function])
1568
1569                         dnl Check for setconcurreny functions
1570                         AC_CHECK_FUNCS( \
1571                                 pthread_setconcurrency \
1572                                 pthread_getconcurrency \
1573                                 thr_setconcurrency \
1574                                 thr_getconcurrency \
1575                         )
1576
1577                         OL_SYS_LINUX_THREADS
1578                         OL_LINUX_THREADS
1579
1580                         if test $ol_cv_linux_threads = error; then
1581                                 AC_MSG_ERROR([LinuxThreads header/library mismatch]);
1582                         fi
1583
1584                         AC_CACHE_CHECK([if pthread_create() works],
1585                                 ol_cv_pthread_create_works,[
1586                         AC_TRY_RUN(OL_PTHREAD_TEST_PROGRAM,
1587                                 [ol_cv_pthread_create_works=yes],
1588                                 [ol_cv_pthread_create_works=no],
1589                                 [dnl assume yes
1590                                 ol_cv_pthread_create_works=yes])])
1591
1592                         if test $ol_cv_pthread_create_works = no ; then
1593                                 AC_MSG_ERROR([pthread_create is not usable, check environment settings])
1594                         fi
1595
1596                         dnl Check if select causes an yield
1597                         if test $ol_with_yielding_select = auto ; then
1598                                 AC_CACHE_CHECK([if select yields when using pthreads],
1599                                         ol_cv_pthread_select_yields,[
1600                                 AC_TRY_RUN([
1601 #include <sys/types.h>
1602 #include <sys/time.h>
1603 #include <unistd.h>
1604 #include <pthread.h>
1605 #ifndef NULL
1606 #define NULL (void*) 0
1607 #endif
1608
1609 static int fildes[2];
1610
1611 static void *task(p)
1612         void *p;
1613 {
1614         int i;
1615         struct timeval tv;
1616
1617         fd_set rfds;
1618
1619         tv.tv_sec=10;
1620         tv.tv_usec=0;
1621
1622         FD_ZERO(&rfds);
1623         FD_SET(fildes[0], &rfds);
1624
1625         /* we're not interested in any fds */
1626         i = select(FD_SETSIZE, &rfds, NULL, NULL, &tv);
1627
1628         if(i < 0) {
1629                 perror("select");
1630                 exit(10);
1631         }
1632
1633         exit(0); /* if we exit here, the select blocked the whole process */
1634 }
1635
1636 int main(argc, argv)
1637         int argc;
1638         char **argv;
1639 {
1640         pthread_t t;
1641
1642         /* create a pipe to select */
1643         if(pipe(&fildes[0])) {
1644                 perror("select");
1645                 exit(1);
1646         }
1647
1648 #ifdef HAVE_PTHREAD_SETCONCURRENCY
1649         (void) pthread_setconcurrency(2);
1650 #else
1651 #ifdef HAVE_THR_SETCONCURRENCY
1652         /* Set Solaris LWP concurrency to 2 */
1653         thr_setconcurrency(2);
1654 #endif
1655 #endif
1656
1657 #if HAVE_PTHREADS < 6
1658         pthread_create(&t, pthread_attr_default, task, NULL);
1659 #else
1660         pthread_create(&t, NULL, task, NULL);
1661 #endif
1662
1663         /* make sure task runs first */
1664 #if HAVE_THR_YIELD
1665         thr_yield();
1666 #elif defined( HAVE_SCHED_YIELD )
1667         sched_yield();
1668 #elif defined( HAVE_PTHREAD_YIELD )
1669         pthread_yield();
1670 #endif
1671
1672         exit(2);
1673 }],
1674                                 [ol_cv_pthread_select_yields=no],
1675                                 [ol_cv_pthread_select_yields=yes],
1676                                 [ol_cv_pthread_select_yields=cross])])
1677
1678                                 if test $ol_cv_pthread_select_yields = cross ; then
1679                                         AC_MSG_ERROR([crossing compiling: use --with-yielding_select=yes|no|manual])
1680                                 fi
1681
1682                                 if test $ol_cv_pthread_select_yields = yes ; then
1683                                         ol_with_yielding_select=yes
1684                                 fi
1685                         fi
1686
1687                         dnl restore flags
1688                         CPPFLAGS="$save_CPPFLAGS"
1689                         LIBS="$save_LIBS"
1690                 else
1691                         AC_MSG_ERROR([could not locate usable POSIX Threads])
1692                 fi
1693         fi
1694
1695         if test $ol_with_threads = posix ; then
1696                 AC_MSG_ERROR([could not locate POSIX Threads])
1697         fi
1698 fi
1699
1700 if test $ol_with_threads = auto -o $ol_with_threads = yes \
1701         -o $ol_with_threads = mach ; then
1702
1703         dnl check for Mach CThreads
1704         AC_CHECK_HEADERS(mach/cthreads.h cthreads.h)
1705         if test $ac_cv_header_mach_cthreads_h = yes ; then
1706                 ol_with_threads=found
1707
1708                 dnl check for cthreads support in current $LIBS
1709                 AC_CHECK_FUNC(cthread_fork,[ol_link_threads=yes])
1710
1711                 if test $ol_link_threads = no ; then
1712                         dnl try -all_load
1713                         dnl this test needs work
1714                         AC_CACHE_CHECK([for cthread_fork with -all_load],
1715                                 [ol_cv_cthread_all_load], [
1716                                 dnl save the flags
1717                                 save_LIBS="$LIBS"
1718                                 LIBS="-all_load $LIBS"
1719                                 AC_TRY_LINK([#include <mach/cthreads.h>],[
1720                                         cthread_fork((void *)0, (void *)0);
1721                                         ], ol_cv_cthread_all_load=yes, ol_cv_cthread_all_load=no)
1722                                 dnl restore the LIBS
1723                                 LIBS="$save_LIBS"
1724                         ])
1725
1726                         if test $ol_cv_cthread_all_load = yes ; then
1727                                 LTHREAD_LIBS="$LTHREAD_LIBS -all_load"
1728                                 ol_link_threads=mach
1729                                 ol_with_threads=found
1730                         fi
1731                 fi
1732
1733         elif test $ac_cv_header_cthreads_h = yes ; then
1734                 dnl Hurd variant of Mach Cthreads
1735                 dnl uses <cthreads.h> and -lthreads
1736
1737                 ol_with_threads=found
1738  
1739                 dnl save the flags
1740                 save_LIBS="$LIBS"
1741                 LIBS="$LIBS -lthreads"
1742                 AC_CHECK_FUNC(cthread_fork,[ol_link_threads=yes])
1743                 LIBS="$save_LIBS"
1744
1745                 if test $ol_link_threads = yes ; then
1746                         LTHREAD_LIBS="-lthreads"
1747                         ol_link_threads=mach
1748                         ol_with_threads=found
1749                 else
1750                         AC_MSG_ERROR([could not link with Mach CThreads])
1751                 fi
1752
1753         elif test $ol_with_threads = mach ; then
1754                 AC_MSG_ERROR([could not locate Mach CThreads])
1755         fi
1756
1757         if test $ol_link_threads = mach ; then
1758                 AC_DEFINE(HAVE_MACH_CTHREADS,1,
1759                         [define if you have Mach Cthreads])
1760         elif test $ol_with_threads = found ; then
1761                 AC_MSG_ERROR([could not link with Mach CThreads])
1762         fi
1763 fi
1764
1765 if test $ol_with_threads = auto -o $ol_with_threads = yes \
1766         -o $ol_with_threads = pth ; then
1767
1768         AC_CHECK_HEADERS(pth.h)
1769
1770         if test $ac_cv_header_pth_h = yes ; then
1771                 AC_CHECK_LIB(pth, pth_version, [have_pth=yes], [have_pth=no])
1772
1773                 if test $have_pth = yes ; then
1774                         AC_DEFINE(HAVE_GNU_PTH,1,[if you have GNU Pth])
1775                         LTHREAD_LIBS="$LTHREAD_LIBS -lpth"
1776                         ol_link_threads=pth
1777                         ol_with_threads=found
1778
1779                         if test $ol_with_yielding_select = auto ; then
1780                                 ol_with_yielding_select=yes
1781                         fi
1782                 fi
1783         fi
1784 fi
1785
1786 if test $ol_with_threads = auto -o $ol_with_threads = yes \
1787         -o $ol_with_threads = lwp ; then
1788
1789         dnl check for SunOS5 LWP
1790         AC_CHECK_HEADERS(thread.h synch.h)
1791         if test $ac_cv_header_thread_h = yes -a $ac_cv_header_synch_h = yes ; then
1792                 AC_CHECK_LIB(thread, thr_create, [have_thr=yes], [have_thr=no])
1793
1794                 if test $have_thr = yes ; then
1795                         AC_DEFINE(HAVE_THR,1,
1796                                 [if you have Solaris LWP (thr) package])
1797                         LTHREAD_LIBS="$LTHREAD_LIBS -lthread"
1798                         ol_link_threads=thr
1799
1800                         if test $ol_with_yielding_select = auto ; then
1801                                 ol_with_yielding_select=yes
1802                         fi
1803
1804                         dnl Check for setconcurreny functions
1805                         AC_CHECK_FUNCS( \
1806                                 thr_setconcurrency \
1807                                 thr_getconcurrency \
1808                         )
1809                 fi
1810         fi
1811
1812         dnl check for SunOS4 LWP
1813         AC_CHECK_HEADERS(lwp/lwp.h)
1814         if test $ac_cv_header_lwp_lwp_h = yes ; then
1815                 AC_CHECK_LIB(lwp, lwp_create, [have_lwp=yes], [have_lwp=no])
1816
1817                 if test $have_lwp = yes ; then
1818                         AC_DEFINE(HAVE_LWP,1,
1819                                 [if you have SunOS LWP package])
1820                         LTHREAD_LIBS="$LTHREAD_LIBS -llwp"
1821                         ol_link_threads=lwp
1822
1823                         if test $ol_with_yielding_select = auto ; then
1824                                 ol_with_yielding_select=no
1825                         fi
1826                 fi
1827         fi
1828 fi
1829
1830 if test $ol_with_yielding_select = yes ; then
1831         AC_DEFINE(HAVE_YIELDING_SELECT,1,
1832                 [define if select implicitly yields])
1833 fi
1834
1835 if test $ol_with_threads = manual ; then
1836         dnl User thinks he can manually configure threads.
1837         ol_link_threads=yes
1838
1839         AC_MSG_WARN([thread defines and link options must be set manually])
1840
1841         AC_CHECK_HEADERS(pthread.h sched.h)
1842         AC_CHECK_FUNCS(sched_yield pthread_yield)
1843         OL_HEADER_LINUX_THREADS
1844
1845         AC_CHECK_HEADERS(mach/cthreads.h)
1846         AC_CHECK_HEADERS(lwp/lwp.h)
1847         AC_CHECK_HEADERS(thread.h synch.h)
1848 fi
1849
1850 if test $ol_link_threads != no -a $ol_link_threads != nt ; then  
1851         dnl needed to get reentrant/threadsafe versions
1852         dnl
1853         AC_DEFINE(REENTRANT,1)
1854         AC_DEFINE(_REENTRANT,1)
1855         AC_DEFINE(THREAD_SAFE,1)
1856         AC_DEFINE(_THREAD_SAFE,1)
1857         AC_DEFINE(THREADSAFE,1)
1858         AC_DEFINE(_THREADSAFE,1)
1859         AC_DEFINE(_SGI_MP_SOURCE,1)
1860
1861         dnl The errno declaration may dependent upon _REENTRANT.
1862         dnl If it does, we must link with thread support.
1863         AC_CACHE_CHECK([for thread specific errno],
1864                 [ol_cv_errno_thread_specific], [
1865                 AC_TRY_LINK([#include <errno.h>], [errno = 0;],
1866                         [ol_cv_errno_thread_specific=yes],
1867                         [ol_cv_errno_thread_specific=no])
1868         ])
1869
1870         dnl The h_errno declaration may dependent upon _REENTRANT.
1871         dnl If it does, we must link with thread support.
1872         AC_CACHE_CHECK([for thread specific h_errno],
1873                 [ol_cv_h_errno_thread_specific], [
1874                 AC_TRY_LINK([#include <netdb.h>], [h_errno = 0;],
1875                         [ol_cv_h_errno_thread_specific=yes],
1876                         [ol_cv_h_errno_thread_specific=no])
1877         ])
1878
1879         if test $ol_cv_errno_thread_specific != yes \
1880                 -o $ol_cv_h_errno_thread_specific != yes ; then
1881                 LIBS="$LTHREAD_LIBS $LIBS"
1882                 LTHREAD_LIBS=""
1883         fi
1884
1885 dnl When in thread environment, use 
1886 dnl             #if defined( HAVE_REENTRANT_FUNCTIONS ) || defined( HAVE_FUNC_R )
1887 dnl                     func_r(...);
1888 dnl             #else
1889 dnl             #       if defined( HAVE_THREADS ) 
1890 dnl                             /* lock */
1891 dnl             #       endif
1892 dnl                             func(...);
1893 dnl             #       if defined( HAVE_THREADS ) 
1894 dnl                             /* unlock */
1895 dnl             #       endif
1896 dnl             #endif
1897 dnl
1898 dnl HAVE_REENTRANT_FUNCTIONS is derived from:
1899 dnl             _POSIX_REENTRANT_FUNCTIONS
1900 dnl             _POSIX_THREAD_SAFE_FUNCTIONS
1901 dnl             _POSIX_THREADSAFE_FUNCTIONS
1902 dnl
1903 dnl             and is currently defined in <ldap_pvt_thread.h>
1904 dnl
1905 dnl HAVE_THREADS is defined by <ldap_pvt_thread.h> iff -UNO_THREADS
1906 dnl 
1907 dnl libldap/*.c should only include <ldap_pvt_thread.h> iff
1908 dnl LDAP_R_COMPILE is defined.  ie:
1909 dnl             #ifdef LDAP_R_COMPILE
1910 dnl             #       include <ldap_pvt_thread.h>
1911 dnl             #endif
1912 dnl
1913 dnl LDAP_R_COMPILE is defined by libldap_r/Makefile.in
1914 dnl specifically for compiling the threadsafe version of
1915 dnl     the ldap library (-lldap_r).
1916 dnl             
1917 dnl     dnl check for reentrant/threadsafe functions
1918 dnl     dnl
1919 dnl     dnl note: these should only be used when linking
1920 dnl     dnl             with $LTHREAD_LIBS
1921 dnl     dnl
1922 dnl     save_CPPFLAGS="$CPPFLAGS"
1923 dnl     save_LIBS="$LIBS"
1924 dnl     LIBS="$LTHREAD_LIBS $LIBS"
1925 dnl     AC_CHECK_FUNCS( \
1926 dnl             gmtime_r \
1927 dnl             gethostbyaddr_r gethostbyname_r \
1928 dnl             feof_unlocked unlocked_feof \
1929 dnl             putc_unlocked unlocked_putc \
1930 dnl             flockfile ftrylockfile \
1931 dnl     )
1932 dnl     CPPFLAGS="$save_CPPFLAGS"
1933 dnl     LIBS="$save_LIBS"
1934 fi  
1935
1936 if test $ol_link_threads = no ; then
1937         if test $ol_with_threads = yes ; then
1938                 AC_MSG_ERROR([no suitable thread support])
1939         fi
1940
1941         if test $ol_with_threads = auto ; then
1942                 AC_MSG_WARN([no suitable thread support, disabling threads])
1943                 ol_with_threads=no
1944         fi
1945
1946         AC_DEFINE(NO_THREADS,1,
1947                 [define if you have (or want) no threads])
1948         LTHREAD_LIBS=""
1949 fi
1950
1951 if test $ol_link_threads != no ; then
1952         AC_DEFINE(LDAP_API_FEATURE_X_OPENLDAP_THREAD_SAFE,1,
1953                 [define to 1 if library is thread safe])
1954 fi
1955
1956 dnl ----------------------------------------------------------------
1957 dnl Tests for reentrant functions necessary to build -lldap_r
1958 AC_CHECK_FUNCS(         \
1959         ctime_r                 \
1960         gethostbyname_r gethostbyaddr_r \
1961 )
1962
1963 if test "$ac_cv_func_ctime_r" = no ; then
1964         ol_cv_func_ctime_r_nargs=0
1965 else
1966         OL_FUNC_CTIME_R_NARGS
1967 dnl     OL_FUNC_CTIME_R_TYPE
1968 fi
1969
1970 if test "$ac_cv_func_gethostbyname_r" = yes ; then
1971         OL_FUNC_GETHOSTBYNAME_R_NARGS
1972 else
1973         ol_cv_func_gethostbyname_r_nargs=0
1974 fi
1975  
1976 if test "$ac_cv_func_gethostbyaddr_r" = yes ; then
1977         OL_FUNC_GETHOSTBYADDR_R_NARGS
1978 else
1979         ol_cv_func_gethostbyaddr_r_nargs=0
1980 fi
1981
1982 dnl ----------------------------------------------------------------
1983 ol_link_ldbm=no 
1984
1985 if test $ol_with_ldbm_api = auto \
1986         -o $ol_with_ldbm_api = berkeley \
1987         -o $ol_with_ldbm_api = bcompat ; then
1988
1989         if test $ol_with_ldbm_api = bcompat; then \
1990                 OL_BERKELEY_COMPAT_DB
1991         else
1992                 OL_BERKELEY_DB
1993         fi
1994
1995         if test $ol_cv_berkeley_db != no ; then
1996                 AC_DEFINE(HAVE_BERKELEY_DB,1,
1997                         [define this if Berkeley DB is available])
1998
1999                 ol_link_ldbm=berkeley
2000                 ol_with_ldbm_api=berkeley
2001
2002                 if test $ol_with_ldbm_type = hash ; then
2003                         AC_DEFINE(LDBM_USE_DBHASH,1,
2004                                 [define this to use DBHASH w/ LDBM backend])
2005                 else
2006                         AC_DEFINE(LDBM_USE_DBBTREE,1,
2007                                 [define this to use DBBTREE w/ LDBM backend])
2008                 fi
2009
2010                 dnl $ol_cv_lib_db should be yes or -ldb
2011                 dnl (it could be no, but that would be an error
2012                 if test $ol_cv_lib_db != yes ; then
2013                         LDBM_LIBS="$LDBM_LIBS $ol_cv_lib_db"
2014                 fi
2015         fi
2016 fi
2017
2018 if test $ol_enable_bdb != no -o $ol_enable_hdb != no; then
2019         if test $ol_link_ldbm != berkeley ; then
2020                 AC_MSG_ERROR(BDB/HDB: BerkeleyDB not available)
2021         else
2022                 OL_BDB_COMPAT
2023
2024                 if test $ol_cv_bdb_compat != yes ; then
2025                         AC_MSG_ERROR([BDB/HDB: BerkeleyDB version incompatible])
2026                 fi
2027         fi
2028 fi
2029
2030 if test $ol_link_ldbm = no -a $ol_with_ldbm_type = btree ; then
2031         AC_MSG_WARN([Could not find LDBM with BTREE support])
2032         ol_with_ldbm_api=none
2033 fi
2034
2035 if test $ol_with_ldbm_api = auto -o $ol_with_ldbm_api = mdbm ; then
2036         OL_MDBM
2037
2038         if test $ol_cv_mdbm = yes ; then
2039                 ol_link_ldbm=mdbm
2040                 ol_with_ldbm_api=mdbm
2041                 if test $ol_cv_lib_mdbm != yes ; then
2042                         LDBM_LIBS="$LDBM_LIBS $ol_cv_lib_mdbm"
2043                 fi
2044         fi
2045 fi
2046
2047 if test $ol_with_ldbm_api = auto -o $ol_with_ldbm_api = gdbm ; then
2048         OL_GDBM
2049
2050         if test $ol_cv_gdbm = yes ; then
2051                 ol_link_ldbm=gdbm
2052                 ol_with_ldbm_api=gdbm
2053
2054                 if test $ol_cv_lib_gdbm != yes ; then
2055                         LDBM_LIBS="$LDBM_LIBS $ol_cv_lib_gdbm"
2056                 fi
2057         fi
2058 fi
2059
2060 if test $ol_with_ldbm_api = ndbm ; then
2061         OL_NDBM
2062
2063         if test $ol_cv_ndbm = yes ; then
2064                 ol_link_ldbm=ndbm
2065                 ol_with_ldbm_api=ndbm
2066
2067                 if test $ol_cv_lib_ndbm != yes ; then
2068                         LDBM_LIBS="$LDBM_LIBS $ol_cv_lib_ndbm"
2069                 fi
2070         fi
2071 fi
2072
2073 if test $ol_link_ldbm = no -a $ol_enable_ldbm != no ; then
2074         AC_MSG_ERROR([could not find suitable LDBM backend])
2075 fi
2076
2077 if test $ol_enable_bdb = yes -o \
2078         $ol_enable_hdb = yes -o \
2079         $ol_enable_ldbm = yes ; then
2080         SLAPD_LIBS="$SLAPD_LIBS \$(LDBM_LIBS)"
2081 fi
2082
2083 dnl ----------------------------------------------------------------
2084
2085 if test $ol_enable_dynamic = yes -a $enable_shared = yes ; then
2086         BUILD_LIBS_DYNAMIC=shared
2087         AC_DEFINE(LDAP_LIBS_DYNAMIC, 1, [define if LDAP libs are dynamic])
2088         LTSTATIC=""
2089 else
2090         BUILD_LIBS_DYNAMIC=static
2091         LTSTATIC="-static"
2092 fi
2093 AC_SUBST(LTSTATIC)dnl
2094
2095 dnl ----------------------------------------------------------------
2096 if test $ol_enable_wrappers != no ; then
2097         AC_CHECK_HEADERS(tcpd.h,[
2098                 AC_MSG_CHECKING([for TCP wrappers library])
2099                 save_LIBS="$LIBS"
2100                 LIBS="$LIBS -lwrap"
2101                 AC_TRY_LINK([
2102 #include <tcpd.h>
2103 int allow_severity = 0;
2104 int deny_severity  = 0;
2105
2106 struct request_info *req;
2107                 ],[
2108 hosts_access(req)
2109                 ],[AC_MSG_RESULT([-lwrap])
2110                 have_wrappers=yes
2111                 LIBS="$save_LIBS"],[
2112                 dnl try with -lnsl
2113                 LIBS="$LIBS -lnsl"
2114                 AC_TRY_LINK([
2115 #include <tcpd.h>
2116 int allow_severity = 0;
2117 int deny_severity  = 0;
2118
2119 struct request_info *req;
2120                 ],[
2121 hosts_access(req)
2122                 ],[AC_MSG_RESULT([-lwrap -lnsl])
2123                 have_wrappers=yes
2124                 LIBS="$save_LIBS -lnsl"],[
2125                 AC_MSG_RESULT(no)
2126                 have_wrappers=no
2127                 LIBS=$save_LIBS])],[
2128                 have_wrappers=no])],[have_wrappers=no])
2129
2130         if test $have_wrappers = yes ; then
2131                 AC_DEFINE(HAVE_TCPD,1, [define if you have -lwrap])
2132                 WRAP_LIBS="-lwrap"
2133         elif test $ol_enable_wrappers = yes ; then
2134                 AC_MSG_ERROR([could not find TCP wrappers, select apppropriate options or disable])
2135         else
2136                 AC_MSG_WARN([could not find TCP wrappers, support disabled])
2137                 WRAP_LIBS=""
2138         fi
2139 fi
2140
2141 dnl ----------------------------------------------------------------
2142 if test $ol_enable_syslog != no ; then
2143         AC_CHECK_FUNC(openlog)
2144         if test $ac_cv_func_openlog = no -a $ol_enable_syslog = yes; then
2145                 AC_MSG_ERROR(could not find syslog, select appropriate options or disable)
2146         fi
2147         ol_enable_syslog=$ac_cv_func_openlog
2148 fi
2149
2150 dnl ----------------------------------------------------------------
2151 dnl dmalloc support (deprecated in favor of -DCSRIMALLOC support)
2152 dnl if test $ol_enable_dmalloc != no ; then
2153 dnl     AC_CHECK_HEADERS(dmalloc.h)
2154 dnl     AC_CHECK_LIB(dmalloc, dmalloc_shutdown)
2155 dnl fi
2156
2157 dnl ----------------------------------------------------------------
2158 dnl SQL
2159 ol_link_sql=no
2160 if test $ol_enable_sql != no ; then
2161         AC_CHECK_HEADERS(sql.h sqlext.h,[],[
2162                 AC_MSG_ERROR([could not locate SQL headers])
2163         ])
2164
2165         sql_LIBS="$LIBS"
2166         LIBS="$LTHREAD_LIBS"
2167
2168         AC_CHECK_LIB(iodbc,SQLDriverConnect,[have_iodbc=yes],[have_iodbc=no])
2169         if test $have_iodbc = yes ; then
2170                 ol_link_sql="-liodbc"
2171         else
2172                 AC_CHECK_LIB(odbc,SQLDriverConnect,[have_odbc=yes],[have_odbc=no])
2173                 if test $have_odbc = yes ; then
2174                         ol_link_sql="-lodbc"
2175                 fi
2176         fi
2177
2178         LIBS="$sql_LIBS"
2179
2180         if test $ol_link_sql != no ; then
2181                 SLAPD_SQL_LIBS="$ol_link_sql"
2182
2183         elif test $ol_enable_sql != auto ; then
2184                 AC_MSG_ERROR([could not locate suitable ODBC library])
2185         fi
2186 fi
2187
2188 dnl ----------------------------------------------------------------
2189 dnl
2190 dnl Check for Cyrus SASL
2191 dnl
2192 WITH_SASL=no
2193 ol_link_sasl=no
2194 ol_link_spasswd=no
2195 if test $ol_with_cyrus_sasl != no ; then
2196         AC_CHECK_HEADERS(sasl/sasl.h sasl.h)
2197
2198         if test $ac_cv_header_sasl_sasl_h = yes -o $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 -a "$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                                 -o "$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                                 -o "$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                                 -a "$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 SSLeay or 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 dnl Checks for long long
2440 AC_CACHE_CHECK([long long], ol_cv_type_long_long, [
2441         AC_TRY_COMPILE([], [long long x;],
2442                 [ol_cv_type_long_long=yes],
2443                 [ol_cv_type_long_long=no])])
2444 if test $ol_cv_type_long_long = yes; then
2445         AC_DEFINE(HAVE_LONG_LONG, 1, [define if you have 'long long'])
2446 fi
2447
2448 AC_TYPE_MODE_T
2449 AC_TYPE_OFF_T
2450 AC_TYPE_PID_T
2451 AC_CHECK_TYPES([ptrdiff_t])
2452 AC_TYPE_SIGNAL
2453 AC_TYPE_SIZE_T
2454
2455 AC_CHECK_TYPE(ssize_t, [signed int])
2456 AC_CHECK_TYPE(caddr_t,  [char *])
2457
2458 OL_TYPE_SOCKLEN_T
2459 AC_CHECK_MEMBERS([struct stat.st_blksize])
2460 AC_HEADER_TIME
2461 AC_STRUCT_TM
2462 AC_TYPE_UID_T
2463 OL_TYPE_SIG_ATOMIC_T
2464
2465 dnl AC_TYPE_GETGROUPS
2466
2467 OL_STRUCT_PASSWD_PW_GECOS
2468 OL_STRUCT_PASSWD_PW_PASSWD
2469
2470 OL_C_UPPER_LOWER
2471 AC_C_CONST
2472 OL_C_VOLATILE
2473
2474 if test $cross_compiling = yes ; then
2475         AC_MSG_WARN([Crossing compiling... all bets are off!])
2476         AC_DEFINE(CROSS_COMPILING, 1, [define if cross compiling])
2477 else
2478         AC_C_BIGENDIAN
2479 fi
2480
2481 AC_COMPILE_CHECK_SIZEOF(short) 
2482 AC_COMPILE_CHECK_SIZEOF(int) 
2483 AC_COMPILE_CHECK_SIZEOF(long)
2484 AC_COMPILE_CHECK_SIZEOF(wchar_t)
2485
2486 if test "$ac_cv_sizeof_int" -lt 4 ; then
2487         AC_MSG_WARN([OpenLDAP requires 'int' to be 32 bits or greater.])
2488
2489         AC_DEFINE(LBER_INT_T,long,[define to 32-bit or greater integer type])
2490 else
2491         AC_DEFINE(LBER_INT_T,int,[define to 32-bit or greater integer type])
2492 fi
2493
2494 AC_DEFINE(LBER_LEN_T,long,[define to large integer type])
2495 AC_DEFINE(LBER_SOCKET_T,int,[define to socket descriptor type])
2496 AC_DEFINE(LBER_TAG_T,long,[define to large integer type])
2497
2498 dnl ----------------------------------------------------------------
2499 dnl Checks for library functions.
2500 AC_FUNC_MEMCMP
2501
2502 if test $ac_cv_func_memcmp_working = no ; then
2503         AC_DEFINE(NEED_MEMCMP_REPLACEMENT,1,
2504                 [define if memcmp is not 8-bit clean or is otherwise broken])
2505 fi
2506
2507 dnl AC_FUNC_MKTIME([]) dnl checks for sys/time.h and unistd.h
2508 AC_FUNC_STRFTIME
2509 dnl AC_FUNC_STRTOD([])
2510
2511 OL_FUNC_INET_ATON
2512
2513 dnl Check for NT specific routines
2514 AC_CHECK_FUNC(_spawnlp, AC_DEFINE(HAVE_SPAWNLP,1,[if you have spawnlp()]))
2515
2516 AC_CHECK_FUNC(_snprintf, [ac_cv_func_snprintf=yes
2517         AC_DEFINE(snprintf, _snprintf, [define to snprintf routine])
2518 ])
2519
2520 AC_CHECK_FUNC(_vsnprintf, [ac_cv_func_vsnprintf=yes
2521         AC_DEFINE(vsnprintf, _vsnprintf, [define to vsnprintf routine])
2522 ])
2523
2524 AC_FUNC_VPRINTF
2525
2526 if test $ac_cv_func_vprintf = yes ; then
2527         dnl check for vsnprintf
2528         AC_CHECK_FUNCS(snprintf vsnprintf)
2529 fi
2530
2531 AC_CHECK_FUNCS(         \
2532         bcopy                   \
2533         closesocket             \
2534         chroot                  \
2535         endgrent                \
2536         endpwent                \
2537         fcntl                   \
2538         flock                   \
2539         fstat                   \
2540         getdtablesize   \
2541         getgrgid                \
2542         gethostname             \
2543         getpass                 \
2544         getpassphrase   \
2545         getpwuid                \
2546         getpwnam                \
2547         getspnam                \
2548         gettimeofday    \
2549         initgroups              \
2550         lockf                   \
2551         memcpy                  \
2552         memmove                 \
2553         mkstemp                 \
2554         mktemp                  \
2555         pipe                    \
2556         read                    \
2557         recv                    \
2558         recvfrom                \
2559         setpwfile               \
2560         setgid                  \
2561         setegid                 \
2562         setsid                  \
2563         setuid                  \
2564         seteuid                 \
2565         signal                  \
2566         strdup                  \
2567         strpbrk                 \
2568         strrchr                 \
2569         strsep                  \
2570         strstr                  \
2571         strtol                  \
2572         strtoul                 \
2573         strtoq                  \
2574         strtouq                 \
2575         strtoll                 \
2576         strspn                  \
2577         sysconf                 \
2578         usleep                  \
2579         waitpid                 \
2580         wait4                   \
2581         write                   \
2582         send                    \
2583         sendmsg                 \
2584         sendto                  \
2585 )
2586
2587 dnl We actually may need to replace more than this.
2588 AC_REPLACE_FUNCS(getopt getpeereid)
2589
2590 if test "$ac_cv_func_getopt" != yes; then
2591         LIBSRCS="$LIBSRCS getopt.c"
2592 fi
2593 if test "$ac_cv_func_getpeereid" != yes; then
2594         OL_MSGHDR_MSG_ACCRIGHTS
2595         if test "$ac_cv_func_getpeereid" != yes; then
2596                 OL_MSGHDR_MSG_CONTROL
2597         fi
2598         LIBSRCS="$LIBSRCS getpeereid.c"
2599 fi
2600 if test "$ac_cv_func_snprintf" != yes -o "$ac_cv_func_vsnprintf" != yes; then
2601         if test "$ac_cv_func_snprintf" != yes; then
2602                 AC_DEFINE(snprintf, ber_pvt_snprintf, [define to snprintf routine])
2603         fi
2604         if test "$ac_cv_func_vsnprintf" != yes; then
2605                 AC_DEFINE(vsnprintf, ber_pvt_vsnprintf, [define to snprintf routine])
2606         fi
2607 fi
2608
2609 dnl ----------------------------------------------------------------
2610 dnl Sort out defines
2611
2612 if test "$ol_enable_slapi" != no ; then
2613         dnl This check is done also if --enable-modules is used;
2614         dnl it is duplicated here, 'cause it'd be cached anyway
2615         AC_CHECK_HEADERS(ltdl.h)
2616
2617         if test $ac_cv_header_ltdl_h != yes ; then
2618                 AC_MSG_ERROR([could not locate <ltdl.h>])
2619         fi
2620         AC_CHECK_LIB(ltdl, lt_dlinit, [
2621                 SLAPI_LIBS=-lltdl
2622                 LIBSLAPI=libslapi.a
2623                 LIBSLAPITOOLS=../libslapi.a
2624                 AC_DEFINE(HAVE_LIBLTDL,1,[define if you have libtool -ltdl])
2625         ],[AC_MSG_ERROR([could not locate libtool -lltdl])])
2626
2627         AC_DEFINE(LDAP_SLAPI,1, [define this to add SLAPI code])
2628 fi
2629
2630 if test "$ol_enable_debug" != no ; then
2631         AC_DEFINE(LDAP_DEBUG,1,
2632                 [define this to add debugging code])
2633 fi
2634 if test "$ol_enable_syslog" = yes ; then
2635         AC_DEFINE(LDAP_SYSLOG,1,
2636                 [define this to add syslog code])
2637 fi
2638 if test "$ol_link_kbind" != no ; then
2639         AC_DEFINE(LDAP_API_FEATURE_X_OPENLDAP_V2_KBIND,LDAP_VENDOR_VERSION,
2640                 [define to LDAP VENDOR VERSION])
2641 fi
2642 if test "$ol_enable_proctitle" != no ; then
2643         AC_DEFINE(LDAP_PROCTITLE,1,
2644                 [define this for LDAP process title support])
2645 fi
2646 if test "$ol_enable_referrals" != no ; then
2647         AC_DEFINE(LDAP_API_FEATURE_X_OPENLDAP_V2_REFERRALS,LDAP_VENDOR_VERSION,
2648                 [define to LDAP VENDOR VERSION])
2649 fi
2650 if test "$ol_enable_local" != no; then
2651         AC_DEFINE(LDAP_PF_LOCAL,1,[define to support PF_LOCAL])
2652 fi
2653 if test "$ol_link_ipv6" != no; then
2654         AC_DEFINE(LDAP_PF_INET6,1,[define to support PF_INET6])
2655 fi
2656 if test "$ol_enable_cleartext" != no ; then
2657         AC_DEFINE(SLAPD_CLEARTEXT,1,[define to support cleartext passwords])
2658 fi
2659 if test "$ol_enable_crypt" != no ; then
2660         AC_DEFINE(SLAPD_CRYPT,1,[define to support crypt(3) passwords])
2661 fi
2662 if test "$ol_link_spasswd" != no ; then
2663         AC_DEFINE(SLAPD_SPASSWD,1,[define to support SASL passwords])
2664 fi
2665 if test "$ol_enable_multimaster" != no ; then
2666         AC_DEFINE(SLAPD_MULTIMASTER,1,[define to support multimaster replication])
2667 fi
2668 if test "$ol_enable_rlookups" != no ; then
2669         AC_DEFINE(SLAPD_RLOOKUPS,1,[define to support reverse lookups])
2670 fi
2671 if test "$ol_enable_aci" != no ; then
2672         AC_DEFINE(SLAPD_ACI_ENABLED,1,[define to support per-object ACIs])
2673 fi
2674
2675 if test "$ol_link_modules" != no ; then
2676         AC_DEFINE(SLAPD_MODULES,1,[define to support modules])
2677         BUILD_SLAPD=yes
2678         SLAPD_MODULES_LDFLAGS="-dlopen self"
2679 fi
2680
2681 AC_DEFINE(SLAPD_MOD_STATIC,1,[statically linked module])
2682 AC_DEFINE(SLAPD_MOD_DYNAMIC,2,[dynamically linked module])
2683
2684 if test "$ol_enable_bdb" != no ; then
2685         BUILD_SLAPD=yes
2686         BUILD_BDB=$ol_enable_bdb
2687         if test "$ol_enable_bdb" = mod ; then
2688                 SLAPD_DYNAMIC_BACKENDS="$SLAPD_DYNAMIC_BACKENDS back-bdb"
2689                 MFLAG=SLAPD_MOD_DYNAMIC
2690         else
2691                 SLAPD_STATIC_BACKENDS="$SLAPD_STATIC_BACKENDS back-bdb"
2692                 MFLAG=SLAPD_MOD_STATIC
2693         fi
2694         AC_DEFINE_UNQUOTED(SLAPD_BDB,$MFLAG,[define to support BDB backend])
2695 fi
2696
2697 if test "$ol_enable_dnssrv" != no ; then
2698         BUILD_SLAPD=yes
2699         BUILD_DNSSRV=$ol_enable_dnssrv
2700         if test "$ol_enable_dnssrv" = mod ; then
2701                 SLAPD_DYNAMIC_BACKENDS="$SLAPD_DYNAMIC_BACKENDS back-dnssrv"
2702                 MFLAG=SLAPD_MOD_DYNAMIC
2703         else
2704                 SLAPD_STATIC_BACKENDS="$SLAPD_STATIC_BACKENDS back-dnssrv"
2705                 MFLAG=SLAPD_MOD_STATIC
2706         fi
2707         AC_DEFINE_UNQUOTED(SLAPD_DNSSRV,$MFLAG,[define to support DNS SRV backend])
2708 fi
2709
2710 if test "$ol_enable_hdb" != no ; then
2711         BUILD_SLAPD=yes
2712         BUILD_HDB=$ol_enable_hdb
2713         if test "$ol_enable_hdb" = mod ; then
2714                 SLAPD_DYNAMIC_BACKENDS="$SLAPD_DYNAMIC_BACKENDS back-hdb"
2715                 MFLAG=SLAPD_MOD_DYNAMIC
2716         else
2717                 SLAPD_STATIC_BACKENDS="$SLAPD_STATIC_BACKENDS back-hdb"
2718                 MFLAG=SLAPD_MOD_STATIC
2719         fi
2720         AC_DEFINE_UNQUOTED(SLAPD_HDB,$MFLAG,[define to support HDB backend])
2721 fi
2722
2723 if test "$ol_enable_ldap" != no ; then
2724         BUILD_SLAPD=yes
2725         BUILD_LDAP=$ol_enable_ldap
2726         if test "$ol_enable_ldap" = mod ; then
2727                 SLAPD_DYNAMIC_BACKENDS="$SLAPD_DYNAMIC_BACKENDS back-ldap"
2728                 MFLAG=SLAPD_MOD_DYNAMIC
2729         else
2730                 SLAPD_STATIC_BACKENDS="$SLAPD_STATIC_BACKENDS back-ldap"
2731                 MFLAG=SLAPD_MOD_STATIC
2732         fi
2733         AC_DEFINE_UNQUOTED(SLAPD_LDAP,$MFLAG,[define to support LDAP backend])
2734 fi
2735
2736 if test "$ol_link_ldbm" != no -a $ol_enable_ldbm != no; then
2737         BUILD_SLAPD=yes
2738         BUILD_LDBM=$ol_enable_ldbm
2739         if test "$ol_enable_ldbm" = mod ; then
2740                 SLAPD_DYNAMIC_BACKENDS="$SLAPD_DYNAMIC_BACKENDS back-ldbm"
2741                 MFLAG=SLAPD_MOD_DYNAMIC
2742         else
2743                 SLAPD_STATIC_BACKENDS="$SLAPD_STATIC_BACKENDS back-ldbm"
2744                 MFLAG=SLAPD_MOD_STATIC
2745         fi
2746         AC_DEFINE_UNQUOTED(SLAPD_LDBM,$MFLAG,[define to support LDBM backend])
2747 fi
2748
2749 if test "$ol_enable_meta" != no ; then
2750         BUILD_SLAPD=yes
2751         BUILD_META=$ol_enable_meta
2752         BUILD_REWRITE=yes
2753         if test "$ol_enable_meta" = mod ; then
2754                 SLAPD_DYNAMIC_BACKENDS="$SLAPD_DYNAMIC_BACKENDS back-meta"
2755                 MFLAG=SLAPD_MOD_DYNAMIC
2756         else
2757                 SLAPD_STATIC_BACKENDS="$SLAPD_STATIC_BACKENDS back-meta"
2758                 MFLAG=SLAPD_MOD_STATIC
2759         fi
2760         AC_DEFINE_UNQUOTED(SLAPD_META,$MFLAG,[define to support LDAP Metadirectory backend])
2761 fi
2762
2763 if test "$ol_enable_monitor" != no ; then
2764         BUILD_SLAPD=yes
2765         BUILD_MONITOR=$ol_enable_monitor
2766         if test "$ol_enable_monitor" = mod ; then
2767                 SLAPD_DYNAMIC_BACKENDS="$SLAPD_DYNAMIC_BACKENDS back-monitor"
2768                 MFLAG=SLAPD_MOD_DYNAMIC
2769         else
2770                 SLAPD_STATIC_BACKENDS="$SLAPD_STATIC_BACKENDS back-monitor"
2771                 MFLAG=SLAPD_MOD_STATIC
2772         fi
2773         AC_DEFINE_UNQUOTED(SLAPD_MONITOR,$MFLAG,[define to support cn=Monitor backend])
2774 fi
2775
2776 if test "$ol_enable_null" != no ; then
2777         BUILD_SLAPD=yes
2778         BUILD_NULL=$ol_enable_null
2779         if test "$ol_enable_null" = mod ; then
2780                 SLAPD_DYNAMIC_BACKENDS="$SLAPD_DYNAMIC_BACKENDS back-null"
2781                 MFLAG=SLAPD_MOD_DYNAMIC
2782         else
2783                 SLAPD_STATIC_BACKENDS="$SLAPD_STATIC_BACKENDS back-null"
2784                 MFLAG=SLAPD_MOD_STATIC
2785         fi
2786         AC_DEFINE_UNQUOTED(SLAPD_NULL,$MFLAG,[define to support NULL backend])
2787 fi
2788
2789 if test "$ol_enable_passwd" != no ; then
2790         BUILD_SLAPD=yes
2791         BUILD_PASSWD=$ol_enable_passwd
2792         if test "$ol_enable_passwd" = mod ; then
2793                 SLAPD_DYNAMIC_BACKENDS="$SLAPD_DYNAMIC_BACKENDS back-passwd"
2794                 MFLAG=SLAPD_MOD_DYNAMIC
2795         else
2796                 SLAPD_STATIC_BACKENDS="$SLAPD_STATIC_BACKENDS back-passwd"
2797                 MFLAG=SLAPD_MOD_STATIC
2798         fi
2799         AC_DEFINE_UNQUOTED(SLAPD_PASSWD,$MFLAG,[define to support PASSWD backend])
2800 fi
2801
2802 if test "$ol_link_perl" != no ; then
2803         BUILD_SLAPD=yes
2804         BUILD_PERL=$ol_enable_perl
2805         if test "$ol_enable_perl" = mod ; then
2806                 SLAPD_DYNAMIC_BACKENDS="$SLAPD_DYNAMIC_BACKENDS back-perl"
2807                 MFLAG=SLAPD_MOD_DYNAMIC
2808         else
2809                 SLAPD_STATIC_BACKENDS="$SLAPD_STATIC_BACKENDS back-perl"
2810                 MFLAG=SLAPD_MOD_STATIC
2811         fi
2812         AC_DEFINE_UNQUOTED(SLAPD_PERL,$MFLAG,[define to support PERL backend])
2813 fi
2814
2815 if test "$ol_enable_relay" != no ; then
2816         BUILD_SLAPD=yes
2817         BUILD_RELAY=$ol_enable_relay
2818         if test "$ol_enable_relay" = mod ; then
2819                 SLAPD_DYNAMIC_BACKENDS="$SLAPD_DYNAMIC_BACKENDS back-relay"
2820                 MFLAG=SLAPD_MOD_DYNAMIC
2821         else
2822                 SLAPD_STATIC_BACKENDS="$SLAPD_STATIC_BACKENDS back-relay"
2823                 MFLAG=SLAPD_MOD_STATIC
2824         fi
2825         AC_DEFINE_UNQUOTED(SLAPD_RELAY,$MFLAG,[define to support relay backend])
2826 fi
2827
2828 if test "$ol_enable_shell" != no ; then
2829         if test "$ol_link_thread" != no ; then
2830                 AC_MSG_WARN([Use of --without-threads is recommended with back-shell])
2831         fi
2832         BUILD_SLAPD=yes
2833         BUILD_SHELL=$ol_enable_shell
2834         if test "$ol_enable_shell" = mod ; then
2835                 SLAPD_DYNAMIC_BACKENDS="$SLAPD_DYNAMIC_BACKENDS back-shell"
2836                 MFLAG=SLAPD_MOD_DYNAMIC
2837         else
2838                 SLAPD_STATIC_BACKENDS="$SLAPD_STATIC_BACKENDS back-shell"
2839                 MFLAG=SLAPD_MOD_STATIC
2840         fi
2841         AC_DEFINE_UNQUOTED(SLAPD_SHELL,$MFLAG,[define to support SHELL backend])
2842 fi
2843
2844 if test "$ol_link_sql" != no ; then
2845         BUILD_SLAPD=yes
2846         BUILD_SQL=$ol_enable_sql
2847         if test "$ol_enable_sql" = mod; then
2848                 SLAPD_DYNAMIC_BACKENDS="$SLAPD_DYNAMIC_BACKENDS back-sql"
2849                 MFLAG=SLAPD_MOD_DYNAMIC
2850         else
2851                 SLAPD_STATIC_BACKENDS="$SLAPD_STATIC_BACKENDS back-sql"
2852                 MFLAG=SLAPD_MOD_STATIC
2853         fi
2854         AC_DEFINE_UNQUOTED(SLAPD_SQL,$MFLAG,[define to support SQL backend])
2855 fi
2856
2857 if test "$ol_enable_accesslog" != no ; then
2858         BUILD_ACCESSLOG=$ol_enable_accesslog
2859         if test "$ol_enable_accesslog" = mod ; then
2860                 MFLAG=SLAPD_MOD_DYNAMIC
2861                 SLAPD_DYNAMIC_OVERLAYS="$SLAPD_DYNAMIC_OVERLAYS accesslog.la"
2862         else
2863                 MFLAG=SLAPD_MOD_STATIC
2864                 SLAPD_STATIC_OVERLAYS="$SLAPD_STATIC_OVERLAYS accesslog.o"
2865         fi
2866         AC_DEFINE_UNQUOTED(SLAPD_OVER_ACCESSLOG,$MFLAG,[define for In-Directory Access Logging overlay])
2867 fi
2868
2869 if test "$ol_enable_denyop" != no ; then
2870         BUILD_DENYOP=$ol_enable_denyop
2871         if test "$ol_enable_denyop" = mod ; then
2872                 MFLAG=SLAPD_MOD_DYNAMIC
2873                 SLAPD_DYNAMIC_OVERLAYS="$SLAPD_DYNAMIC_OVERLAYS denyop.la"
2874         else
2875                 MFLAG=SLAPD_MOD_STATIC
2876                 SLAPD_STATIC_OVERLAYS="$SLAPD_STATIC_OVERLAYS denyop.o"
2877         fi
2878         AC_DEFINE_UNQUOTED(SLAPD_OVER_DENYOP,$MFLAG,[define for Dynamic Group overlay])
2879 fi
2880
2881 if test "$ol_enable_dyngroup" != no ; then
2882         BUILD_DYNGROUP=$ol_enable_dyngroup
2883         if test "$ol_enable_dyngroup" = mod ; then
2884                 MFLAG=SLAPD_MOD_DYNAMIC
2885                 SLAPD_DYNAMIC_OVERLAYS="$SLAPD_DYNAMIC_OVERLAYS dyngroup.la"
2886         else
2887                 MFLAG=SLAPD_MOD_STATIC
2888                 SLAPD_STATIC_OVERLAYS="$SLAPD_STATIC_OVERLAYS dyngroup.o"
2889         fi
2890         AC_DEFINE_UNQUOTED(SLAPD_OVER_DYNGROUP,$MFLAG,[define for Dynamic Group overlay])
2891 fi
2892
2893 if test "$ol_enable_dynlist" != no ; then
2894         BUILD_DYNLIST=$ol_enable_dynlist
2895         if test "$ol_enable_dynlist" = mod ; then
2896                 MFLAG=SLAPD_MOD_DYNAMIC
2897                 SLAPD_DYNAMIC_OVERLAYS="$SLAPD_DYNAMIC_OVERLAYS dynlist.la"
2898         else
2899                 MFLAG=SLAPD_MOD_STATIC
2900                 SLAPD_STATIC_OVERLAYS="$SLAPD_STATIC_OVERLAYS dynlist.o"
2901         fi
2902         AC_DEFINE_UNQUOTED(SLAPD_OVER_DYNLIST,$MFLAG,[define for Dynamic List overlay])
2903 fi
2904
2905 if test "$ol_enable_glue" != no ; then
2906         BUILD_GLUE=$ol_enable_glue
2907         if test "$ol_enable_glue" = mod ; then
2908                 MFLAG=SLAPD_MOD_DYNAMIC
2909                 SLAPD_DYNAMIC_OVERLAYS="$SLAPD_DYNAMIC_OVERLAYS glue.la"
2910         else
2911                 MFLAG=SLAPD_MOD_STATIC
2912                 SLAPD_STATIC_OVERLAYS="$SLAPD_STATIC_OVERLAYS glue.o"
2913         fi
2914         AC_DEFINE_UNQUOTED(SLAPD_OVER_GLUE,$MFLAG,[define for Backend Glue overlay])
2915 fi
2916
2917 if test "$ol_enable_lastmod" != no ; then
2918         BUILD_LASTMOD=$ol_enable_lastmod
2919         if test "$ol_enable_lastmod" = mod ; then
2920                 MFLAG=SLAPD_MOD_DYNAMIC
2921                 SLAPD_DYNAMIC_OVERLAYS="$SLAPD_DYNAMIC_OVERLAYS lastmod.la"
2922         else
2923                 MFLAG=SLAPD_MOD_STATIC
2924                 SLAPD_STATIC_OVERLAYS="$SLAPD_STATIC_OVERLAYS lastmod.o"
2925         fi
2926         AC_DEFINE_UNQUOTED(SLAPD_OVER_LASTMOD,$MFLAG,[define for Last Modification overlay])
2927 fi
2928
2929 if test "$ol_enable_ppolicy" != no ; then
2930         BUILD_PPOLICY=$ol_enable_ppolicy
2931         if test "$ol_enable_ppolicy" = mod ; then
2932                 MFLAG=SLAPD_MOD_DYNAMIC
2933                 SLAPD_DYNAMIC_OVERLAYS="$SLAPD_DYNAMIC_OVERLAYS ppolicy.la"
2934         else
2935                 MFLAG=SLAPD_MOD_STATIC
2936                 SLAPD_STATIC_OVERLAYS="$SLAPD_STATIC_OVERLAYS ppolicy.o"
2937         fi
2938         AC_DEFINE_UNQUOTED(SLAPD_OVER_PPOLICY,$MFLAG,[define for Password Policy overlay])
2939 fi
2940
2941 if test "$ol_enable_proxycache" != no ; then
2942         BUILD_PROXYCACHE=$ol_enable_proxycache
2943         if test "$ol_enable_proxycache" = mod ; then
2944                 MFLAG=SLAPD_MOD_DYNAMIC
2945                 SLAPD_DYNAMIC_OVERLAYS="$SLAPD_DYNAMIC_OVERLAYS pcache.la"
2946         else
2947                 MFLAG=SLAPD_MOD_STATIC
2948                 SLAPD_STATIC_OVERLAYS="$SLAPD_STATIC_OVERLAYS pcache.o"
2949         fi
2950         AC_DEFINE_UNQUOTED(SLAPD_OVER_PROXYCACHE,$MFLAG,[define for Proxy Cache overlay])
2951 fi
2952
2953 if test "$ol_enable_refint" != no ; then
2954         BUILD_REFINT=$ol_enable_refint
2955         if test "$ol_enable_refint" = mod ; then
2956                 MFLAG=SLAPD_MOD_DYNAMIC
2957                 SLAPD_DYNAMIC_OVERLAYS="$SLAPD_DYNAMIC_OVERLAYS refint.la"
2958         else
2959                 MFLAG=SLAPD_MOD_STATIC
2960                 SLAPD_STATIC_OVERLAYS="$SLAPD_STATIC_OVERLAYS refint.o"
2961         fi
2962         AC_DEFINE_UNQUOTED(SLAPD_OVER_REFINT,$MFLAG,[define for Referential Integrity overlay])
2963 fi
2964
2965 if test "$ol_enable_retcode" != no ; then
2966         BUILD_RETCODE=$ol_enable_retcode
2967         if test "$ol_enable_retcode" = mod ; then
2968                 MFLAG=SLAPD_MOD_DYNAMIC
2969                 SLAPD_DYNAMIC_OVERLAYS="$SLAPD_DYNAMIC_OVERLAYS retcode.la"
2970         else
2971                 MFLAG=SLAPD_MOD_STATIC
2972                 SLAPD_STATIC_OVERLAYS="$SLAPD_STATIC_OVERLAYS retcode.o"
2973         fi
2974         AC_DEFINE_UNQUOTED(SLAPD_OVER_RETCODE,$MFLAG,[define for Referential Integrity overlay])
2975 fi
2976
2977 if test "$ol_enable_rwm" != no ; then
2978         BUILD_REWRITE=yes
2979         BUILD_RWM=$ol_enable_rwm
2980         if test "$ol_enable_rwm" = mod ; then
2981                 MFLAG=SLAPD_MOD_DYNAMIC
2982                 SLAPD_DYNAMIC_OVERLAYS="$SLAPD_DYNAMIC_OVERLAYS rwm.la"
2983         else
2984                 MFLAG=SLAPD_MOD_STATIC
2985                 SLAPD_STATIC_OVERLAYS="$SLAPD_STATIC_OVERLAYS rwm_x.o"
2986         fi
2987         AC_DEFINE_UNQUOTED(SLAPD_OVER_RWM,$MFLAG,[define for Rewrite/Remap overlay])
2988 fi
2989
2990 if test "$ol_enable_syncprov" != no ; then
2991         BUILD_SYNCPROV=$ol_enable_syncprov
2992         if test "$ol_enable_syncprov" = mod ; then
2993                 MFLAG=SLAPD_MOD_DYNAMIC
2994                 SLAPD_DYNAMIC_OVERLAYS="$SLAPD_DYNAMIC_OVERLAYS syncprov.la"
2995         else
2996                 MFLAG=SLAPD_MOD_STATIC
2997                 SLAPD_STATIC_OVERLAYS="$SLAPD_STATIC_OVERLAYS syncprov.o"
2998         fi
2999         AC_DEFINE_UNQUOTED(SLAPD_OVER_SYNCPROV,$MFLAG,[define for Syncrepl Provider overlay])
3000 fi
3001
3002 if test "$ol_enable_translucent" != no ; then
3003         BUILD_TRANSLUCENT=$ol_enable_translucent
3004         if test "$ol_enable_translucent" = mod ; then
3005                 MFLAG=SLAPD_MOD_DYNAMIC
3006                 SLAPD_DYNAMIC_OVERLAYS="$SLAPD_DYNAMIC_OVERLAYS translucent.la"
3007         else
3008                 MFLAG=SLAPD_MOD_STATIC
3009                 SLAPD_STATIC_OVERLAYS="$SLAPD_STATIC_OVERLAYS translucent.o"
3010         fi
3011         AC_DEFINE_UNQUOTED(SLAPD_OVER_TRANSLUCENT,$MFLAG,[define for Translucent Proxy overlay])
3012 fi
3013
3014 if test "$ol_enable_unique" != no ; then
3015         BUILD_UNIQUE=$ol_enable_unique
3016         if test "$ol_enable_unique" = mod ; then
3017                 MFLAG=SLAPD_MOD_DYNAMIC
3018                 SLAPD_DYNAMIC_OVERLAYS="$SLAPD_DYNAMIC_OVERLAYS unique.la"
3019         else
3020                 MFLAG=SLAPD_MOD_STATIC
3021                 SLAPD_STATIC_OVERLAYS="$SLAPD_STATIC_OVERLAYS unique.o"
3022         fi
3023         AC_DEFINE_UNQUOTED(SLAPD_OVER_UNIQUE,$MFLAG,[define for Attribute Uniqueness overlay])
3024 fi
3025
3026 if test "$ol_enable_slurpd" != no -a "$ol_link_threads" != no -a \
3027         $BUILD_SLAPD = yes ; then
3028         BUILD_SLURPD=yes
3029 fi
3030
3031 if test "$ol_enable_rewrite" != no ; then
3032         AC_DEFINE(ENABLE_REWRITE,1,[define to enable rewriting in back-ldap and back-meta])
3033         BUILD_REWRITE=yes
3034 fi
3035
3036 if test "$ol_enable_slapi" != no ; then
3037         AC_DEFINE(ENABLE_SLAPI,1,[define to enable slapi library])
3038         BUILD_SLAPI=yes
3039         SLAPD_SLAPI_DEPEND=libslapi.a
3040 fi
3041
3042 dnl ----------------------------------------------------------------
3043
3044 dnl
3045 dnl For Windows build, we don't want to include -dlopen flags.
3046 dnl They hurt more than they help.
3047 dnl
3048
3049 if test "$ac_cv_mingw32" = yes ; then
3050         PLAT=NT
3051         SLAPD_MODULES_LDFLAGS=
3052 else
3053         PLAT=UNIX
3054 fi
3055
3056 AC_SUBST(LIBSRCS)
3057 AC_SUBST(PLAT)
3058 AC_SUBST(WITH_SASL)
3059 AC_SUBST(WITH_TLS)
3060 AC_SUBST(WITH_MODULES_ENABLED)
3061 AC_SUBST(BUILD_LIBS_DYNAMIC)
3062
3063 AC_SUBST(BUILD_SLAPD)
3064 dnl slapi
3065   AC_SUBST(BUILD_SLAPI)
3066   AC_SUBST(SLAPD_SLAPI_DEPEND)
3067 dnl backends
3068   AC_SUBST(BUILD_BDB)
3069   AC_SUBST(BUILD_DNSSRV)
3070   AC_SUBST(BUILD_HDB)
3071   AC_SUBST(BUILD_LDAP)
3072   AC_SUBST(BUILD_LDBM)
3073   AC_SUBST(BUILD_META)
3074   AC_SUBST(BUILD_MONITOR)
3075   AC_SUBST(BUILD_NULL)
3076   AC_SUBST(BUILD_PASSWD)
3077   AC_SUBST(BUILD_RELAY)
3078   AC_SUBST(BUILD_PERL)
3079   AC_SUBST(BUILD_SHELL)
3080   AC_SUBST(BUILD_SQL)
3081 dnl overlays
3082   AC_SUBST(BUILD_ACCESSLOG)
3083   AC_SUBST(BUILD_DENYOP)
3084   AC_SUBST(BUILD_DYNGROUP)
3085   AC_SUBST(BUILD_DYNLIST)
3086   AC_SUBST(BUILD_GLUE)
3087   AC_SUBST(BUILD_LASTMOD)
3088   AC_SUBST(BUILD_PPOLICY)
3089   AC_SUBST(BUILD_PROXYCACHE)
3090   AC_SUBST(BUILD_REFINT)
3091   AC_SUBST(BUILD_RETCODE)
3092   AC_SUBST(BUILD_RWM)
3093   AC_SUBST(BUILD_SYNCPROV)
3094   AC_SUBST(BUILD_TRANSLUCENT)
3095   AC_SUBST(BUILD_UNIQUE)
3096 AC_SUBST(BUILD_SLURPD)
3097
3098 AC_SUBST(LDAP_LIBS)
3099 AC_SUBST(SLAPD_LIBS)
3100 AC_SUBST(SLURPD_LIBS)
3101 AC_SUBST(LDBM_LIBS)
3102 AC_SUBST(LTHREAD_LIBS)
3103 AC_SUBST(LUTIL_LIBS)
3104 AC_SUBST(WRAP_LIBS)
3105
3106 AC_SUBST(SLAPD_MODULES_CPPFLAGS)
3107 AC_SUBST(SLAPD_MODULES_LDFLAGS)
3108
3109 AC_SUBST(SLAPD_NO_STATIC)
3110 AC_SUBST(SLAPD_STATIC_BACKENDS)
3111 AC_SUBST(SLAPD_DYNAMIC_BACKENDS)
3112 AC_SUBST(SLAPD_STATIC_OVERLAYS)
3113 AC_SUBST(SLAPD_DYNAMIC_OVERLAYS)
3114
3115 AC_SUBST(PERL_CPPFLAGS)
3116 AC_SUBST(SLAPD_PERL_LDFLAGS)
3117 AC_SUBST(MOD_PERL_LDFLAGS)
3118
3119 AC_SUBST(KRB4_LIBS)
3120 AC_SUBST(KRB5_LIBS)
3121 AC_SUBST(SASL_LIBS)
3122 AC_SUBST(TLS_LIBS)
3123 AC_SUBST(MODULES_LIBS)
3124 AC_SUBST(SLAPI_LIBS)
3125 AC_SUBST(LIBSLAPI)
3126 AC_SUBST(LIBSLAPITOOLS)
3127 AC_SUBST(AUTH_LIBS)
3128
3129 AC_SUBST(SLAPD_SLP_LIBS)
3130 AC_SUBST(SLAPD_GMP_LIBS)
3131
3132 AC_SUBST(SLAPD_SQL_LDFLAGS)
3133 AC_SUBST(SLAPD_SQL_LIBS)
3134 AC_SUBST(SLAPD_SQL_INCLUDES)
3135
3136 dnl ----------------------------------------------------------------
3137 dnl final help output
3138 AC_ARG_WITH(xxinstall,[
3139 See INSTALL file for further details.])
3140
3141 dnl ----------------------------------------------------------------
3142 dnl final output
3143 dnl
3144
3145 AC_CONFIG_FILES([\
3146 Makefile:build/top.mk:Makefile.in:build/dir.mk \
3147 doc/Makefile:build/top.mk:doc/Makefile.in:build/dir.mk \
3148 doc/man/Makefile:build/top.mk:doc/man/Makefile.in:build/dir.mk \
3149 doc/man/man1/Makefile:build/top.mk:doc/man/man1/Makefile.in:build/man.mk \
3150 doc/man/man3/Makefile:build/top.mk:doc/man/man3/Makefile.in:build/man.mk \
3151 doc/man/man5/Makefile:build/top.mk:doc/man/man5/Makefile.in:build/man.mk \
3152 doc/man/man8/Makefile:build/top.mk:doc/man/man8/Makefile.in:build/man.mk \
3153 clients/Makefile:build/top.mk:clients/Makefile.in:build/dir.mk \
3154 clients/tools/Makefile:build/top.mk:clients/tools/Makefile.in:build/rules.mk \
3155 include/Makefile:build/top.mk:include/Makefile.in \
3156 libraries/Makefile:build/top.mk:libraries/Makefile.in:build/dir.mk      \
3157 libraries/liblber/Makefile:build/top.mk:libraries/liblber/Makefile.in:build/lib.mk:build/lib-shared.mk  \
3158 libraries/libldap/Makefile:build/top.mk:libraries/libldap/Makefile.in:build/lib.mk:build/lib-shared.mk  \
3159 libraries/libldap_r/Makefile:build/top.mk:libraries/libldap_r/Makefile.in:build/lib.mk:build/lib-shared.mk      \
3160 libraries/liblunicode/Makefile:build/top.mk:libraries/liblunicode/Makefile.in:build/lib.mk:build/lib-static.mk  \
3161 libraries/liblutil/Makefile:build/top.mk:libraries/liblutil/Makefile.in:build/lib.mk:build/lib-static.mk        \
3162 libraries/librewrite/Makefile:build/top.mk:libraries/librewrite/Makefile.in:build/lib.mk:build/lib-shared.mk \
3163 servers/Makefile:build/top.mk:servers/Makefile.in:build/dir.mk \
3164 servers/slapd/Makefile:build/top.mk:servers/slapd/Makefile.in:build/srv.mk \
3165 servers/slapd/back-bdb/Makefile:build/top.mk:servers/slapd/back-bdb/Makefile.in:build/mod.mk \
3166 servers/slapd/back-dnssrv/Makefile:build/top.mk:servers/slapd/back-dnssrv/Makefile.in:build/mod.mk \
3167 servers/slapd/back-hdb/Makefile:build/top.mk:servers/slapd/back-hdb/Makefile.in:build/mod.mk \
3168 servers/slapd/back-ldap/Makefile:build/top.mk:servers/slapd/back-ldap/Makefile.in:build/mod.mk \
3169 servers/slapd/back-ldbm/Makefile:build/top.mk:servers/slapd/back-ldbm/Makefile.in:build/mod.mk \
3170 servers/slapd/back-ldif/Makefile:build/top.mk:servers/slapd/back-ldif/Makefile.in:build/mod.mk \
3171 servers/slapd/back-meta/Makefile:build/top.mk:servers/slapd/back-meta/Makefile.in:build/mod.mk \
3172 servers/slapd/back-monitor/Makefile:build/top.mk:servers/slapd/back-monitor/Makefile.in:build/mod.mk \
3173 servers/slapd/back-null/Makefile:build/top.mk:servers/slapd/back-null/Makefile.in:build/mod.mk \
3174 servers/slapd/back-passwd/Makefile:build/top.mk:servers/slapd/back-passwd/Makefile.in:build/mod.mk \
3175 servers/slapd/back-perl/Makefile:build/top.mk:servers/slapd/back-perl/Makefile.in:build/mod.mk \
3176 servers/slapd/back-relay/Makefile:build/top.mk:servers/slapd/back-relay/Makefile.in:build/mod.mk \
3177 servers/slapd/back-shell/Makefile:build/top.mk:servers/slapd/back-shell/Makefile.in:build/mod.mk \
3178 servers/slapd/back-sql/Makefile:build/top.mk:servers/slapd/back-sql/Makefile.in:build/mod.mk \
3179 servers/slapd/shell-backends/Makefile:build/top.mk:servers/slapd/shell-backends/Makefile.in:build/srv.mk \
3180 servers/slapd/slapi/Makefile:build/top.mk:servers/slapd/slapi/Makefile.in:build/lib.mk:build/lib-shared.mk  \
3181 servers/slapd/overlays/Makefile:build/top.mk:servers/slapd/overlays/Makefile.in:build/lib.mk \
3182 servers/slurpd/Makefile:build/top.mk:servers/slurpd/Makefile.in:build/srv.mk \
3183 tests/Makefile:build/top.mk:tests/Makefile.in:build/dir.mk \
3184 tests/run \
3185 tests/progs/Makefile:build/top.mk:tests/progs/Makefile.in:build/rules.mk \
3186 ])
3187 AC_CONFIG_COMMANDS([default],[[
3188 chmod +x tests/run
3189 date > stamp-h
3190 BACKENDSC="servers/slapd/backends.c"
3191 echo "Making $BACKENDSC"
3192 rm -f $BACKENDSC
3193 cat > $BACKENDSC << ENDX
3194 /* This work is part of OpenLDAP Software <http://www.openldap.org/>.
3195  *
3196  * Copyright 1998-2005 The OpenLDAP Foundation.
3197  * All rights reserved.
3198  *
3199  * Redistribution and use in source and binary forms, with or without
3200  * modification, are permitted only as authorized by the OpenLDAP
3201  * Public License.
3202  *
3203  * A copy of this license is available in the file LICENSE in the
3204  * top-level directory of the distribution or, alternatively, at
3205  * <http://www.OpenLDAP.org/license.html>.
3206  */
3207 /* This file is automatically generated by configure; please do not edit. */
3208
3209 #include "portable.h"
3210 #include "slap.h"
3211
3212 ENDX
3213 if test "${STATIC_BACKENDS}"; then
3214         for b in config ${STATIC_BACKENDS}; do
3215                 bb=`echo "${b}" | sed -e 's/back-//'`
3216                 cat >> $BACKENDSC << ENDX
3217 extern BI_init ${bb}_back_initialize;
3218 ENDX
3219         done
3220
3221         cat >> $BACKENDSC << ENDX
3222
3223 BackendInfo slap_binfo[] = {
3224 ENDX
3225
3226         for b in config ${STATIC_BACKENDS}; do
3227                 bb=`echo "${b}" | sed -e 's/back-//'`
3228                 echo "    Add ${bb} ..."
3229                 cat >> $BACKENDSC << ENDX
3230         { "${bb}", ${bb}_back_initialize },
3231 ENDX
3232         done
3233
3234         cat >> $BACKENDSC << ENDX
3235         { NULL, NULL },
3236 };
3237
3238 /* end of generated file */
3239 ENDX
3240 fi
3241
3242 echo Please run \"make depend\" to build dependencies
3243 ]],[[STATIC_BACKENDS="$SLAPD_STATIC_BACKENDS"]])
3244 AC_OUTPUT