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