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