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