]> git.sur5r.net Git - openldap/blob - configure.in
981583120c469110fc0baa26ee5343d29d0fe375
[openldap] / configure.in
1 dnl
2 dnl Copyright 1998,1999 The OpenLDAP Foundation.  All Rights Reserved.
3 dnl 
4 dnl Redistribution and use in source and binary forms are permitted only
5 dnl as authorized by the OpenLDAP Public License.  A copy of this
6 dnl license is available at http://www.OpenLDAP.org/license.html or
7 dnl in file LICENSE in the top-level directory of the distribution.
8 dnl
9
10 dnl Disable config.cache!
11 define([AC_CACHE_LOAD], )dnl
12 define([AC_CACHE_SAVE], )dnl
13
14 dnl Configure.in for OpenLDAP
15 AC_INIT(build/version)dnl
16 AC_CONFIG_AUX_DIR(build)dnl
17
18 OL_VERSION=`cat $ac_aux_dir/version`
19 if test -z "$OL_VERSION"; then
20         AC_MSG_ERROR([could not determine version])
21 fi
22
23 dnl ----------------------------------------------------------------
24 dnl Determine host platform
25 dnl             we try not to use this for much
26 AC_CANONICAL_SYSTEM
27
28 AM_INIT_AUTOMAKE(OpenLDAP,[$OL_VERSION], [no defines])dnl
29 AC_SUBST(PACKAGE)
30 AC_SUBST(VERSION)
31 AC_DEFINE_UNQUOTED(OPENLDAP_PACKAGE,"$PACKAGE",Package)
32 AC_DEFINE_UNQUOTED(OPENLDAP_VERSION,"$VERSION",Version)
33
34 dnl We use autoconf features new to 2.13.
35 dnl aclocal.m4 should be built using aclocal from automake 1.4
36 dnl libtool 1.3.3 should be installed.
37 AC_PREREQ(2.13)dnl Required Autoconf version
38
39 AC_CONFIG_HEADER(include/portable.h include/ldap_features.h include/lber_types.h)dnl
40
41 dnl ----------------------------------------------------------------
42 dnl Start Args
43 AC_MSG_CHECKING(configure arguments)
44 AC_PREFIX_DEFAULT(/usr/local)
45
46 top_builddir=`pwd`
47 AC_SUBST(top_builddir)dnl
48
49 ldap_subdir="/openldap"
50
51 AC_ARG_WITH(subdir,
52 [  --with-subdir=DIR change default subdirectory used for installs],
53 [case "$withval" in
54         no) ldap_subdir=""
55                 ;;
56         yes)
57                 ;;
58         /*|\\*)
59                 ldap_subdir="$withval"
60                 ;;
61         *)
62                 ldap_subdir="/$withval"
63                 ;;
64 esac
65 ])dnl
66
67 AC_SUBST(ldap_subdir)dnl
68
69 OL_ARG_ENABLE(debug,[  --enable-debug   enable debugging], yes)dnl
70 dnl ol_enable_syslog=no
71 OL_ARG_ENABLE(syslog,[  --enable-syslog enable syslog support], auto)dnl
72 OL_ARG_ENABLE(proctitle,[  --enable-proctitle   enable proctitle support], yes)dnl
73 OL_ARG_ENABLE(cache,[  --enable-cache   enable caching], yes)dnl
74 OL_ARG_ENABLE(dns,[  --enable-dns               enable V2 DNS  extension], no)dnl
75 OL_ARG_ENABLE(referrals,[  --enable-referrals   enable V2 Referrals extension], yes)dnl
76 OL_ARG_ENABLE(cldap,[  --enable-cldap   enable connectionless ldap], no)dnl
77 OL_ARG_ENABLE(x_compile,[  --enable-x-compile   enable cross compiling],
78         no, [yes no])dnl
79
80 dnl General "with" options
81 OL_ARG_ENABLE(dmalloc,[  --enable-dmalloc       enable debug malloc support], no)dnl
82
83 OL_ARG_WITH(cyrus_sasl,[  --with-cyrus-sasl  with Cyrus SASL support],
84         auto, [auto yes no] )
85 OL_ARG_WITH(fetch,[  --with-fetch  with fetch URL support],
86         auto, [auto yes no] )
87 OL_ARG_WITH(kerberos,[  --with-kerberos with Kerberos support],
88         auto, [auto k5 k4 afs yes no])
89 OL_ARG_WITH(readline,[  --with-readline  with readline support],
90         auto, [auto yes no] )
91 OL_ARG_WITH(threads,[  --with-threads   use threads],
92         auto, [auto posix mach lwp yes no manual] )
93 OL_ARG_WITH(tls,[  --with-tls  with TLS/SSL support],
94         auto, [auto ssleay openssl yes no] )
95 OL_ARG_WITH(yielding_select,[  --with-yielding-select   with implicitly yielding select],
96         auto, [auto yes no manual] )
97
98 dnl Server options
99
100 dnl LDAPD OPTIONS
101 AC_ARG_WITH(xxldapdoptions,[LDAPD Options:])
102 OL_ARG_ENABLE(ldapd,[  --enable-ldapd   enable building ldapd], no)dnl
103
104 dnl SLAPD OPTIONS
105 AC_ARG_WITH(xxslapdoptions,[SLAPD Options:])
106 OL_ARG_ENABLE(slapd,[  --enable-slapd   enable building slapd], yes)dnl
107 OL_ARG_ENABLE(cleartext,[    --enable-cleartext enable cleartext passwords], yes)dnl
108 OL_ARG_ENABLE(crypt,[    --enable-crypt enable crypt(3) passwords], auto)dnl
109 OL_ARG_ENABLE(modules,[    --enable-modules     enable dynamic module support], no)dnl
110 OL_ARG_ENABLE(multimaster,[    --enable-multimaster     enable multimaster replication], no)dnl
111 OL_ARG_ENABLE(phonetic,[    --enable-phonetic   enable phonetic/soundex], no)dnl
112 OL_ARG_ENABLE(quipu,[    --enable-quipu build quipu migration tools], no)dnl
113 OL_ARG_ENABLE(rlookups,[    --enable-rlookups   enable reverse lookups], auto)dnl
114 OL_ARG_ENABLE(wrappers,[    --enable-wrappers   enable tcp wrapper support], no)dnl
115
116 dnl SLAPD Backend options
117 OL_ARG_ENABLE(bdb2,[    --enable-bdb2   enable bdb2 backend], no)dnl
118 OL_ARG_WITH(bdb2_module,[      --with-bdb2-module       module type], static,
119         [static dynamic])
120 OL_ARG_ENABLE(ldap,[    --enable-ldap   enable ldap backend], no)dnl
121 OL_ARG_WITH(ldap_module,[      --with-ldap-module       module type], static,
122         [static dynamic])
123 OL_ARG_ENABLE(ldbm,[    --enable-ldbm   enable ldbm backend], yes)dnl
124 OL_ARG_WITH(ldbm_module,[      --with-ldbm-module       module type], static,
125         [static dynamic])
126 OL_ARG_WITH(ldbm_api,[      --with-ldbm-api     use LDBM API], auto,
127         [auto db2 db mdbm gdbm ndbm manual])
128 OL_ARG_WITH(ldbm_type,[      --with-ldbm-type   use LDBM type], auto,
129         [auto btree hash])
130
131 OL_ARG_ENABLE(passwd,[    --enable-passwd       enable passwd backend], no)dnl
132 OL_ARG_WITH(passwd_module,[      --with-passwd-module   module type], static,
133         [static dynamic])
134 OL_ARG_ENABLE(perl,[    --enable-perl   enable perl backend], no)dnl
135 OL_ARG_WITH(perl_module,[      --with-perl-module       module type], static,
136         [static dynamic])
137 OL_ARG_ENABLE(shell,[    --enable-shell enable shell backend], no)dnl
138 OL_ARG_WITH(shell_module,[      --with-shell-module     module type], static,
139         [static dynamic])
140 OL_ARG_ENABLE(tcl,[    --enable-tcl     enable tcl backend], no)dnl
141 OL_ARG_WITH(tcl_module,[      --with-tcl-module module type], static,
142         [static dynamic])
143
144 dnl SLURPD OPTIONS
145 AC_ARG_WITH(xxslurpdoptions,[SLURPD Options:])
146 OL_ARG_ENABLE(slurpd,[  --enable-slurpd enable building slurpd], auto)dnl
147
148 AC_ARG_WITH(xxliboptions,[Library Generation & Linking Options])
149 AC_ENABLE_STATIC
150 dnl AC_DISABLE_SHARED
151 AC_ENABLE_SHARED
152
153 dnl General "enable" options
154 # validate options
155 if test $ol_enable_dns = yes ; then
156         if test $ol_enable_referrals = no ; then
157                 AC_MSG_ERROR([DNS requires --enable-referrals])
158         fi
159         if test $ol_enable_referrals = auto ; then
160                 AC_MSG_WARN([DNS requires referrals, adding --enable-referrals])
161                 ol_enable_referrals=yes
162         fi
163 fi
164
165 if test $ol_enable_slapd = no ; then
166         dnl SLAPD was specificallly disabled
167         if test $ol_enable_bdb2 = yes ; then
168                 AC_MSG_WARN([slapd disabled, ignoring --enable-bdb2 argument])
169         fi
170         if test $ol_enable_ldap = yes ; then
171                 AC_MSG_WARN([slapd disabled, ignoring --enable-ldap argument])
172         fi
173         if test $ol_enable_ldbm = yes ; then
174                 AC_MSG_WARN([slapd disabled, ignoring --enable-ldbm argument])
175         fi
176         if test $ol_enable_passwd = yes ; then
177                 AC_MSG_WARN([slapd disabled, ignoring --enable-passwd argument])
178         fi
179         if test $ol_enable_perl = yes ; then
180                 AC_MSG_WARN([slapd disabled, ignoring --enable-perl argument])
181         fi
182         if test $ol_enable_shell = yes ; then
183                 AC_MSG_WARN([slapd disabled, ignoring --enable-shell argument])
184         fi
185         if test $ol_enable_tcl = yes ; then
186                 AC_MSG_WARN([slapd disabled, ignoring --enable-tcl argument])
187         fi
188         if test $ol_enable_modules = yes ; then
189                 AC_MSG_WARN([slapd disabled, ignoring --enable-modules argument])
190         fi
191         if test $ol_enable_multimaster = yes ; then
192                 AC_MSG_WARN([slapd disabled, ignoring --enable-multimaster argument])
193         fi
194         if test $ol_enable_wrappers = yes ; then
195                 AC_MSG_WARN([slapd disabled, ignoring --enable-wrappers argument])
196         fi
197         if test $ol_enable_phonetic = yes ; then
198                 AC_MSG_WARN([slapd disabled, ignoring --enable-phonetic argument])
199         fi
200         if test $ol_enable_quipu = yes ; then
201                 AC_MSG_WARN([slapd disabled, ignoring --enable-quipu argument])
202         fi
203         if test $ol_enable_rlookups = yes ; then
204                 AC_MSG_WARN([slapd disabled, ignoring --enable-rlookups argument])
205         fi
206         if test $ol_with_ldbm_api != auto ; then
207                 AC_MSG_WARN([slapd disabled, ignoring --with-ldbm-api argument])
208         fi
209         if test $ol_with_ldbm_type != auto ; then
210                 AC_MSG_WARN([slapd disabled, ignoring --with-ldbm-type argument])
211         fi
212         if test $ol_with_bdb2_module != static ; then
213                 AC_MSG_WARN([slapd disabled, ignoring --with-bdb2-module argument])
214         fi
215         if test $ol_with_ldap_module != static ; then
216                 AC_MSG_WARN([slapd disabled, ignoring --with-ldap-module argument])
217         fi
218         if test $ol_with_ldbm_module != static ; then
219                 AC_MSG_WARN([slapd disabled, ignoring --with-ldbm-module argument])
220         fi
221         if test $ol_with_passwd_module != static ; then
222                 AC_MSG_WARN([slapd disabled, ignoring --with-passwd-module argument])
223         fi
224         if test $ol_with_perl_module != static ; then
225                 AC_MSG_WARN([slapd disabled, ignoring --with-perl-module argument])
226         fi
227         if test $ol_with_shell_module != static ; then
228                 AC_MSG_WARN([slapd disabled, ignoring --with-shell-module argument])
229         fi
230         if test $ol_with_tcl_module != static ; then
231                 AC_MSG_WARN([slapd disabled, ignoring --with-tcl-module argument])
232         fi
233         if test $ol_enable_slurpd = yes ; then
234                 AC_MSG_ERROR([slurpd requires slapd])
235         fi
236
237         # force settings to no
238         ol_enable_bdb2=no
239         ol_enable_ldap=no
240         ol_enable_ldbm=no
241         ol_enable_passwd=no
242         ol_enable_perl=no
243         ol_enable_shell=no
244         ol_enable_tcl=no
245
246         ol_enable_modules=no
247         ol_enable_multimaster=no
248         ol_enable_phonetic=no
249         ol_enable_quipu=no
250         ol_enable_rlookups=no
251         ol_enable_wrappers=no
252
253         ol_with_ldbm_api=no
254         ol_with_ldbm_type=no
255
256         ol_with_bdb2_module=static
257         ol_with_ldap_module=static
258         ol_with_ldbm_module=static
259         ol_with_passwd_module=static
260         ol_with_perl_module=static
261         ol_with_shell_module=static
262         ol_with_tcl_module=static
263
264         ol_enable_slurpd=no
265
266 elif test $ol_enable_ldbm = no ; then
267         dnl SLAPD without LDBM
268
269         if test $ol_with_ldbm_api != auto ; then
270                 AC_MSG_WARN([LDBM disabled, ignoring --with-ldbm-api argument])
271         fi
272
273         if test $ol_with_ldbm_type != auto ; then
274                 AC_MSG_WARN([LDBM disabled, ignoring --with-ldbm-type argument])
275         fi
276
277         if test $ol_with_ldbm_module != static ; then
278                 AC_MSG_WARN([LDBM disabled, ignoring --with-ldbm-module argument])
279         fi
280
281         if test $ol_enable_bdb2 = yes ; then
282                 AC_MSG_ERROR([BDB2 requires --enable-ldbm])
283         fi
284
285         if test $ol_enable_modules != yes -a \
286                 $ol_enable_ldap = no -a \
287                 $ol_enable_passwd = no -a \
288                 $ol_enable_perl = no -a \
289                 $ol_enable_shell = no -a \
290                 $ol_enable_tcl = no ; then
291                 AC_MSG_ERROR([slapd requires a backend])
292         fi
293
294         ol_with_ldbm_api=no
295         ol_with_ldbm_type=no
296         ol_with_ldbm_module=static
297
298 elif test $ol_enable_bdb2 = yes ; then
299         dnl SLAPD with BDB2
300
301         if test $ol_with_ldbm_api != auto -a \
302                 $ol_with_ldbm_api != db2 ; then
303                 AC_MSG_ERROR([BDB2 requires LDBM API DB2])
304         fi
305
306         ol_with_ldbm_api=db2
307
308 else
309         dnl SLAPD with LDBM
310
311         if test $ol_enable_bdb2 != no ; then
312                 if test $ol_with_ldbm_api != auto -a \
313                         $ol_with_ldbm_api != db2 ; then
314                         AC_MSG_WARN([BDB2 requires LDBM api db2 or auto])
315                         ol_enable_bdb2=no
316                 fi
317         fi
318
319         if test $ol_with_ldbm_api = gdbm -a \
320                 $ol_with_ldbm_type = btree ; then
321                 AC_MSG_ERROR([GDBM only supports LDBM type hash])
322         fi
323         if test $ol_with_ldbm_api = mdbm -a \
324                 $ol_with_ldbm_type = btree ; then
325                 AC_MSG_ERROR([MDBM only supports LDBM type hash])
326         fi
327         if test $ol_with_ldbm_api = ndbm -a \
328                 $ol_with_ldbm_type = btree ; then
329                 AC_MSG_ERROR([NDBM only supports LDBM type hash])
330         fi
331 fi
332
333 if test $ol_enable_slurpd = yes ; then
334         dnl SLURPD was specifically enabled
335         if test $ol_with_threads = no ; then
336                 AC_MSG_ERROR([slurpd requires threads])
337         fi
338 fi
339
340 AC_MSG_RESULT(done)
341
342 ## Initialize vars
343 LDAP_LIBS=
344 LDIF_LIBS=
345 LDBM_LIBS=
346 LTHREAD_LIBS=
347 LUTIL_LIBS=
348
349 LDAPD_LIBS=
350 SLAPD_LIBS=
351 SLURPD_LIBS=
352
353 BUILD_LDAPD=no
354 BUILD_SLAPD=no
355 BUILD_SLURPD=no
356
357 BUILD_BDB2=no
358 BUILD_LDAP=no
359 BUILD_LDBM=no
360 BUILD_PASSWD=no
361 BUILD_PERL=no
362 BUILD_QUIPU=no
363 BUILD_SHELL=no
364 BUILD_TCL=no
365 BUILD_THREAD=no
366
367 BUILD_BDB2_DYNAMIC=static
368 BUILD_LDAP_DYNAMIC=static
369 BUILD_LDBM_DYNAMIC=static
370 BUILD_PASSWD_DYNAMIC=static
371 BUILD_PERL_DYNAMIC=static
372 BUILD_SHELL_DYNAMIC=static
373 BUILD_TCL_DYNAMIC=static
374
375 SLAPD_MODULES_LDFLAGS=
376 SLAPD_MODULES_CPPFLAGS=
377 SLAPD_MODULES_LIST=
378
379 SLAPD_PERL_LDFLAGS=
380 SLAPD_PERL_CPPFLAGS=
381
382 KRB_LIBS=
383 READLINE_LIBS=
384 SASL_LIBS=
385 TERMCAP_LIBS=
386 TLS_LIBS=
387 MODULES_LIBS=
388
389 dnl ----------------------------------------------------------------
390 dnl Checks for programs
391
392 dnl AC_PROG_INSTALL
393
394 AC_DEFINE(HAVE_MKVERSION, 1, [define this if you have mkversion])
395
396
397 dnl
398 dnl Determine which C translator to use
399 dnl
400
401 dnl AIX Thread requires we use cc_r or xlc_r.
402 dnl But only do this IF AIX and CC is not set
403 dnl and threads are auto|yes|posix.
404 dnl
405 dnl If we find cc_r|xlc_r, force pthreads and assume
406 dnl             pthread_create is in $LIBS (ie: don't bring in
407 dnl             any additional thread libraries)
408 dnl If we do not find cc_r|xlc_r, disable threads
409
410 ol_aix_threads=no
411 case "$target" in
412 *-*-aix*) dnl all AIX is not a good idea.
413         if test -z "$CC" ; then
414                 case "$ol_with_threads" in
415                 auto | yes |  posix) ol_aix_threads=yes ;;
416                 esac
417         fi
418 ;;
419 esac
420
421 if test $ol_aix_threads = yes ; then
422         if test -z "${CC}" ; then
423                 AC_CHECK_PROGS(CC,cc_r xlc_r cc)
424
425                 if test "$CC" = cc ; then
426                         dnl no CC! don't allow --with-threads
427                         if test $ol_with_threads != auto ; then
428                                 AC_MSG_ERROR([--with-threads requires cc_r (or other suitable compiler) on AIX])
429                         else
430                                 AC_MSG_WARN([disabling threads, no cc_r on AIX])
431                         fi
432                         ol_with_threads=no
433                 fi
434         fi
435
436         if test "${CC}" = "cc_r" -o "${CC}" = "xlc_r" ; then
437                 ol_with_threads=posix
438                 ol_cv_pthread_create=yes
439         fi
440 fi
441
442 if test -z "${CC}"; then
443         AC_CHECK_PROGS(CC,cc)
444 fi
445
446 dnl The default CFLAGS is empty NOT whatever AC_PROG_CC sets.
447 dnl (for now, let autoconf sort this out)
448 dnl CFLAGS=${CFLAGS-""}
449
450 AC_LIBTOOL_DLOPEN
451 AC_PROG_LIBTOOL
452 dnl AC_PROG_MAKE_SET
453
454 AC_PROG_AWK
455 OL_PROG_LN_H
456 AC_PROG_LN_S
457
458 if test "$LN_H" = "cp" -a "$LN_S" = "ln"; then
459         LN_S="$LN_H"
460 fi
461
462 AC_PATH_PROG(SENDMAIL, sendmail, /usr/lib/sendmail,
463         $PATH:/usr/libexec:/usr/lib:/usr/sbin:/usr/etc:/etc)
464 AC_PATH_PROG(EDITOR, vi, /usr/ucb/vi, $PATH:/usr/ucb)
465 AC_PATH_PROG(FINGER, finger, /usr/ucb/finger, $PATH:/usr/ucb)
466
467 ol_link_perl=no
468 if test $ol_enable_perl != no ; then
469         AC_PATH_PROG(PERLBIN, perl, /usr/bin/perl)
470
471         if test "no$PERLBIN" = "no" ; then
472                 if test $ol_enable_perl = yes ; then
473                         AC_MSG_ERROR([could not locate perl])
474                 fi
475
476         else
477                 SLAPD_PERL_LDFLAGS="`$PERLBIN -MExtUtils::Embed -e ldopts|sed -e s/-lc//`"
478                 SLAPD_PERL_CPPFLAGS="`$PERLBIN -MExtUtils::Embed -e ccopts`"
479
480                 dnl should check perl version
481                 ol_link_perl=yes
482         fi
483 fi
484
485 AC_PROG_CPP
486
487 if test $cross_compiling = yes -a $ol_enable_x_compile = yes; then
488         AC_MSG_WARN([cross compiling....  some functionality will be removed.])
489
490 elif test $cross_compiling = no -a $ol_enable_x_compile = yes; then
491         AC_MSG_WARN([programs compiled here do run here...])
492         AC_MSG_ERROR([  if not cross compiling, use --disable-x-compile.])
493
494 elif test $cross_compiling = yes -a $ol_enable_x_compile = no; then
495         AC_MSG_WARN([programs compiled here do not run here...])
496         AC_MSG_ERROR([  if cross compiling,  add --enable-x-compile.])
497 fi
498
499 dnl Checks for UNIX Variants
500 AC_AIX
501 AC_ISC_POSIX
502 AC_MINIX
503
504 dnl Checks for system services
505 AC_CYGWIN
506 AC_MINGW32
507 AC_EXEEXT
508 AC_OBJEXT
509
510 AC_DEFINE_UNQUOTED( EXEEXT, "${EXEEXT}", [defined to be the EXE extension])
511
512 dnl BeOS requires -lbe -lroot -lnet
513 AC_CHECK_LIB(be, be_app, [LIBS="$LIBS -lbe -lroot -lnet"], :, [-lroot -lnet])
514
515 dnl OpenLDAP requires STDC features
516 AM_PROG_CC_STDC
517 if test "X${am_cv_prog_cc_stdc}" = "Xno" ; then
518         AC_MSG_ERROR([OpenLDAP requires compiler to support STDC constructs.])
519 fi
520
521 dnl Check cc depend flags
522 OL_MKDEPEND
523 if test "${ol_cv_mkdep}" = no ; then
524         # this will soon become an error
525         AC_MSG_WARN([do not know how to generate dependencies])
526 fi
527
528 dnl
529 dnl Check for module support
530 dnl
531 ol_link_modules=no
532 if test $ol_enable_modules != no ; then
533         AC_CHECK_HEADERS(ltdl.h)
534
535         if test $ac_cv_header_ltdl_h = no ; then
536                 AC_MSG_ERROR([could not locate libtool ltdl.h])
537
538         fi
539
540         AC_CHECK_LIB(ltdl, lt_dlinit)
541         if test "$ac_cv_lib_ltdl_lt_dlinit" = no ; then
542                 AC_MSG_ERROR([could not locate libtool -lltdl])
543         fi
544         ol_link_modules=yes
545 else
546         ol_with_bdb2_module=static
547         ol_with_ldap_module=static
548         ol_with_ldbm_module=static
549         ol_with_passwd_module=static
550         ol_with_perl_module=static
551         ol_with_shell_module=static
552         ol_with_tcl_module=static
553 fi
554
555 dnl ----------------------------------------------------------------
556 dnl Checks for header files.
557 OL_HEADER_STDC
558
559 if test $ol_cv_header_stdc != yes; then
560         AC_MSG_WARN([could not locate Standard C compliant headers])
561 fi
562
563 AC_HEADER_DIRENT
564 AC_HEADER_SYS_WAIT
565 AM_HEADER_TIOCGWINSZ_NEEDS_SYS_IOCTL
566 if test $am_cv_sys_posix_termios = yes ; then
567         AC_DEFINE(HAVE_POSIX_TERMIOS,1,
568                 [define if you have POSIX termios])
569 fi
570
571 AC_CHECK_HEADERS(       \
572         arpa/inet.h             \
573         arpa/nameser.h  \
574         assert.h                \
575         crypt.h                 \
576         errno.h                 \
577         fcntl.h                 \
578         filio.h                 \
579         getopt.h                \
580         grp.h                   \
581         libutil.h               \
582         limits.h                \
583         locale.h                \
584         netinet/tcp.h   \
585         malloc.h                \
586         memory.h                \
587         psap.h                  \
588         pwd.h                   \
589         resolv.h                \
590         sgtty.h                 \
591         shadow.h                \
592         stdarg.h                \
593         stddef.h                \
594         string.h                \
595         strings.h               \
596         sysexits.h              \
597         sys/file.h              \
598         sys/filio.h             \
599         sys/errno.h             \
600         sys/ioctl.h             \
601         sys/param.h             \
602         sys/resource.h  \
603         sys/select.h    \
604         sys/socket.h    \
605         sys/syslog.h    \
606         sys/time.h              \
607         sys/types.h             \
608         syslog.h                \
609         termios.h               \
610         unistd.h                \
611 )
612
613 dnl ----------------------------------------------------------------
614 dnl Checks for libraries
615
616 dnl Find socket()
617 dnl Likely combinations:
618 dnl             -lsocket [ -lnsl_s | -lnsl ]
619 dnl             -linet
620
621 AC_CHECK_FUNC(socket, :, [      
622 dnl
623 dnl hopefully we won't include too many libraries
624 dnl
625         AC_CHECK_LIB(socket, main)
626         AC_CHECK_LIB(net, main)
627         AC_CHECK_LIB(net, socket)
628         AC_CHECK_LIB(nsl_s, main)
629         AC_CHECK_LIB(nsl, main)
630         AC_CHECK_LIB(inet, socket)
631         AC_CHECK_LIB(gen, main)
632 ])
633
634 AC_CHECK_FUNC(select, :, AC_MSG_ERROR([select() required.]))
635
636 dnl Select arg types
637 dnl (if this detection becomes permenent, it and the select() detection
638 dnl should be done before the yielding select test) 
639 AC_FUNC_SELECT_ARGTYPES
640
641
642 AC_CHECK_HEADERS( regex.h )
643 if test "$ac_cv_header_regex_h" != yes ; then
644         AC_MSG_ERROR([POSIX regex.h required.])
645 fi
646 AC_CHECK_FUNC(regfree, :, AC_MSG_ERROR([POSIX regex required.]))
647
648 OL_POSIX_REGEX
649 if test "$ol_cv_c_posix_regex" = no ; then
650         AC_MSG_ERROR([broken POSIX regex!])
651 fi
652
653
654 dnl HP-UX requires -lV3
655 AC_CHECK_LIB(V3, sigset)
656
657
658 # find res_search
659 if test $ol_enable_dns != no ; then
660         dnl Check for resolver routines
661         AC_CHECK_FUNC(res_search,:)
662         if test $ac_cv_func_res_search = no ; then 
663                 AC_CHECK_LIB(bind, res_search)
664                 ac_cv_func_res_search=$ac_cv_lib_bind_res_search
665         fi
666         if test $ac_cv_func_res_search = no ; then 
667                 AC_CHECK_LIB(bind, __res_search)
668                 ac_cv_func_res_search=$ac_cv_lib_bind___res_search
669         fi
670         if test $ac_cv_func_res_search = no ; then 
671                 AC_CHECK_LIB(resolv, res_search)
672                 ac_cv_func_res_search=$ac_cv_lib_resolv_res_search
673         fi
674
675         if test "$ac_cv_func_res_search" = yes ; then
676                 AC_DEFINE(HAVE_RES_SEARCH,1,
677                         [define if you have res_search()])
678         elif test $ol_enable_dns = yes ; then
679                 AC_MSG_ERROR([--enable-dns requires res_search])
680         else
681                 AC_MSG_WARN([no res_search, disabling DNS support])
682         fi
683 fi
684
685
686 # ISODE tests
687 ol_link_isode=no
688 if test $ol_enable_ldapd != no ; then
689         AC_MSG_WARN([ldapd is not supported and may suffer from bit rot.])
690
691         dnl look for ISODE libraries
692         AC_CHECK_LIB(xtpp, main, [
693                 ol_link_isode=yes
694                 AC_DEFINE(HAVE_XTPP,1, [define if you have -lxttp])
695                 LDAPD_LIBS="$LDAPD_LIBS -lxtpp -lxtdsap -lxtisode -losi"
696                 ],:,[-lxtdsap -lxtisode -losi])
697         AC_CHECK_LIB(dsap, main, [
698                 ol_link_isode=yes
699                 AC_DEFINE(HAVE_DSAP,1, [define if you have -ldsap])
700                 LDAPD_LIBS="$LDAPD_LIBS -ldsap"
701                 ],:,[-lisode])
702         AC_CHECK_LIB(isode, main, [
703                 ol_link_isode=yes
704                 AC_DEFINE(HAVE_ISODE,1, [define if you have -lisode])
705                 LDAPD_LIBS="$LDAPD_LIBS -lisode"
706                 ],:)
707 fi
708
709 if test $ol_link_isode != no; then
710         AC_CHECK_LIB(pp, main, [
711                 AC_DEFINE(HAVE_PP,1, [define if you have -lpp])
712                 LDAPD_LIBS="-lpp $LDAPD_LIBS"
713                 ],:)
714
715         AC_PATH_PROG(PEPSY, pepsy)
716 fi
717
718 if test $ol_enable_quipu != no ; then
719         AC_CHECK_HEADERS(quipu/commonarg.h)
720
721         if test $ac_cv_header_quipu_commonarg_h = yes ; then
722                 BUILD_QUIPU=yes
723         elif test $ol_enable_quipu = auto ; then
724                 AC_MSG_WARN([no quipu for --enable-quipu=auto, disabling])
725         else
726                 AC_MSG_ERROR(no quipu for --enable-quipu=$ol_enable_quipu)
727         fi
728 fi
729
730 dnl
731 dnl check for kerberos
732 dnl
733 ol_link_kerberos=no
734
735 if test $ol_with_kerberos = auto -o $ol_with_kerberos = k5 ; then
736         AC_CHECK_HEADERS(kerberosIV/krb.h kerberosIV/des.h)
737
738         if test $ac_cv_header_kerberosIV_krb_h = yes ; then
739                 AC_CHECK_LIB(krb4, main, [have_k5=yes], [have_k5=no],
740                         [-lkrb5 -ldes425])
741
742                 if test $have_k5 = yes ; then
743                         ol_with_kerberos=found
744                         ol_link_kerberos=yes
745
746                         KRB_LIBS="-lkrb4 -lkrb5 -ldes425"
747
748                         LIBS="$KRB_LIBS $LIBS"
749
750                         AC_CACHE_CHECK([for des_debug in Kerberos libraries],
751                                 [ol_cv_var_des_debug], [
752                                 dnl save the flags
753                                 save_LIBS="$LIBS"
754                                 LIBS="$KRB_LIBS $LIBS"
755                                 AC_TRY_LINK([
756 #include <kerberosIV/krb.h>
757 #include <kerberosIV/des.h>
758 extern int des_debug;
759 ],[
760 des_debug = 1;
761 ],                              ol_cv_var_des_debug=yes, ol_cv_var_des_debug=no)
762                                 dnl restore the LIBS
763                                 LIBS="$save_LIBS"
764                         ])
765
766                         if test $ol_cv_var_des_debug = yes ; then
767                                 AC_DEFINE(HAVE_DES_DEBUG,1,
768                                         [define if you have Kerberos des_debug])
769                         fi
770
771                         LIBS="$save_LIBS"
772                 fi
773         fi
774 fi
775
776 if test $ol_with_kerberos = auto -o $ol_with_kerberos = k4 ; then
777         AC_CHECK_HEADERS(krb.h des.h)
778
779         if test $ac_cv_header_krb_h = yes ; then
780                 AC_CHECK_LIB(krb, main, [have_k4=yes], [have_k4=no], [-ldes])
781
782                 if test $have_k4 = yes ; then
783                         ol_with_kerberos=found
784                         ol_link_kerberos=yes
785
786                         KRB_LIBS="-lkrb -ldes"
787                 fi
788         fi
789 fi
790
791 if test $ol_link_kerberos = yes ; then
792         AC_DEFINE(HAVE_KERBEROS, 1, [define if you have Kerberos])
793 fi
794
795 dnl
796 dnl Check for SSL/TLS
797 dnl
798 ol_link_tls=no
799 if test $ol_with_tls != no ; then
800         
801         AC_CHECK_HEADERS(openssl/ssl.h ssl.h)
802         
803         if test $ac_cv_header_openssl_ssl_h = yes -o $ac_cv_header_ssl_h = yes ; then
804                 AC_CHECK_LIB(ssl, SSLeay_add_ssl_algorithms, 
805                         [have_ssleay=yes
806                         need_rsaref=no],
807                         [have_ssleay=no],
808                         [-lcrypto])
809                         
810                 if test $have_ssleay = no ; then
811                         AC_CHECK_LIB(ssl, SSL_library_init,
812                                 [have_ssleay=yes
813                                 need_rsaref=no], [have_ssleay=no],
814                                 [-lcrypto])
815                 fi
816
817                 if test $have_ssleay = no ; then
818                         AC_CHECK_LIB(ssl, ssl3_accept, 
819                                 [have_ssleay=yes
820                                 need_rsaref=yes], [have_ssleay=no],
821                                 [-lcrypto -lRSAglue -lrsaref])
822                 fi
823
824                 if test $have_ssleay = yes ; then
825                         ol_with_tls=found
826                         ol_link_tls=yes
827
828                         AC_DEFINE(HAVE_SSLEAY, 1, 
829                                 [define if you have SSLeay or OpenSSL])
830
831                         if test $need_rsaref = yes; then
832                                 AC_DEFINE(HAVE_RSAREF, 1, 
833                                         [define if you have RSAref])
834
835                                 TLS_LIBS="-lssl -lcrypto -lRSAglue -lrsaref"
836                         else
837                                 TLS_LIBS="-lssl -lcrypto"
838                         fi
839                 fi
840         fi
841 fi
842
843 if test $ol_link_tls = yes ; then
844         AC_DEFINE(HAVE_TLS, 1, [define if you have TLS])
845 fi      
846
847 dnl Tests for reentrant functions necessary to build a
848 dnl thread_safe -lldap.
849 AC_CHECK_FUNCS(         \
850         ctime_r                 \
851         gethostbyname_r gethostbyaddr_r \
852 )
853
854 if test "$ac_cv_func_ctime_r" = no ; then
855         ol_cv_func_ctime_r_nargs=0
856 else
857         OL_FUNC_CTIME_R_NARGS
858 dnl     OL_FUNC_CTIME_R_TYPE
859 fi
860
861 if test "$ac_cv_func_gethostbyname_r" = yes ; then
862         OL_FUNC_GETHOSTBYNAME_R_NARGS
863 else
864         ol_cv_func_gethostbyname_r_nargs=0
865 fi
866  
867 if test "$ac_cv_func_gethostbyaddr_r" = yes ; then
868         OL_FUNC_GETHOSTBYADDR_R_NARGS
869 else
870         ol_cv_func_gethostbyaddr_r_nargs=0
871 fi
872
873 if test "$ac_cv_func_ctime_r" = yes \
874         -a "$ol_cv_func_ctime_r_nargs" -ge 2 \
875         -a "$ol_cv_func_ctime_r_nargs" -le 3 \
876         -a "$ac_cv_func_gethostbyname_r" = yes \
877         -a "$ol_cv_func_gethostbyname_r_nargs" -ge 5 \
878         -a "$ol_cv_func_gethostbyname_r_nargs" -le 6 \
879         -a "$ac_cv_func_gethostbyaddr_r" = yes \
880         -a "$ol_cv_func_gethostbyaddr_r_nargs" -ge 5 \
881         -a "$ol_cv_func_gethostbyaddr_r_nargs" -le 6 \
882         ; then
883  
884         AC_DEFINE(LDAP_API_FEATURE_X_OPENLDAP_REENTRANT,1)
885 fi
886
887 ol_link_threads=no
888 if test $ol_with_threads = auto -o $ol_with_threads = yes \
889         -o $ol_with_threads = posix ; then
890
891         AC_CHECK_HEADERS(pthread.h sched.h)
892
893         if test $ac_cv_header_pthread_h = yes ; then
894                 OL_POSIX_THREAD_VERSION
895
896                 if test $ol_cv_pthread_version = final ; then
897                         AC_DEFINE(HAVE_PTHREADS_FINAL,1,
898                                 [define if pthreads API compatible with final spec])
899                 elif test $ol_cv_pthread_version = draft4 ; then
900                         AC_DEFINE(HAVE_PTHREADS_D4,1,
901                                 [define if pthreads API compatible with draft4 spec])
902                 else
903                         AC_MSG_ERROR([unknown pthread version])
904                 fi
905
906                 # consider threads found
907                 ol_with_threads=found
908
909                 OL_HEADER_LINUX_THREADS
910
911                 dnl Now the hard part, how to link?
912                 dnl
913                 dnl currently supported checks:
914                 dnl
915                 dnl Check for no flags 
916                 dnl     pthread_create() in $LIBS
917                 dnl
918                 dnl Check special pthread (final) flags
919                 dnl     pthread_create() with -mt (Solaris)
920                 dnl     pthread_create() with -kthread (FreeBSD)
921                 dnl     pthread_create() with -pthread (FreeBSD/Digital Unix)
922                 dnl     pthread_create() with -pthreads (?)
923                 dnl     pthread_create() with -mthreads (AIX)
924                 dnl     pthread_create() with -thread (?)
925                 dnl
926                 dnl Check pthread (final) libraries
927                 dnl     pthread_mutex_unlock() in -lpthread -lmach -lexc -lc_r (OSF/1)
928                 dnl     pthread_mutex_lock() in -lpthread -lmach -lexc (OSF/1)
929                 dnl     (skipped) pthread_mutex_trylock() in -lpthread -lexc (OSF/1)
930                 dnl     pthread_join() -Wl,-woff,85 -lpthread (IRIX)
931                 dnl     pthread_create() in -lpthread (many)
932                 dnl     pthread_create() in -lc_r (FreeBSD)
933                 dnl
934                 dnl Check pthread (draft4) flags (depreciated)
935                 dnl     pthread_create() with -threads (OSF/1)
936                 dnl
937                 dnl Check pthread (draft4) libraries (depreciated)
938                 dnl     pthread_mutex_unlock() in -lpthreads -lmach -lexc -lc_r (OSF/1)
939                 dnl     pthread_mutex_lock() in -lpthreads -lmach -lexc (OSF/1)
940                 dnl     pthread_mutex_trylock() in -lpthreads -lexc (OSF/1)
941                 dnl     pthread_create() in -lpthreads (many)
942                 dnl
943
944                 dnl pthread_create in $LIBS
945                 AC_CACHE_CHECK([for pthread_create in default libraries],
946                         ol_cv_pthread_create,[
947                 AC_TRY_RUN(OL_PTHREAD_TEST_PROGRAM,
948                         [ol_cv_pthread_create=yes],
949                         [ol_cv_pthread_create=no],
950                         [AC_TRY_LINK(OL_PTHREAD_TEST_INCLUDES,OL_PTHREAD_TEST_FUNCTION,
951                                 [ol_cv_pthread_create=yes],
952                                 [ol_cv_pthread_create=no])])])
953
954                 if test $ol_cv_pthread_create != no ; then
955                         ol_link_threads=posix
956                         ol_link_pthreads=""
957                 fi
958                 
959                 OL_PTHREAD_TRY([-mt],           [ol_cv_pthread_mt])
960                 OL_PTHREAD_TRY([-kthread],      [ol_cv_pthread_kthread])
961                 OL_PTHREAD_TRY([-pthread],      [ol_cv_pthread_pthread])
962                 OL_PTHREAD_TRY([-pthreads],     [ol_cv_pthread_pthreads])
963                 OL_PTHREAD_TRY([-mthreads],     [ol_cv_pthread_mthreads])
964                 OL_PTHREAD_TRY([-thread],       [ol_cv_pthread_thread])
965
966                 OL_PTHREAD_TRY([-lpthread -lmach -lexc -lc_r],
967                         [ol_cv_pthread_lpthread_lmach_lexc_lc_r])
968                 OL_PTHREAD_TRY([-lpthread -lmach -lexc],
969                         [ol_cv_pthread_lpthread_lmach_lexc])
970 dnl             OL_PTHREAD_TRY([-lpthread -lexc],
971 dnl                     [ol_cv_pthread_lpthread_lexc])
972
973                 OL_PTHREAD_TRY([-lpthread -Wl,-woff,85],
974                         [ol_cv_pthread_lib_lpthread_woff])
975
976                 OL_PTHREAD_TRY([-lpthread],     [ol_cv_pthread_lpthread])
977                 OL_PTHREAD_TRY([-lc_r],         [ol_cv_pthread_lc_r])
978
979                 OL_PTHREAD_TRY([-threads],      [ol_cv_pthread_threads])
980
981                 OL_PTHREAD_TRY([-lpthreads -lmach -lexc -lc_r],
982                         [ol_cv_pthread_lpthreads_lmach_lexc_lc_r])
983                 OL_PTHREAD_TRY([-lpthreads -lmach -lexc],
984                         [ol_cv_pthread_lpthreads_lmach_lexc])
985                 OL_PTHREAD_TRY([-lpthreads -lexc],
986                         [ol_cv_pthread_lpthreads_lexc])
987
988                 OL_PTHREAD_TRY([-lpthreads],[ol_cv_pthread_lib_lpthreads])
989
990                 if test $ol_link_threads != no ; then
991                         AC_DEFINE(HAVE_PTHREADS,1,
992                                 [define if you have POSIX Threads])
993
994                         LTHREAD_LIBS="$LTHREAD_LIBS $ol_link_pthreads"
995
996                         dnl save flags
997                         save_CPPFLAGS="$CPPFLAGS"
998                         save_LIBS="$LIBS"
999                         LIBS="$LTHREAD_LIBS $LIBS"
1000
1001                         dnl All POSIX Thread (final) implementations should have
1002                         dnl sched_yield instead of pthread yield.
1003                         dnl check for both
1004                         AC_CHECK_FUNCS(sched_yield pthread_yield)
1005
1006                         if test $ac_cv_func_sched_yield = no -a \
1007                                 $ac_cv_func_pthread_yield = no ; then
1008                                 dnl Digital UNIX has sched_yield() in -lrt
1009                                 AC_CHECK_LIB(rt, sched_yield,
1010                                         [LTHREAD_LIBS="$LTHREAD_LIBS -lrt"
1011                                         AC_DEFINE(HAVE_SCHED_YIELD,1,
1012                                                 [Define if you have the sched_yield function.])
1013                                         ac_cv_func_sched_yield=yes],
1014                                         [ac_cv_func_sched_yield=no])
1015                         fi
1016                         if test $ac_cv_func_sched_yield = no -a \
1017                                 $ac_cv_func_pthread_yield = no ; then
1018                                 dnl Solaris has sched_yield() stub in -lposix4
1019                                 dnl but we'll use thr_yield instead.
1020                                 AC_CHECK_FUNCS(thr_yield)
1021                         fi
1022                         if test $ac_cv_func_sched_yield = no -a \
1023                                 $ac_cv_func_pthread_yield = no -a \
1024                                 "$ac_cv_func_thr_yield" = no ; then
1025                                 AC_MSG_WARN([could not locate sched_yield() or pthread_yield()])
1026                         fi
1027
1028                         dnl Check functions for compatibility
1029                         AC_CHECK_FUNCS(pthread_kill)
1030
1031                         dnl Check for pthread_detach with <pthread.h> inclusion
1032                         dnl as it's symbol may have been mangled.
1033                         AC_CACHE_CHECK([for pthread_detach with <pthread.h>],
1034                                 [ol_cv_func_pthread_detach], [
1035                                 dnl save the flags
1036                                 AC_TRY_LINK([
1037 #include <pthread.h>
1038 #ifndef NULL
1039 #define NULL (void*)0
1040 #endif
1041 ],
1042                                         [pthread_detach(NULL);],
1043                                         [ol_cv_func_pthread_detach=yes],
1044                                         [ol_cv_func_pthread_detach=no])
1045                         ])
1046
1047                         if test $ol_cv_func_pthread_detach = no ; then
1048                                 AC_MSG_ERROR([could not locate pthread_detach()])
1049                         fi
1050
1051                         AC_DEFINE(HAVE_PTHREAD_DETACH,1,
1052                                 [define if you have pthread_detach function])
1053
1054                         dnl Check for setconcurreny functions
1055                         AC_CHECK_FUNCS( \
1056                                 pthread_setconcurrency \
1057                                 pthread_getconcurrency \
1058                                 thr_setconcurrency \
1059                                 thr_getconcurrency \
1060                         )
1061
1062                         OL_SYS_LINUX_THREADS
1063                         OL_LINUX_THREADS
1064
1065                         if test $ol_cv_linux_threads = error; then
1066                                 AC_MSG_ERROR([LinuxThreads header/library mismatch]);
1067                         fi
1068
1069                         AC_CACHE_CHECK([if pthread_create() works],
1070                                 ol_cv_pthread_create_works,[
1071                         AC_TRY_RUN(OL_PTHREAD_TEST_PROGRAM,
1072                                 [ol_cv_pthread_create_works=yes],
1073                                 [ol_cv_pthread_create_works=no],
1074                                 [dnl assume yes
1075                                 ol_cv_pthread_create_works=yes])])
1076
1077                         if test $ol_cv_pthread_create_works = no ; then
1078                                 AC_MSG_ERROR([pthread_create is not usable, check environment settings])
1079                         fi
1080
1081                         dnl Check if select causes an yield
1082                         if test $ol_with_yielding_select = auto ; then
1083                                 AC_CACHE_CHECK([if select yields when using pthreads],
1084                                         ol_cv_pthread_select_yields,[
1085                                 AC_TRY_RUN([
1086 #include <sys/types.h>
1087 #include <sys/time.h>
1088 #include <unistd.h>
1089 #include <pthread.h>
1090 #ifndef NULL
1091 #define NULL (void*) 0
1092 #endif
1093
1094 static int fildes[2];
1095
1096 static void *task(p)
1097         void *p;
1098 {
1099         int i;
1100         struct timeval tv;
1101
1102         fd_set rfds;
1103
1104         tv.tv_sec=10;
1105         tv.tv_usec=0;
1106
1107         FD_ZERO(&rfds);
1108         FD_SET(fildes[0], &rfds);
1109
1110         /* we're not interested in any fds */
1111         i = select(FD_SETSIZE, &rfds, NULL, NULL, &tv);
1112
1113         if(i < 0) {
1114                 perror("select");
1115                 exit(10);
1116         }
1117
1118         exit(0); /* if we exit here, the select blocked the whole process */
1119 }
1120
1121 int main(argc, argv)
1122         int argc;
1123         char **argv;
1124 {
1125         pthread_t t;
1126
1127         /* create a pipe to select */
1128         if(pipe(&fildes[0])) {
1129                 perror("select");
1130                 exit(1);
1131         }
1132
1133 #ifdef HAVE_PTHREAD_SETCONCURRENCY
1134         (void) pthread_setconcurrency(2);
1135 #else
1136 #ifdef HAVE_THR_SETCONCURRENCY
1137         /* Set Solaris LWP concurrency to 2 */
1138         thr_setconcurrency(2);
1139 #endif
1140 #endif
1141
1142 #if HAVE_PTHREADS_D4
1143         pthread_create(&t, pthread_attr_default, task, NULL);
1144 #else
1145         pthread_create(&t, NULL, task, NULL);
1146 #endif
1147
1148 #if HAVE_SCHED_YIELD
1149         sched_yield();  /* make sure task runs first */
1150 #else
1151 #ifdef HAVE_PTHREAD_YIELD
1152         pthread_yield();        /* make sure task runs first */
1153 #endif
1154 #endif
1155
1156         exit(2);
1157 }],
1158                                 [ol_cv_pthread_select_yields=no],
1159                                 [ol_cv_pthread_select_yields=yes],
1160                                 [ol_cv_pthread_select_yields=cross])])
1161
1162                                 if test $ol_cv_pthread_select_yields = cross ; then
1163                                         AC_MSG_ERROR([crossing compiling: use --with-yielding_select=yes|no|manual])
1164                                 fi
1165
1166                                 if test $ol_cv_pthread_select_yields = yes ; then
1167                                         ol_with_yielding_select=yes
1168                                 fi
1169                         fi
1170
1171                         dnl restore flags
1172                         CPPFLAGS="$save_CPPFLAGS"
1173                         LIBS="$save_LIBS"
1174                 else
1175                         AC_MSG_ERROR([could not link with POSIX Threads])
1176                 fi
1177         fi
1178
1179         if test $ol_with_threads = posix ; then
1180                 AC_MSG_ERROR([could not locate POSIX Threads])
1181         fi
1182 fi
1183
1184 if test $ol_with_threads = auto -o $ol_with_threads = yes \
1185         -o $ol_with_threads = mach ; then
1186
1187         dnl check for Mach CThreads
1188         AC_CHECK_HEADERS(mach/cthreads.h)
1189         if test $ac_cv_header_mach_cthreads_h = yes ; then
1190                 ol_with_threads=found
1191
1192                 dnl check for cthread support in current $LIBS
1193                 AC_CHECK_FUNC(cthread_fork,[ol_link_threads=yes])
1194
1195                 if test $ol_link_threads = no ; then
1196                         dnl try -all_load
1197                         dnl this test needs work
1198                         AC_CACHE_CHECK([for cthread_fork with -all_load],
1199                                 [ol_cv_cthread_all_load], [
1200                                 dnl save the flags
1201                                 save_LIBS="$LIBS"
1202                                 LIBS="-all_load $LIBS"
1203                                 AC_TRY_LINK([#include <mach/cthreads.h>],[
1204                                         cthread_fork((void *)0, (void *)0);
1205                                         ], ol_cv_cthread_all_load=yes, ol_cv_cthread_all_load=no)
1206                                 dnl restore the LIBS
1207                                 LIBS="$save_LIBS"
1208                         ])
1209
1210                         if test $ol_cv_cthread_all_load = yes ; then
1211                                 LTHREAD_LIBS="$LTHREAD_LIBS -all_load"
1212                                 ol_link_threads=mach
1213                         fi
1214                 fi
1215
1216                 if test $ol_link_threads != no ; then
1217                         : check for cthread specific functionality here
1218                         AC_DEFINE(HAVE_MACH_CTHREADS,1,
1219                                 [define if you have Mach Cthreads])
1220                 else
1221                         AC_MSG_ERROR([could not link with Mach CThreads])
1222                 fi
1223         fi
1224
1225         if test $ol_with_threads = mach ; then
1226                 AC_MSG_ERROR([could not locate Mach CThreads])
1227         fi
1228 fi
1229
1230 if test $ol_with_threads = auto -o $ol_with_threads = yes \
1231         -o $ol_with_threads = lwp ; then
1232
1233         dnl check for SunOS5 LWP
1234         AC_CHECK_HEADERS(thread.h synch.h)
1235         if test $ac_cv_header_thread_h = yes -a $ac_cv_header_synch_h = yes ; then
1236                 AC_CHECK_LIB(thread, thr_create, [have_thr=yes], [have_thr=no])
1237
1238                 if test $have_thr = yes ; then
1239                         AC_DEFINE(HAVE_THR,1,
1240                                 [if you have Solaris LWP (thr) package])
1241                         LTHREAD_LIBS="$LTHREAD_LIBS -lthread"
1242                         ol_link_threads=thr
1243
1244                         if test $ol_with_yielding_select = auto ; then
1245                                 ol_with_yielding_select=yes
1246                         fi
1247
1248                         dnl Check for setconcurreny functions
1249                         AC_CHECK_FUNCS( \
1250                                 thr_setconcurrency \
1251                                 thr_getconcurrency \
1252                         )
1253                 fi
1254         fi
1255
1256         dnl check for SunOS4 LWP
1257         AC_CHECK_HEADERS(lwp/lwp.h)
1258         if test $ac_cv_header_lwp_lwp_h = yes ; then
1259                 AC_CHECK_LIB(lwp, lwp_create, [have_lwp=yes], [have_lwp=no])
1260
1261                 if test $have_lwp = yes ; then
1262                         AC_DEFINE(HAVE_LWP,1,
1263                                 [if you have SunOS LWP package])
1264                         LTHREAD_LIBS="$LTHREAD_LIBS -llwp"
1265                         ol_link_threads=lwp
1266
1267                         if test $ol_with_yielding_select = auto ; then
1268                                 ol_with_yielding_select=no
1269                         fi
1270                 fi
1271         fi
1272 fi
1273
1274 if test $ol_with_yielding_select = yes ; then
1275         AC_DEFINE(HAVE_YIELDING_SELECT,1,
1276                 [define if select implicitly yields])
1277 fi
1278
1279 if test $ol_with_threads = manual ; then
1280         dnl User thinks he can manually configure threads.
1281         ol_link_threads=yes
1282
1283         AC_MSG_WARN([thread defines and link options must be set manually])
1284
1285         AC_CHECK_HEADERS(pthread.h sched.h)
1286         AC_CHECK_FUNCS(sched_yield pthread_yield)
1287         OL_HEADER_LINUX_THREADS
1288
1289         AC_CHECK_HEADERS(mach/cthreads.h)
1290         AC_CHECK_HEADERS(lwp/lwp.h)
1291         AC_CHECK_HEADERS(thread.h synch.h)
1292 fi
1293
1294 if test $ol_link_threads != no ; then  
1295         dnl needed to get reentrant/threadsafe versions
1296         dnl
1297         AC_DEFINE(REENTRANT,1)
1298         AC_DEFINE(_REENTRANT,1)
1299         AC_DEFINE(THREAD_SAFE,1)
1300         AC_DEFINE(_THREAD_SAFE,1)
1301         AC_DEFINE(THREADSAFE,1)
1302         AC_DEFINE(_THREADSAFE,1)
1303         AC_DEFINE(_SGI_MP_SOURCE,1)
1304
1305         dnl The errno declaration may dependent upon _REENTRANT.
1306         dnl If it does, we must link with thread support.
1307         AC_CACHE_CHECK([for thread specific errno],
1308                 [ol_cv_errno_thread_specific], [
1309                 AC_TRY_LINK([#include <errno.h>], [errno = 0;],
1310                         [ol_cv_errno_thread_specific=yes],
1311                         [ol_cv_errno_thread_specific=no])
1312         ])
1313
1314         dnl The h_errno declaration may dependent upon _REENTRANT.
1315         dnl If it does, we must link with thread support.
1316         AC_CACHE_CHECK([for thread specific h_errno],
1317                 [ol_cv_h_errno_thread_specific], [
1318                 AC_TRY_LINK([#include <netdb.h>], [h_errno = 0;],
1319                         [ol_cv_h_errno_thread_specific=yes],
1320                         [ol_cv_h_errno_thread_specific=no])
1321         ])
1322
1323         if test $ol_cv_errno_thread_specific != yes \
1324                 -o $ol_cv_h_errno_thread_specific != yes ; then
1325                 LIBS="$LTHREAD_LIBS $LIBS"
1326                 LTHREAD_LIBS=""
1327         fi
1328
1329 dnl When in thread environment, use 
1330 dnl             #if defined( HAVE_REENTRANT_FUNCTIONS ) \ 
1331 dnl                     || defined( HAVE_FUNC_R )
1332 dnl                     func_r(...);
1333 dnl             #else
1334 dnl             #       if defined( HAVE_THREADS ) 
1335 dnl                             /* lock */
1336 dnl             #       endif
1337 dnl                             func(...);
1338 dnl             #       if defined( HAVE_THREADS ) 
1339 dnl                             /* unlock */
1340 dnl             #       endif
1341 dnl             #endif
1342 dnl
1343 dnl HAVE_REENTRANT_FUNCTIONS is derived from:
1344 dnl             _POSIX_REENTRANT_FUNCTIONS
1345 dnl             _POSIX_THREAD_SAFE_FUNCTIONS
1346 dnl             _POSIX_THREADSAFE_FUNCTIONS
1347 dnl
1348 dnl             and is currently defined in lthread.h
1349 dnl
1350 dnl HAVE_THREADS is defined by lthread.h iff -UNO_THREADS
1351 dnl 
1352 dnl libldap/*.c should only include <lthread.h> iff
1353 dnl LDAP_R_COMPILE is defined.  ie:
1354 dnl             #ifdef LDAP_R_COMPILE
1355 dnl             #       include LDAP_R_COMPILE
1356 dnl             #endif
1357 dnl
1358 dnl LDAP_R_COMPILE is defined by libldap_r/Makefile.in
1359 dnl specifically for compiling the threadsafe version of
1360 dnl     the ldap library (-lldap_r).
1361 dnl             
1362 dnl     dnl check for reentrant/threadsafe functions
1363 dnl     dnl
1364 dnl     dnl note: these should only be used when linking
1365 dnl     dnl       with $LTHREAD_LIBS
1366 dnl     dnl
1367 dnl     save_CPPFLAGS="$CPPFLAGS"
1368 dnl     save_LIBS="$LIBS"
1369 dnl     LIBS="$LTHREAD_LIBS $LIBS"
1370 dnl     AC_CHECK_FUNCS( \
1371 dnl             gmtime_r \
1372 dnl             gethostbyaddr_r gethostbyname_r \
1373 dnl             feof_unlocked unlocked_feof \
1374 dnl             putc_unlocked unlocked_putc \
1375 dnl             flockfile ftrylockfile \
1376 dnl     )
1377 dnl     CPPFLAGS="$save_CPPFLAGS"
1378 dnl     LIBS="$save_LIBS"
1379 fi  
1380
1381 if test $ol_link_threads = no ; then
1382         if test $ol_with_threads = yes ; then
1383                 AC_MSG_ERROR([no suitable thread support])
1384         fi
1385
1386         if test $ol_with_threads = auto ; then
1387                 AC_MSG_WARN([no suitable thread support, disabling threads])
1388                 ol_with_threads=no
1389         fi
1390
1391         AC_DEFINE(NO_THREADS,1,
1392                 [define if you have (or want) no threads])
1393         LTHREAD_LIBS=""
1394 fi
1395
1396 if test $ol_link_threads != no ; then
1397         AC_DEFINE(LDAP_API_FEATURE_X_OPENLDAP_THREAD_SAFE,1)
1398 fi
1399
1400 dnl ----------------------------------------------------------------
1401
1402 ol_link_ldbm=no 
1403 if test $ol_with_ldbm_api = auto -o $ol_with_ldbm_api = db2 ; then
1404         OL_BERKELEY_DB2
1405
1406         if test $ol_cv_berkeley_db2 = yes ; then
1407                 ol_link_ldbm=db2
1408                 ol_with_ldbm_api=db2
1409
1410                 if test $ol_with_ldbm_type = hash ; then
1411                         AC_DEFINE(LDBM_USE_DBHASH,1,
1412                                 [define this to use DBHASH w/ LDBM backend])
1413                 else
1414                         AC_DEFINE(LDBM_USE_DBBTREE,1,
1415                                 [define this to use DBBTREE w/ LDBM backend])
1416                 fi
1417
1418                 dnl $ol_cv_lib_db2 should be yes or -ldb
1419                 dnl (it could be no, but that would be an error
1420                 if test $ol_cv_lib_db2 != yes ; then
1421                         LDBM_LIBS="$LDBM_LIBS $ol_cv_lib_db2"
1422                 fi
1423         fi
1424 fi
1425
1426 ol_link_bdb2=no
1427 if test $ol_link_ldbm = db2 -a $ol_enable_bdb2 != no ; then
1428         ol_link_bdb2=yes
1429 fi
1430
1431 if test $ol_with_ldbm_api = auto -o $ol_with_ldbm_api = db ; then
1432         OL_BERKELEY_DB
1433
1434         if test $ol_cv_berkeley_db = yes ; then
1435                 ol_link_ldbm=db
1436                 ol_with_ldbm_api=db
1437
1438                 if test $ol_with_ldbm_type = hash ; then
1439                         AC_DEFINE(LDBM_USE_DBHASH,1,
1440                                 [define this to use DBHASH w/ LDBM backend])
1441                 else
1442                         AC_DEFINE(LDBM_USE_DBBTREE,1,
1443                                 [define this to use DBBTREE w/ LDBM backend])
1444                 fi
1445
1446                 dnl $ol_cv_lib_db should be yes or -ldb
1447                 dnl (it could be no, but that would be an error
1448                 if test $ol_cv_lib_db != yes ; then
1449                         LDBM_LIBS="$LDBM_LIBS $ol_cv_lib_db"
1450                 fi
1451         fi
1452 fi
1453
1454 if test $ol_with_ldbm_api = manual ; then
1455         dnl User thinks he can manually configure LDBM api.
1456         ol_link_ldbm=yes
1457
1458         AC_MSG_WARN([LDBM defines and link options must be set manually])
1459
1460         AC_CHECK_HEADERS(db.h db_185.h gdbm.h ndbm.h)
1461 fi
1462
1463 if test $ol_link_ldbm = no -a $ol_with_ldbm_type = btree ; then
1464         AC_MSG_WARN(Could not find LDBM with BTREE support)
1465         ol_with_ldbm_api=none
1466 fi
1467
1468 if test $ol_with_ldbm_api = auto -o $ol_with_ldbm_api = mdbm ; then
1469         OL_MDBM
1470
1471         if test $ol_cv_mdbm = yes ; then
1472                 ol_link_ldbm=mdbm
1473                 ol_with_ldbm_api=mdbm
1474                 if test $ol_cv_lib_mdbm != yes ; then
1475                         LDBM_LIBS="$LDBM_LIBS $ol_cv_lib_mdbm"
1476                 fi
1477         fi
1478 fi
1479
1480 if test $ol_with_ldbm_api = auto -o $ol_with_ldbm_api = gdbm ; then
1481         OL_GDBM
1482
1483         if test $ol_cv_gdbm = yes ; then
1484                 ol_link_ldbm=gdbm
1485                 ol_with_ldbm_api=gdbm
1486
1487                 if test $ol_cv_lib_gdbm != yes ; then
1488                         LDBM_LIBS="$LDBM_LIBS $ol_cv_lib_gdbm"
1489                 fi
1490         fi
1491 fi
1492
1493 if test $ol_with_ldbm_api = auto ; then
1494         AC_MSG_WARN([skipping automatic checking for NDBM, must be manually enabled.])
1495 elif test $ol_with_ldbm_api = ndbm ; then
1496         OL_NDBM
1497
1498         if test $ol_cv_ndbm = yes ; then
1499                 ol_link_ldbm=ndbm
1500                 ol_with_ldbm_api=ndbm
1501
1502                 if test $ol_cv_lib_ndbm != yes ; then
1503                         LDBM_LIBS="$LDBM_LIBS $ol_cv_lib_ndbm"
1504                 fi
1505         fi
1506 fi
1507
1508 if test $ol_link_ldbm = no -a $ol_enable_ldbm != no ; then
1509         AC_MSG_WARN(could not find suitable LDBM backend)
1510         if test $ol_enable_ldbm = yes ; then
1511                 AC_MSG_ERROR(select appropriate LDBM options or disable)
1512         fi
1513
1514         AC_MSG_WARN(disabling LDBM)
1515         ol_enable_ldbm=no
1516 fi
1517
1518 if test $ol_enable_wrappers != no ; then
1519         AC_CHECK_HEADERS(tcpd.h)
1520
1521         if test $ac_cv_header_tcpd_h != yes ; then
1522                 have_wrappers=no
1523         else
1524                 AC_CHECK_LIB(wrap, main,
1525                         [have_wrappers=yes], [have_wrappers=no])
1526         fi
1527
1528         if test $have_wrappers = yes ; then
1529                 AC_DEFINE(HAVE_TCPD,1, [define if you have -lwrap])
1530                 SLAPD_LIBS="$SLAPD_LIBS -lwrap"
1531
1532                 dnl We add another check for -lnsl since some libwrap's
1533                 dnl need it, but it isn't always included from above
1534                 AC_CHECK_LIB(nsl, main)
1535         else
1536                 AC_MSG_WARN(could not find -lwrap)
1537                 if test $ol_enable_wrappers = yes ; then
1538                         AC_MSG_ERROR(could not find wrappers, select appropriate options or disable)
1539                 fi
1540
1541                 AC_MSG_WARN(disabling wrappers support)
1542                 ol_enable_wrappers=no
1543         fi
1544 fi
1545
1546 if test $ol_enable_syslog != no ; then
1547         AC_CHECK_FUNC(openlog)
1548         if test $ac_cv_func_openlog = no -a $ol_enable_syslog = yes; then
1549                 AC_MSG_ERROR(could not find syslog, select appropriate options or disable)
1550         fi
1551         ol_enable_syslog=$ac_cv_func_openlog
1552 fi
1553
1554 if test $ol_enable_dmalloc != no ; then
1555         AC_CHECK_HEADERS(dmalloc.h)
1556         AC_CHECK_LIB(dmalloc, dmalloc_shutdown)
1557 fi
1558
1559 if test $ol_enable_tcl != no ; then
1560         AC_CHECK_HEADERS(tcl.h)
1561
1562         if test $ac_cv_header_tcl_h != yes ; then
1563                 have_tcl=no
1564         else
1565                 AC_CHECK_LIB(tcl,main,
1566                         [have_tcl=yes; SLAPD_LIBS="$SLAPD_LIBS -ltcl"],
1567                         [have_tcl=no])
1568
1569                 if test $have_tcl != yes; then
1570                         AC_CHECK_LIB(tcl7.6,main,
1571                                 [have_tcl=yes; SLAPD_LIBS="$SLAPD_LIBS -ltcl7.6"],
1572                                 [have_tcl=no])
1573                 fi
1574
1575                 if test $have_tcl != yes; then
1576                         AC_CHECK_LIB(tcl8.0,main,
1577                                 [have_tcl=yes; SLAPD_LIBS="$SLAPD_LIBS -ltcl8.0"],
1578                                 [have_tcl=no])
1579                 fi
1580         fi
1581
1582         if test $have_tcl != yes ; then
1583                 AC_MSG_WARN([could not find -ltcl])
1584                 if test $ol_enable_tcl = yes ; then
1585                         AC_MSG_ERROR([could not find tcl, select appropriate options or disable])
1586                 fi
1587
1588                 ol_enable_tcl=no
1589         fi
1590 fi
1591
1592 # ud needs termcap (should insert check here)
1593 ol_link_termcap=no
1594 AC_CHECK_HEADERS(termcap.h ncurses.h)
1595
1596 if test $ol_link_termcap = no ; then
1597         AC_CHECK_LIB(termcap, tputs, [have_termcap=yes], [have_termcap=no])
1598         if test $have_termcap = yes ; then
1599                 AC_DEFINE(HAVE_TERMCAP, 1, [define if you have -ltermcap])
1600                 ol_link_termcap=yes
1601                 TERMCAP_LIBS=-ltermcap
1602         fi
1603 fi
1604
1605 if test $ol_link_termcap = no ; then
1606         AC_CHECK_LIB(ncurses, initscr, [have_ncurses=yes], [have_ncurses=no])
1607         if test $have_ncurses = yes ; then
1608                 AC_DEFINE(HAVE_NCURSES, 1, [define if you have -lncurses])
1609                 ol_link_termcap=yes
1610                 TERMCAP_LIBS=-lncurses
1611         fi
1612 fi
1613
1614 if test $ol_link_termcap = no ; then
1615         AC_DEFINE(NO_TERMCAP,1, [define if you have no termcap support])
1616         TERMCAP_LIBS=
1617 fi
1618
1619 dnl
1620 dnl Check for fetch URL support
1621 dnl             should be extended to support other fetch URL APIs
1622 dnl
1623 ol_link_sasl=no
1624 if test $ol_with_cyrus_sasl != no ; then
1625         AC_CHECK_HEADER(sasl.h)
1626
1627         if test $ac_cv_header_sasl_h = yes ; then
1628                 AC_CHECK_LIB(sasl, sasl_client_init,
1629                         [have_cyrus_sasl=yes], [have_cyrus_sasl=no])
1630
1631                 if test $have_cyrus_sasl != no ; then
1632                         SASL_LIBS="-lsasl"
1633                         AC_DEFINE(HAVE_CYRUS_SASL,1,[define if you have Cyrus SASL])
1634                         ol_link_sasl=yes
1635                 fi
1636         fi
1637
1638         if test $ol_link_sasl = no -a $ol_with_cyrus_sasl = yes ; then
1639                 AC_MSG_ERROR(no suitable API for --with-cyrus-sasl=$ol_with_cyrus_sasl)
1640         fi
1641 fi
1642
1643 dnl
1644 dnl Check for fetch URL support
1645 dnl             should be extended to support other fetch URL APIs
1646 dnl
1647 ol_link_fetch=no
1648 if test $ol_with_fetch != no ; then
1649         OL_LIB_FETCH
1650
1651         if test $ol_cv_lib_fetch != no ; then
1652                 LDIF_LIBS="$LDIF_LIBS $ol_link_fetch"
1653                 ol_link_fetch=freebsd
1654
1655         elif test $ol_with_fetch != auto ; then
1656                 AC_MSG_ERROR(no suitable API for --with-fetch=$ol_with_fetch)
1657         fi 
1658 fi
1659
1660 dnl
1661 dnl Check for GNU readline
1662 dnl
1663 ol_link_readline=no
1664 if test $ol_with_readline != no ; then
1665         AC_CHECK_HEADERS(readline/readline.h readline/history.h)
1666
1667         if test $ac_cv_header_readline_readline_h = yes ; then
1668                 save_LIBS="$LIBS"
1669                 LIBS="$TERMCAP_LIBS $LIBS"
1670                 AC_CHECK_LIB(readline, readline, 
1671                         [have_readline=yes], [have_readline=no])
1672                 LIBS="$save_LIBS"
1673                         
1674                 if test $have_readline = yes ; then
1675                         ol_with_readline=found
1676                         ol_link_readline=yes
1677
1678                         READLINE_LIBS="-lreadline"
1679                 fi
1680         fi
1681 fi
1682
1683 if test $ol_link_readline = yes ; then
1684         AC_DEFINE(HAVE_READLINE, 1, [define if you have -lreadline])
1685 fi
1686
1687
1688 # FreeBSD (and others) have crypt(3) in -lcrypt
1689 if test $ol_enable_crypt != no ; then
1690         AC_CHECK_FUNC(crypt, [have_crypt=yes], [
1691                 AC_CHECK_LIB(crypt, crypt, [LUTIL_LIBS="$LUTIL_LIBS -lcrypt"
1692                         have_crypt=yes], [have_crypt=no])])
1693
1694         if test $have_crypt = yes ; then
1695                 AC_DEFINE(HAVE_CRYPT,1, [define if crypt(3) is available])
1696         else
1697                 AC_MSG_WARN(could not find crypt)
1698                 if test $ol_enable_crypt = yes ; then
1699                         AC_MSG_ERROR(could not find crypt, select appropriate options or disable)
1700                 fi
1701
1702                 AC_MSG_WARN(disabling crypt support)
1703                 ol_enable_crypt=no
1704         fi
1705 fi
1706
1707 # FreeBSD (and others) have setproctitle(3) in -lutil
1708 if test $ol_enable_proctitle != no ; then
1709         AC_CHECK_FUNC(setproctitle,     [have_setproctitle=yes], [
1710                 AC_CHECK_LIB(util, setproctitle,
1711                         [have_setproctitle=yes
1712                         LUTIL_LIBS="$LUTIL_LIBS -lutil"],
1713                         [have_setproctitle=no
1714                         LIBOBJS="$LIBOBJS setproctitle.o"])])
1715
1716         if test $have_setproctitle = yes ; then
1717                 AC_DEFINE(HAVE_SETPROCTITLE,1,
1718                         [define if setproctitle(3) is available])
1719         fi
1720 fi
1721
1722 dnl ----------------------------------------------------------------
1723 dnl Checks for typedefs, structures, and compiler characteristics.
1724 AC_TYPE_GETGROUPS dnl requires AC_TYPE_UID_T
1725 AC_TYPE_MODE_T
1726 AC_TYPE_OFF_T
1727 AC_TYPE_PID_T
1728 AM_TYPE_PTRDIFF_T
1729 AC_TYPE_SIGNAL
1730 OL_TYPE_SIG_ATOMIC_T
1731 AC_TYPE_SIZE_T
1732 OL_TYPE_SOCKLEN_T
1733 AC_STRUCT_ST_BLKSIZE
1734 AC_HEADER_TIME
1735 AC_STRUCT_TM
1736 OL_STRUCT_PASSWD_PW_GECOS
1737 OL_STRUCT_PASSWD_PW_PASSWD
1738
1739 OL_C_UPPER_LOWER
1740 AC_C_CONST
1741 OL_C_VOLATILE
1742
1743 if test $cross_compiling = yes ; then
1744         AC_DEFINE(CROSS_COMPILING, 1, [define if cross compiling])
1745
1746         AC_DEFINE(LBER_INT_T,long)
1747         AC_DEFINE(LBER_TAG_T,long)
1748         AC_DEFINE(LBER_SOCKET_T,int)
1749
1750 else
1751         AC_C_BIGENDIAN
1752         AC_CHECK_SIZEOF(short) 
1753         AC_CHECK_SIZEOF(int) 
1754         AC_CHECK_SIZEOF(long)
1755
1756         if test "$ac_cv_sizeof_int" -lt 4 ; then
1757                 AC_MSG_WARN([OpenLDAP requires 'int' to be 32 bits or greater.])
1758
1759                 AC_DEFINE(LBER_INT_T,long)
1760                 AC_DEFINE(LBER_TAG_T,long)
1761                 AC_DEFINE(LBER_SOCKET_T,int)
1762         else
1763                 AC_DEFINE(LBER_INT_T,int)
1764                 AC_DEFINE(LBER_TAG_T,long)
1765                 AC_DEFINE(LBER_SOCKET_T,int)
1766         fi
1767 fi
1768
1769 AC_DEFINE(LBER_LEN_T,long)
1770
1771 dnl ----------------------------------------------------------------
1772 dnl Checks for library functions.
1773 AC_FUNC_MEMCMP
1774 dnl AM_FUNC_MKTIME dnl checks for sys/time.h and unistd.h
1775 AC_FUNC_STRFTIME
1776 dnl AM_FUNC_STRTOD
1777
1778 OL_FUNC_INET_ATON
1779
1780 dnl we should use vfork instead of fork in a number of places...
1781 dnl AC_FUNC_VFORK
1782 AC_FUNC_VPRINTF
1783
1784 if test $ac_cv_func_vprintf = yes ; then
1785         dnl check for vsnprintf
1786         AC_CHECK_FUNCS(vsnprintf vsprintf)
1787 fi
1788
1789 AC_CHECK_FUNCS(         \
1790         bcopy                   \
1791         closesocket             \
1792         endgrent                \
1793         endpwent                \
1794         flock                   \
1795         getdtablesize   \
1796         getgrgid                \
1797         gethostname             \
1798         getpass                 \
1799         getpwuid                \
1800         getpwnam                \
1801         getspnam                \
1802         gettimeofday    \
1803         initgroups              \
1804         lockf                   \
1805         memcpy                  \
1806         memmove                 \
1807         mkstemp                 \
1808         read                    \
1809         recv                    \
1810         recvfrom                \
1811         setpwfile               \
1812         setgid                  \
1813         setegid                 \
1814         setsid                  \
1815         setuid                  \
1816         seteuid                 \
1817         signal                  \
1818         sigset                  \
1819         snprintf                \
1820         strdup                  \
1821         strerror                \
1822         strpbrk                 \
1823         strrchr                 \
1824         strsep                  \
1825         strstr                  \
1826         strtol                  \
1827         strtoul                 \
1828         strspn                  \
1829         sysconf                 \
1830         waitpid                 \
1831         wait4                   \
1832         write                   \
1833         send                    \
1834         sendto                  \
1835 )
1836
1837 dnl We actually may need to replace more than this.
1838 AC_REPLACE_FUNCS(getopt tempnam)
1839
1840 dnl ----------------------------------------------------------------
1841 # Check Configuration
1842 OL_SYS_ERRLIST
1843
1844 dnl ----------------------------------------------------------------
1845 dnl Sort out defines
1846
1847 if test "$ol_enable_debug" != no ; then
1848         AC_DEFINE(LDAP_DEBUG,1,
1849                 [define this to add debugging code])
1850 fi
1851 if test "$ol_enable_syslog" = yes ; then
1852         AC_DEFINE(LDAP_SYSLOG,1,
1853                 [define this to add syslog code])
1854 fi
1855 if test "$ol_enable_libui" = yes ; then
1856         AC_DEFINE(LDAP_LIBUI,1,
1857                 [define this for LDAP User Interface support])
1858 fi
1859 if test "$ol_enable_cache" = no ; then
1860         AC_DEFINE(LDAP_NOCACHE,1,
1861                 [define this to remove -lldap cache support])
1862 fi
1863 if test "$ol_enable_dns" != no ; then
1864         AC_DEFINE(LDAP_API_FEATURE_X_OPENLDAP_V2_DNS,LDAP_VENDOR_VERSION)
1865 fi
1866 if test "$ol_enable_proctitle" != no ; then
1867         AC_DEFINE(LDAP_PROCTITLE,1,
1868                 [define this for LDAP process title support])
1869 fi
1870 if test "$ol_enable_referrals" != no ; then
1871         AC_DEFINE(LDAP_API_FEATURE_X_OPENLDAP_V2_REFERRALS,LDAP_VENDOR_VERSION)
1872 fi
1873 if test "$ol_enable_cldap" != no ; then
1874         AC_DEFINE(LDAP_CONNECTIONLESS,1,[define to support CLDAP])
1875 fi
1876
1877 if test "$ol_enable_crypt" != no ; then
1878         AC_DEFINE(SLAPD_CRYPT,1,[define to support crypt(3) passwords])
1879 fi
1880 if test "$ol_enable_cleartext" != no ; then
1881         AC_DEFINE(SLAPD_CLEARTEXT,1,[define to support cleartext passwords])
1882 fi
1883 if test "$ol_enable_multimaster" != no ; then
1884         AC_DEFINE(SLAPD_MULTIMASTER,1,[define to support multimaster replication])
1885 fi
1886 if test "$ol_enable_phonetic" != no ; then
1887         AC_DEFINE(SLAPD_PHONETIC,1,[define to support phonetic])
1888 fi
1889 if test "$ol_enable_rlookups" != no ; then
1890         AC_DEFINE(SLAPD_RLOOKUPS,1,[define to support reverse lookups])
1891 fi
1892
1893 if test "$ol_link_modules" != no ; then
1894         AC_DEFINE(SLAPD_MODULES,1,[define to support modules])
1895         BUILD_SLAPD=yes
1896         MODULES_LIBS=-lltdl
1897         SLAPD_MODULES_LDFLAGS="-dlopen self"
1898 fi
1899
1900 if test "$ol_link_bdb2" != no ; then
1901         AC_DEFINE(SLAPD_BDB2,1,[define to support BDB2 backend])
1902         BUILD_SLAPD=yes
1903         BUILD_BDB2=yes
1904         if test "$ol_with_bdb2_module" != static ; then
1905                 AC_DEFINE(SLAPD_BDB2_DYNAMIC,1,
1906                         [define to support dynamic BDB2 backend])
1907                 BUILD_BDB2=mod
1908                 BUILD_BDB2_DYNAMIC=shared
1909                 SLAPD_MODULES_LIST="$SLAPD_MODULES_LIST -dlopen \$(SLAP_DIR)back-bdb2/back_bdb2.la"
1910         fi
1911 fi
1912
1913 if test "$ol_enable_ldap" != no ; then
1914         AC_DEFINE(SLAPD_LDAP,1,[define to support LDAP backend])
1915         BUILD_SLAPD=yes
1916         BUILD_LDAP=yes
1917         if test "$ol_with_ldap_module" != static ; then
1918                 AC_DEFINE(SLAPD_LDAP_DYNAMIC,1,
1919                         [define to support dynamic LDAP backend])
1920                 BUILD_LDAP=mod
1921                 BUILD_LDAP_DYNAMIC=shared
1922                 SLAPD_MODULES_LIST="$SLAPD_MODULES_LIST -dlopen \$(SLAP_DIR)back-ldap/back_ldap.la"
1923         fi
1924 fi
1925
1926 if test "$ol_link_ldbm" != no ; then
1927         AC_DEFINE(SLAPD_LDBM,1,[define to support LDBM backend])
1928         BUILD_SLAPD=yes
1929         BUILD_LDBM=yes
1930         if test "$ol_with_ldbm_module" != static ; then
1931                 AC_DEFINE(SLAPD_LDBM_DYNAMIC,1,
1932                         [define to support dynamic LDBM backend])
1933                 BUILD_LDBM=mod
1934                 BUILD_LDBM_DYNAMIC=shared
1935                 SLAPD_MODULES_LIST="$SLAPD_MODULES_LIST -dlopen \$(SLAP_DIR)back-ldbm/back_ldbm.la"
1936         fi
1937 fi
1938
1939 if test "$ol_enable_passwd" != no ; then
1940         AC_DEFINE(SLAPD_PASSWD,1,[define to support PASSWD backend])
1941         BUILD_SLAPD=yes
1942         BUILD_PASSWD=yes
1943         if test "$ol_with_passwd_module" != static ; then
1944                 AC_DEFINE(SLAPD_PASSWD_DYNAMIC,1,
1945                         [define to support dynamic PASSWD backend])
1946                 BUILD_PASSWD=mod
1947                 BUILD_PASSWD_DYNAMIC=shared
1948                 SLAPD_MODULES_LIST="$SLAPD_MODULES_LIST -dlopen \$(SLAP_DIR)back-passwd/back_passwd.la"
1949         fi
1950 fi
1951
1952 if test "$ol_link_perl" != no ; then
1953         AC_DEFINE(SLAPD_PERL,1,[define to support PERL backend])
1954         BUILD_SLAPD=yes
1955         BUILD_PERL=yes
1956         if test "$ol_with_perl_module" != static ; then
1957                 AC_DEFINE(SLAPD_PERL_DYNAMIC,1,
1958                         [define to support dynamic PERL backend])
1959                 BUILD_PERL=mod
1960                 BUILD_PERL_DYNAMIC=shared
1961                 SLAPD_MODULES_LIST="$SLAPD_MODULES_LIST -dlopen \$(SLAP_DIR)back-perl/back_perl.la"
1962         fi
1963 fi
1964
1965 if test "$ol_enable_shell" != no ; then
1966         AC_DEFINE(SLAPD_SHELL,1,[define to support SHELL backend])
1967         BUILD_SLAPD=yes
1968         BUILD_SHELL=yes
1969         if test "$ol_with_shell_module" != static ; then
1970                 AC_DEFINE(SLAPD_SHELL_DYNAMIC,1,
1971                         [define to support dynamic SHELL backend])
1972                 BUILD_SHELL=mod
1973                 BUILD_SHELL_DYNAMIC=shared
1974                 SLAPD_MODULES_LIST="$SLAPD_MODULES_LIST -dlopen \$(SLAP_DIR)back-shell/back_shell.la"
1975         fi
1976 fi
1977
1978 if test "$ol_enable_tcl" != no ; then
1979         AC_DEFINE(SLAPD_TCL,1,[define to support TCL backend])
1980         BUILD_SLAPD=yes
1981         BUILD_TCL=yes
1982         if test "$ol_with_tcl_module" != static; then
1983                 AC_DEFINE(SLAPD_TCL_DYNAMIC,1,
1984                         [define to support dynamic TCL backend])
1985                 BUILD_TCL=mod
1986                 BUILD_TCL_DYNAMIC=shared
1987                 SLAPD_MODULES_LIST="$SLAPD_MODULES_LIST -dlopen \$(SLAP_DIR)back-tcl/back_tcl.la"
1988         fi
1989 fi
1990
1991 if test "$ol_enable_slurpd" != no -a "$ol_link_threads" != no -a \
1992         $BUILD_SLAPD = yes ; then
1993         BUILD_SLURPD=yes
1994 fi
1995
1996 if test "$ol_link_isode" != no ; then
1997         BUILD_LDAPD=yes
1998 fi
1999
2000 dnl ----------------------------------------------------------------
2001
2002 AC_SUBST(BUILD_LDAPD)
2003 AC_SUBST(BUILD_SLAPD)
2004   AC_SUBST(BUILD_BDB2)
2005   AC_SUBST(BUILD_LDAP)
2006   AC_SUBST(BUILD_LDBM)
2007   AC_SUBST(BUILD_PASSWD)
2008   AC_SUBST(BUILD_PERL)
2009   AC_SUBST(BUILD_QUIPU)
2010   AC_SUBST(BUILD_SHELL)
2011   AC_SUBST(BUILD_TCL)
2012   AC_SUBST(BUILD_BDB2_DYNAMIC)
2013   AC_SUBST(BUILD_LDAP_DYNAMIC)
2014   AC_SUBST(BUILD_LDBM_DYNAMIC)
2015   AC_SUBST(BUILD_PASSWD_DYNAMIC)
2016   AC_SUBST(BUILD_PERL_DYNAMIC)
2017   AC_SUBST(BUILD_SHELL_DYNAMIC)
2018   AC_SUBST(BUILD_TCL_DYNAMIC)
2019 AC_SUBST(BUILD_SLURPD)
2020
2021 AC_SUBST(LDAP_LIBS)
2022 AC_SUBST(LDAPD_LIBS)
2023 AC_SUBST(LDIF_LIBS)
2024 AC_SUBST(SLAPD_LIBS)
2025 AC_SUBST(SLURPD_LIBS)
2026 AC_SUBST(LDBM_LIBS)
2027 AC_SUBST(LTHREAD_LIBS)
2028 AC_SUBST(LUTIL_LIBS)
2029
2030 AC_SUBST(SLAPD_MODULES_CPPFLAGS)
2031 AC_SUBST(SLAPD_MODULES_LDFLAGS)
2032 AC_SUBST(SLAPD_MODULES_LIST)
2033
2034 AC_SUBST(SLAPD_PERL_CPPFLAGS)
2035 AC_SUBST(SLAPD_PERL_LDFLAGS)
2036
2037 AC_SUBST(KRB_LIBS)
2038 AC_SUBST(READLINE_LIBS)
2039 AC_SUBST(SASL_LIBS)
2040 AC_SUBST(TERMCAP_LIBS)
2041 AC_SUBST(TLS_LIBS)
2042 AC_SUBST(MODULES_LIBS)
2043
2044 dnl ----------------------------------------------------------------
2045 dnl final output
2046 dnl
2047
2048 AC_OUTPUT( \
2049 Makefile:build/top.mk:Makefile.in:build/dir.mk \
2050 doc/Makefile:build/top.mk:doc/Makefile.in:build/dir.mk \
2051 doc/man/Makefile:build/top.mk:doc/man/Makefile.in:build/dir.mk \
2052 doc/man/man1/Makefile:build/top.mk:doc/man/man1/Makefile.in:build/man.mk \
2053 doc/man/man3/Makefile:build/top.mk:doc/man/man3/Makefile.in:build/man.mk \
2054 doc/man/man5/Makefile:build/top.mk:doc/man/man5/Makefile.in:build/man.mk \
2055 doc/man/man8/Makefile:build/top.mk:doc/man/man8/Makefile.in:build/man.mk \
2056 clients/Makefile:build/top.mk:clients/Makefile.in:build/dir.mk \
2057 clients/finger/Makefile:build/top.mk:clients/finger/Makefile.in:build/rules.mk \
2058 clients/fax500/Makefile:build/top.mk:clients/fax500/Makefile.in:build/rules.mk \
2059 clients/gopher/Makefile:build/top.mk:clients/gopher/Makefile.in:build/rules.mk \
2060 clients/mail500/Makefile:build/top.mk:clients/mail500/Makefile.in:build/rules.mk \
2061 clients/rcpt500/Makefile:build/top.mk:clients/rcpt500/Makefile.in:build/rules.mk \
2062 clients/ud/Makefile:build/top.mk:clients/ud/Makefile.in:build/rules.mk \
2063 clients/tools/Makefile:build/top.mk:clients/tools/Makefile.in:build/rules.mk \
2064 include/Makefile:build/top.mk:include/Makefile.in \
2065 libraries/Makefile:build/top.mk:libraries/Makefile.in:build/dir.mk      \
2066 libraries/libavl/Makefile:build/top.mk:libraries/libavl/Makefile.in:build/lib.mk:build/lib-static.mk    \
2067 libraries/liblber/Makefile:build/top.mk:libraries/liblber/Makefile.in:build/lib.mk:build/lib-shared.mk  \
2068 libraries/libldap/Makefile:build/top.mk:libraries/libldap/Makefile.in:build/lib.mk:build/lib-shared.mk  \
2069 libraries/libldap_r/Makefile:build/top.mk:libraries/libldap_r/Makefile.in:build/lib.mk:build/lib-shared.mk      \
2070 libraries/libldbm/Makefile:build/top.mk:libraries/libldbm/Makefile.in:build/lib.mk:build/lib-static.mk  \
2071 libraries/libldif/Makefile:build/top.mk:libraries/libldif/Makefile.in:build/lib.mk:build/lib-static.mk  \
2072 libraries/liblutil/Makefile:build/top.mk:libraries/liblutil/Makefile.in:build/lib.mk:build/lib-static.mk        \
2073 servers/Makefile:build/top.mk:servers/Makefile.in:build/dir.mk \
2074 servers/ldapd/Makefile:build/top.mk:servers/ldapd/Makefile.in:build/srv.mk \
2075 servers/slapd/Makefile:build/top.mk:servers/slapd/Makefile.in:build/srv.mk \
2076 servers/slapd/back-bdb2/Makefile:build/top.mk:servers/slapd/back-bdb2/Makefile.in:build/mod.mk \
2077 servers/slapd/back-ldap/Makefile:build/top.mk:servers/slapd/back-ldap/Makefile.in:build/mod.mk \
2078 servers/slapd/back-ldbm/Makefile:build/top.mk:servers/slapd/back-ldbm/Makefile.in:build/mod.mk \
2079 servers/slapd/back-passwd/Makefile:build/top.mk:servers/slapd/back-passwd/Makefile.in:build/mod.mk \
2080 servers/slapd/back-perl/Makefile:build/top.mk:servers/slapd/back-perl/Makefile.in:build/mod.mk \
2081 servers/slapd/back-shell/Makefile:build/top.mk:servers/slapd/back-shell/Makefile.in:build/mod.mk \
2082 servers/slapd/back-tcl/Makefile:build/top.mk:servers/slapd/back-tcl/Makefile.in:build/mod.mk \
2083 servers/slapd/shell-backends/Makefile:build/top.mk:servers/slapd/shell-backends/Makefile.in:build/srv.mk \
2084 servers/slapd/tools/Makefile:build/top.mk:servers/slapd/tools/Makefile.in \
2085 servers/slurpd/Makefile:build/top.mk:servers/slurpd/Makefile.in:build/srv.mk \
2086 tests/Makefile:build/top.mk:tests/Makefile.in:build/dir.mk \
2087 tests/progs/Makefile:build/top.mk:tests/progs/Makefile.in:build/rules.mk \
2088 contrib/Makefile:build/top.mk:contrib/Makefile.in:build/dir.mk \
2089 contrib/saucer/Makefile:build/top.mk:contrib/saucer/Makefile.in:build/rules.mk \
2090 contrib/web_ldap/Makefile:build/top.mk:contrib/web_ldap/Makefile.in:build/rules.mk \
2091 ,[
2092 date > stamp-h
2093 echo Please \"make depend\" to build dependencies
2094 ])