3 dnl Copyright 1998-2000 The OpenLDAP Foundation. All Rights Reserved.
5 dnl Redistribution and use in source and binary forms are permitted only
6 dnl as authorized by the OpenLDAP Public License. A copy of this
7 dnl license is available at http://www.OpenLDAP.org/license.html or
8 dnl in file LICENSE in the top-level directory of the distribution.
10 dnl ----------------------------------------------------------------
11 dnl Redefine AC_INIT_BINSH to provide RCS IDs and copyright notice
12 dnl at top of generated configure script. Prints simple copyright.
13 define([AC_INIT_BINSH],
16 # from] translit([$OpenLDAP$], $")] [
18 # Copyright 1998-2000 The OpenLDAP Foundation. All Rights Reserved.
20 # Redistribution and use in source and binary forms are permitted only
21 # as authorized by the OpenLDAP Public License. A copy of this
22 # license is available at http://www.OpenLDAP.org/license.html or
23 # in file LICENSE in the top-level directory of the distribution.
25 echo "Copyright 1998-2000 The OpenLDAP Foundation, All Rights Reserved."
26 echo "Restrictions apply, see COPYRIGHT and LICENSE files."
28 dnl ----------------------------------------------------------------
29 dnl Disable config.cache!
30 define([AC_CACHE_LOAD], )dnl
31 define([AC_CACHE_SAVE], )dnl
32 dnl ================================================================
33 dnl Configure.in for OpenLDAP
34 AC_INIT(build/version)dnl
36 # set unset (borrowed from autoconf 2.14a)
37 if (unset FOO) >/dev/null 2>&1; then
43 $ol_unset CDPATH || test "${CDPATH+set}" != set || CDPATH=: && export CDPATH
45 AC_CONFIG_AUX_DIR(build)dnl
47 OL_VERSION=`cat $ac_aux_dir/version`
48 if test -z "$OL_VERSION"; then
49 AC_MSG_ERROR([could not determine version])
52 echo "Configuring OpenLDAP $OL_VERSION ..."
54 dnl Determine host platform
55 dnl we try not to use this for much
58 AM_INIT_AUTOMAKE(OpenLDAP,[$OL_VERSION], [no defines])dnl
61 AC_DEFINE_UNQUOTED(OPENLDAP_PACKAGE,"$PACKAGE",Package)
62 AC_DEFINE_UNQUOTED(OPENLDAP_VERSION,"$VERSION",Version)
64 dnl We use autoconf features new to 2.13.
65 dnl aclocal.m4 should be built using aclocal from automake 1.4
66 dnl libtool 1.3.3 should be installed.
67 AC_PREREQ(2.13)dnl Required Autoconf version
69 AC_CONFIG_HEADER(include/portable.h include/ldap_features.h include/lber_types.h)dnl
71 dnl ================================================================
73 AC_MSG_CHECKING(configure arguments)
74 AC_PREFIX_DEFAULT(/usr/local)
77 AC_SUBST(top_builddir)dnl
79 dnl ----------------------------------------------------------------
81 ldap_subdir="/openldap"
84 [ --with-subdir=DIR change default subdirectory used for installs],
91 ldap_subdir="$withval"
94 ldap_subdir="/$withval"
99 AC_SUBST(ldap_subdir)dnl
101 dnl ----------------------------------------------------------------
102 dnl General "enable" options
103 OL_ARG_ENABLE(debug,[ --enable-debug enable debugging], yes)dnl
104 OL_ARG_ENABLE(syslog,[ --enable-syslog enable syslog support], auto)dnl
105 OL_ARG_ENABLE(proctitle,[ --enable-proctitle enable proctitle support], yes)dnl
106 OL_ARG_ENABLE(cache,[ --enable-cache enable caching], yes)dnl
107 OL_ARG_ENABLE(referrals,[ --enable-referrals enable V2 Referrals extension], yes)dnl
108 OL_ARG_ENABLE(kbind,[ --enable-kbind enable V2 Kerberos IV bind], auto)dnl
109 OL_ARG_ENABLE(ipv6,[ --enable-ipv6 enable IPv6 support], auto)dnl
110 OL_ARG_ENABLE(local,[ --enable-local enable AF_LOCAL (AF_UNIX) socket support], auto)dnl
111 OL_ARG_ENABLE(x_compile,[ --enable-x-compile enable cross compiling],
114 dnl ----------------------------------------------------------------
115 dnl General "with" options
116 dnl OL_ARG_ENABLE(dmalloc,[ --enable-dmalloc enable debug malloc support], no)dnl
118 OL_ARG_WITH(cyrus_sasl,[ --with-cyrus-sasl with Cyrus SASL support],
119 auto, [auto yes no] )
120 OL_ARG_WITH(fetch,[ --with-fetch with fetch URL support],
121 auto, [auto yes no] )
122 OL_ARG_WITH(kerberos,[ --with-kerberos with support],
123 auto, [auto k5 k5only k425 kth k4 afs yes no])
124 OL_ARG_WITH(readline,[ --with-readline with readline support],
125 auto, [auto yes no] )
126 OL_ARG_WITH(threads,[ --with-threads with threads],
127 auto, [auto nt posix mach pth lwp yes no manual] )
128 OL_ARG_WITH(tls,[ --with-tls with TLS/SSL support],
129 auto, [auto ssleay openssl yes no] )
130 OL_ARG_WITH(yielding_select,[ --with-yielding-select with implicitly yielding select],
131 auto, [auto yes no manual] )
133 dnl ----------------------------------------------------------------
135 dnl ----------------------------------------------------------------
137 dnl ----------------------------------------------------------------
139 AC_ARG_WITH(xxslapdoptions,[SLAPD (Standalone LDAP Daemon) Options:])
140 OL_ARG_ENABLE(slapd,[ --enable-slapd enable building slapd], yes)dnl
141 OL_ARG_ENABLE(cleartext,[ --enable-cleartext enable cleartext passwords], yes)dnl
142 OL_ARG_ENABLE(crypt,[ --enable-crypt enable crypt(3) passwords], auto)dnl
143 OL_ARG_ENABLE(kpasswd,[ --enable-kpasswd enable kerberos password verification], no)dnl
144 OL_ARG_ENABLE(spasswd,[ --enable-spasswd enable (Cyrus) SASL password verification], no)dnl
145 OL_ARG_ENABLE(modules,[ --enable-modules enable dynamic module support], no)dnl
146 OL_ARG_ENABLE(multimaster,[ --enable-multimaster enable multimaster replication], no)dnl
147 OL_ARG_ENABLE(phonetic,[ --enable-phonetic enable phonetic/soundex], no)dnl
148 OL_ARG_ENABLE(rlookups,[ --enable-rlookups enable reverse lookups], auto)dnl
149 OL_ARG_ENABLE(aci,[ --enable-aci enable per-object ACIs], no)dnl
150 OL_ARG_ENABLE(wrappers,[ --enable-wrappers enable tcp wrapper support], no)dnl
151 OL_ARG_ENABLE(dynamic,[ --enable-dynamic enable linking built binaries with dynamic libs], no)dnl
153 dnl SLAPD Backend options
154 OL_ARG_ENABLE(dnssrv,[ --enable-dnssrv enable dnssrv backend], no)dnl
155 OL_ARG_WITH(dnssrv_module,[ --with-dnssrv-module module type], static,
157 OL_ARG_ENABLE(ldap,[ --enable-ldap enable ldap backend], no)dnl
158 OL_ARG_WITH(ldap_module,[ --with-ldap-module module type], static,
160 OL_ARG_ENABLE(ldbm,[ --enable-ldbm enable ldbm backend], yes)dnl
161 OL_ARG_WITH(ldbm_api,[ --with-ldbm-api with LDBM API], auto,
162 [auto berkeley bcompat mdbm gdbm])
163 OL_ARG_WITH(ldbm_module,[ --with-ldbm-module module type], static,
165 OL_ARG_WITH(ldbm_type,[ --with-ldbm-type use LDBM type], auto,
167 OL_ARG_ENABLE(passwd,[ --enable-passwd enable passwd backend], no)dnl
168 OL_ARG_WITH(passwd_module,[ --with-passwd-module module type], static,
170 OL_ARG_ENABLE(shell,[ --enable-shell enable shell backend], no)dnl
171 OL_ARG_WITH(shell_module,[ --with-shell-module module type], static,
173 OL_ARG_ENABLE(sql,[ --enable-sql enable sql backend], no)dnl
174 OL_ARG_WITH(sql_module,[ --with-sql-module module type], static,
177 dnl ----------------------------------------------------------------
179 AC_ARG_WITH(xxslurpdoptions,[SLURPD (Replication Daemon) Options:])
180 OL_ARG_ENABLE(slurpd,[ --enable-slurpd enable building slurpd], auto)dnl
182 dnl ----------------------------------------------------------------
183 AC_ARG_WITH(xxliboptions,[Library Generation & Linking Options])
185 dnl AC_DISABLE_SHARED
188 dnl ----------------------------------------------------------------
190 dnl General "enable" options
192 if test $ol_enable_slapd = no ; then
193 dnl SLAPD was specificallly disabled
194 if test $ol_enable_dnssrv = yes ; then
195 AC_MSG_WARN([slapd disabled, ignoring --enable-dnssrv argument])
197 if test $ol_enable_ldap = yes ; then
198 AC_MSG_WARN([slapd disabled, ignoring --enable-ldap argument])
200 if test $ol_enable_ldbm = yes ; then
201 AC_MSG_WARN([slapd disabled, ignoring --enable-ldbm argument])
203 if test $ol_enable_passwd = yes ; then
204 AC_MSG_WARN([slapd disabled, ignoring --enable-passwd argument])
206 if test $ol_enable_shell = yes ; then
207 AC_MSG_WARN([slapd disabled, ignoring --enable-shell argument])
209 if test $ol_enable_sql = yes ; then
210 AC_MSG_WARN([slapd disabled, ignoring --enable-sql argument])
212 if test $ol_enable_modules = yes ; then
213 AC_MSG_WARN([slapd disabled, ignoring --enable-modules argument])
215 if test $ol_enable_multimaster = yes ; then
216 AC_MSG_WARN([slapd disabled, ignoring --enable-multimaster argument])
218 if test $ol_enable_wrappers = yes ; then
219 AC_MSG_WARN([slapd disabled, ignoring --enable-wrappers argument])
221 if test $ol_enable_phonetic = yes ; then
222 AC_MSG_WARN([slapd disabled, ignoring --enable-phonetic argument])
224 if test $ol_enable_rlookups = yes ; then
225 AC_MSG_WARN([slapd disabled, ignoring --enable-rlookups argument])
227 if test $ol_enable_aci = yes ; then
228 AC_MSG_WARN([slapd disabled, ignoring --enable-aci argument])
230 if test $ol_with_ldbm_api != auto ; then
231 AC_MSG_WARN([slapd disabled, ignoring --with-ldbm-api argument])
233 if test $ol_with_ldbm_type != auto ; then
234 AC_MSG_WARN([slapd disabled, ignoring --with-ldbm-type argument])
236 if test $ol_with_dnssrv_module != static ; then
237 AC_MSG_WARN([slapd disabled, ignoring --with-dnssrv-module argument])
239 if test $ol_with_ldap_module != static ; then
240 AC_MSG_WARN([slapd disabled, ignoring --with-ldap-module argument])
242 if test $ol_with_ldbm_module != static ; then
243 AC_MSG_WARN([slapd disabled, ignoring --with-ldbm-module argument])
245 if test $ol_with_passwd_module != static ; then
246 AC_MSG_WARN([slapd disabled, ignoring --with-passwd-module argument])
248 if test $ol_with_shell_module != static ; then
249 AC_MSG_WARN([slapd disabled, ignoring --with-shell-module argument])
251 if test $ol_with_sql_module != static ; then
252 AC_MSG_WARN([slapd disabled, ignoring --with-sql-module argument])
254 if test $ol_enable_slurpd = yes ; then
255 AC_MSG_ERROR([slurpd requires slapd])
258 # force settings to no
267 ol_enable_multimaster=no
268 ol_enable_phonetic=no
269 ol_enable_rlookups=no
271 ol_enable_wrappers=no
277 ol_with_dnssrv_module=static
278 ol_with_ldap_module=static
279 ol_with_ldbm_module=static
280 ol_with_passwd_module=static
281 ol_with_shell_module=static
282 ol_with_sql_module=static
286 elif test $ol_enable_ldbm = no ; then
287 dnl SLAPD without LDBM
289 if test $ol_with_ldbm_api != auto ; then
290 AC_MSG_WARN([LDBM disabled, ignoring --with-ldbm-api argument])
293 if test $ol_with_ldbm_type != auto ; then
294 AC_MSG_WARN([LDBM disabled, ignoring --with-ldbm-type argument])
297 if test $ol_with_ldbm_module != static ; then
298 AC_MSG_WARN([LDBM disabled, ignoring --with-ldbm-module argument])
301 if test $ol_enable_modules != yes -a \
302 $ol_enable_dnssrv = no -a \
303 $ol_enable_ldap = no -a \
304 $ol_enable_passwd = no -a \
305 $ol_enable_shell = no -a \
306 $ol_enable_sql = no ; then
307 AC_MSG_ERROR([slapd requires a backend])
312 ol_with_ldbm_module=static
316 if test $ol_with_ldbm_api = gdbm -a \
317 $ol_with_ldbm_type = btree ; then
318 AC_MSG_ERROR([GDBM only supports LDBM type hash])
320 if test $ol_with_ldbm_api = mdbm -a \
321 $ol_with_ldbm_type = btree ; then
322 AC_MSG_ERROR([MDBM only supports LDBM type hash])
324 if test $ol_with_ldbm_api = ndbm -a \
325 $ol_with_ldbm_type = btree ; then
326 AC_MSG_ERROR([NDBM only supports LDBM type hash])
330 if test $ol_enable_slurpd = yes ; then
331 dnl SLURPD was specifically enabled
332 if test $ol_with_threads = no ; then
333 AC_MSG_ERROR([slurpd requires threads])
337 if test $ol_enable_kbind = yes -o $ol_enable_kpasswd = yes ; then
338 if test $ol_with_kerberos = no ; then
339 AC_MSG_ERROR([options require --with-kerberos])
341 elif test $ol_enable_kbind = no -o $ol_enable_kpasswd = no ; then
342 if test $ol_with_kerberos != auto ; then
343 AC_MSG_WARN([Kerberos detection enabled unnecessarily]);
349 if test $ol_enable_spasswd = yes ; then
350 if test $ol_with_cyrus_sasl = no ; then
351 AC_MSG_ERROR([options require --with-cyrus-sasl])
358 dnl ----------------------------------------------------------------
381 BUILD_DNSSRV_DYNAMIC=static
382 BUILD_LDAP_DYNAMIC=static
383 BUILD_LDBM_DYNAMIC=static
384 BUILD_PASSWD_DYNAMIC=static
385 BUILD_SHELL_DYNAMIC=static
386 BUILD_SQL_DYNAMIC=static
388 SLAPD_MODULES_LDFLAGS=
389 SLAPD_MODULES_CPPFLAGS=
405 dnl ================================================================
406 dnl Checks for programs
410 AC_DEFINE(HAVE_MKVERSION, 1, [define this if you have mkversion])
412 dnl ----------------------------------------------------------------
414 dnl Determine which C translator to use
417 dnl AIX Thread requires we use cc_r or xlc_r.
418 dnl But only do this IF AIX and CC is not set
419 dnl and threads are auto|yes|posix.
421 dnl If we find cc_r|xlc_r, force pthreads and assume
422 dnl pthread_create is in $LIBS (ie: don't bring in
423 dnl any additional thread libraries)
424 dnl If we do not find cc_r|xlc_r, disable threads
428 *-*-aix*) dnl all AIX is not a good idea.
429 if test -z "$CC" ; then
430 case "$ol_with_threads" in
431 auto | yes | posix) ol_aix_threads=yes ;;
437 if test $ol_aix_threads = yes ; then
438 if test -z "${CC}" ; then
439 AC_CHECK_PROGS(CC,cc_r xlc_r cc)
441 if test "$CC" = cc ; then
442 dnl no CC! don't allow --with-threads
443 if test $ol_with_threads != auto ; then
444 AC_MSG_ERROR([--with-threads requires cc_r (or other suitable compiler) on AIX])
446 AC_MSG_WARN([disabling threads, no cc_r on AIX])
452 if test "${CC}" = "cc_r" -o "${CC}" = "xlc_r" ; then
453 ol_with_threads=posix
454 ol_cv_pthread_create=yes
458 if test -z "${CC}"; then
459 AC_CHECK_PROGS(CC,cc)
462 dnl The default CFLAGS is empty NOT whatever AC_PROG_CC sets.
463 dnl (for now, let autoconf sort this out)
464 dnl CFLAGS=${CFLAGS-""}
474 if test "$LN_H" = "cp" -a "$LN_S" = "ln"; then
478 AC_PATH_PROG(SENDMAIL, sendmail, /usr/lib/sendmail,
479 $PATH:/usr/libexec:/usr/lib:/usr/sbin:/usr/etc:/etc)
480 AC_PATH_PROG(EDITOR, vi, /usr/ucb/vi, $PATH:/usr/ucb)
481 AC_PATH_PROG(FINGER, finger, /usr/ucb/finger, $PATH:/usr/ucb)
485 dnl ----------------------------------------------------------------
486 dnl Cross compiling checks
487 if test $cross_compiling = yes -a $ol_enable_x_compile = yes; then
488 AC_MSG_WARN([cross compiling.... some functionality will be removed.])
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.])
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.])
499 dnl ----------------------------------------------------------------
500 dnl Checks for UNIX Variants
505 dnl ----------------------------------------------------------------
506 dnl Checks for system services
512 AC_DEFINE_UNQUOTED( EXEEXT, "${EXEEXT}", [defined to be the EXE extension])
514 dnl ----------------------------------------------------------------
515 dnl BeOS requires -lbe -lroot -lnet
516 AC_CHECK_LIB(be, be_app, [LIBS="$LIBS -lbe -lroot -lnet"], :, [-lroot -lnet])
518 dnl ----------------------------------------------------------------
519 dnl OpenLDAP requires STDC features
521 if test "X${am_cv_prog_cc_stdc}" = "Xno" ; then
522 AC_MSG_ERROR([OpenLDAP requires compiler to support STDC constructs.])
525 dnl ----------------------------------------------------------------
526 dnl Check cc depend flags
528 if test "${ol_cv_mkdep}" = no ; then
529 # this will soon become an error
530 AC_MSG_WARN([do not know how to generate dependencies])
533 dnl ----------------------------------------------------------------
534 dnl Check for AIX security library
535 AC_CHECK_LIB(s, afopen, [
537 AC_DEFINE(HAVE_AIX_SECURITY,1,[define if you have AIX security lib])
541 dnl ----------------------------------------------------------------
542 dnl PF_INET6 support requires getaddrinfo
543 dnl PF_LOCAL may use getaddrinfo in available
544 AC_CHECK_FUNCS( getaddrinfo )
546 if test $ac_cv_func_getaddrinfo = no ; then
547 if test $ol_enable_ipv6 = yes ; then
548 AC_MSG_ERROR([IPv6 support requires getaddrinfo()])
553 if test $ol_enable_local != no ; then
554 AC_CHECK_HEADERS( sys/un.h )
556 if test $ol_enable_local = auto ; then
557 ol_enable_local=$ac_cv_header_sys_un_h
558 elif test $ac_cv_header_sys_un_h = no ; then
559 AC_MSG_ERROR([AF_LOCAL domain support requires sys/un.h])
563 dnl ----------------------------------------------------------------
564 dnl Check for module support
566 if test $ol_enable_modules != no ; then
567 AC_CHECK_HEADERS(ltdl.h)
569 if test $ac_cv_header_ltdl_h = no ; then
570 AC_MSG_ERROR([could not locate libtool ltdl.h])
573 AC_CHECK_LIB(ltdl, lt_dlinit, [
575 AC_DEFINE(HAVE_LIBLTDL,1,[define if you have libtool -ltdl])
578 if test "$ac_cv_lib_ltdl_lt_dlinit" = no ; then
579 AC_MSG_ERROR([could not locate libtool -lltdl])
583 ol_with_dnssrv_module=static
584 ol_with_ldap_module=static
585 ol_with_ldbm_module=static
586 ol_with_passwd_module=static
587 ol_with_shell_module=static
588 ol_with_sql_module=static
591 dnl ----------------------------------------------------------------
592 dnl Checks for header files.
595 if test $ol_cv_header_stdc != yes; then
596 AC_MSG_WARN([could not locate Standard C compliant headers])
601 AM_HEADER_TIOCGWINSZ_NEEDS_SYS_IOCTL
602 if test $am_cv_sys_posix_termios = yes ; then
603 AC_DEFINE(HAVE_POSIX_TERMIOS,1,
604 [define if you have POSIX termios])
654 dnl ----------------------------------------------------------------
655 dnl Checks for libraries
657 dnl HP-UX requires -lV3
658 AC_CHECK_LIB(V3, sigset)
660 dnl Gotta check for winsock manually
661 if test $ac_cv_header_winsock_h = yes; then
662 AC_CACHE_CHECK([for winsock], [ol_cv_winsock],
663 AC_TRY_LINK([#include <winsock.h>],[
665 select(0,NULL,NULL,NULL,NULL);
668 ],[ol_cv_winsock=yes],[ol_cv_winsock=no])])
670 if test $ol_cv_winsock = yes ; then
671 AC_DEFINE(HAVE_WINSOCK,1,[define if you have winsock])
672 ac_cv_func_socket=yes
673 ac_cv_func_select=yes
674 ac_cv_func_closesocket=yes
675 ac_cv_func_gethostname=yes
680 dnl Likely combinations:
681 dnl -lsocket [ -lnsl_s | -lnsl ]
684 AC_CHECK_FUNC(socket, :, [
685 dnl hopefully we won't include too many libraries
686 AC_CHECK_LIB(socket, main)
687 AC_CHECK_LIB(net, main)
688 AC_CHECK_LIB(nsl_s, main)
689 AC_CHECK_LIB(nsl, main)
690 AC_CHECK_LIB(inet, socket)
691 AC_CHECK_LIB(gen, main)
695 AC_CHECK_FUNC(select, :, AC_MSG_ERROR([select() required.]))
697 if test "${ac_cv_header_winsock_h}" != yes; then
699 dnl (if this detection becomes permenent, it and the select() detection
700 dnl should be done before the yielding select test)
701 AC_FUNC_SELECT_ARGTYPES
704 dnl check to see if system call automatically restart
705 dnl AC_SYS_RESTARTABLE_SYSCALLS
707 dnl ----------------------------------------------------------------
708 dnl require POSIX regex
709 AC_CHECK_HEADERS( regex.h )
710 if test "$ac_cv_header_regex_h" != yes ; then
711 AC_MSG_ERROR([POSIX regex.h required.])
713 AC_CHECK_FUNC(regfree, :, AC_MSG_ERROR([POSIX regex required.]))
716 if test "$ol_cv_c_posix_regex" = no ; then
717 AC_MSG_ERROR([broken POSIX regex!])
720 dnl ----------------------------------------------------------------
721 dnl Check for resolver routines
723 AC_CHECK_FUNC(res_query,:)
724 if test $ac_cv_func_res_query = no ; then
725 AC_CHECK_LIB(bind, res_query)
726 ac_cv_func_res_query=$ac_cv_lib_bind_res_query
729 if test $ac_cv_func_res_query = no ; then
730 AC_CHECK_LIB(bind, __res_query)
731 ac_cv_func_res_query=$ac_cv_lib_bind___res_query
734 if test $ac_cv_func_res_query = no ; then
735 AC_CHECK_LIB(resolv, res_query)
736 ac_cv_func_res_query=$ac_cv_lib_resolv_res_query
739 if test "$ac_cv_func_res_query" = yes ; then
740 AC_DEFINE(HAVE_RES_QUERY,1,
741 [define if you have res_query()])
743 if test $ol_enable_dnssrv != no ; then
748 if test "$ol_enable_dnssrv" = yes -a "$ol_link_dnssrv" = no ; then
749 AC_MSG_ERROR([DNSSRV requires res_query()])
752 dnl ----------------------------------------------------------------
759 if test $ol_with_kerberos = auto -o $ol_with_kerberos = k5 \
760 -o $ol_with_kerberos = k5only -o $ol_with_kerberos = k425 ; then
762 AC_CHECK_HEADERS(krb5.h)
764 if test $ac_cv_header_krb5_h = yes ; then
765 dnl lazy check for Heimdal Kerberos
766 AC_CHECK_HEADERS(heim_err.h)
767 if test $ac_cv_header_heim_err_h = yes ; then
773 if test $krb5_impl = mit; then
774 AC_CHECK_LIB(krb5, main,
776 KRB5_LIBS="-lkrb5 -lcrypto -lcom_err"],
778 [-lcrypto -lcom_err])
780 elif test $krb5_impl = heimdal; then
781 AC_CHECK_LIB(krb5, main,
783 KRB5_LIBS="-lkrb5 -ldes -lasn1 -lroken -lcom_err"],
785 [-ldes -lasn1 -lroken -lcom_err])
787 AC_DEFINE(HAVE_HEIMDAL_KERBEROS, 1,
788 [define if you have HEIMDAL Kerberos])
791 AC_MSG_WARN([Unrecongized Kerberos5 Implementation])
794 if test $have_krb5 = yes ; then
797 AC_DEFINE(HAVE_KRB5, 1,
798 [define if you have Kerberos V])
800 if test $ol_enable_kpasswd != no ; then
804 if test $ol_with_kerberos = k5only ; then
805 ol_with_kerberos=found
808 elif test $ol_with_kerberos != auto ; then
809 AC_MSG_ERROR([Required Kerberos 5 support not available])
815 if test $ol_link_krb5 = yes -a \
816 \( $ol_with_kerberos = auto -o $ol_with_kerberos = k425 \) ; then
818 AC_CHECK_HEADERS(kerberosIV/krb.h kerberosIV/des.h)
820 if test $ac_cv_header_kerberosIV_krb_h = yes ; then
821 if test $krb5_impl = mit; then
822 AC_CHECK_LIB(krb4, main, [have_k425=yes
823 KRB4_LIBS="-lkrb4 -ldes425"], [have_k425=no],
824 [-ldes425 -lkrb5 -lcrypto -lcom_err])
826 elif test $krb5_impl = heimdal; then
827 AC_CHECK_LIB(krb4, main, [have_k425=yes
828 KRB4_LIBS="-lkrb4"], [have_k425=no],
829 [-lkrb5 -ldes -lasn1 -lroken -lcom_err])
833 AC_MSG_WARN([Unrecongized Kerberos5 Implementation])
836 if test $have_k425 = yes ; then
837 ol_with_kerberos=found
840 AC_DEFINE(HAVE_KRB425, 1,
841 [define if you have Kerberos V with IV support])
842 AC_DEFINE(HAVE_KRB4, 1,
843 [define if you have Kerberos IV])
845 AC_CACHE_CHECK([for des_debug in Kerberos libraries],
846 [ol_cv_var_des_debug], [
849 LIBS="$KRB4_LIBS $KRB5_LIBS $LIBS"
851 #include <kerberosIV/krb.h>
852 #include <kerberosIV/des.h>
853 extern int des_debug;
856 ], ol_cv_var_des_debug=yes, ol_cv_var_des_debug=no)
861 if test $ol_cv_var_des_debug = yes ; then
862 AC_DEFINE(HAVE_DES_DEBUG,1,
863 [define if you have Kerberos des_debug])
871 if test $ol_link_krb5 = yes ; then
872 ol_with_kerberos=found
875 if test $ol_with_kerberos = auto -o $ol_with_kerberos = k4 \
876 -o $ol_with_kerberos = kth ; then
878 AC_CHECK_HEADERS(krb.h des.h krb-archaeology.h )
880 if test $ac_cv_header_krb_h = yes ; then
881 AC_CHECK_LIB(krb, main, [have_k4=yes], [have_k4=no], [-ldes])
883 if test $have_k4 = yes ; then
884 ol_with_kerberos=found
887 AC_DEFINE(HAVE_KRB4, 1,
888 [define if you have Kerberos IV])
890 KRB4_LIBS="-lkrb -ldes"
892 if test $ac_cv_header_krb_archaeology_h = yes ; then
893 AC_DEFINE(HAVE_KTH_KERBEROS, 1,
894 [define if you have Kth Kerberos])
900 if test $ol_link_krb4 = yes -a $ol_enable_kpasswd != no ; then
904 if test $ol_link_krb4 = yes -o $ol_link_krb5 = yes ; then
905 AC_DEFINE(HAVE_KERBEROS, 1, [define if you have Kerberos])
907 elif test $ol_with_kerberos != auto -a $ol_with_kerberos != no ; then
908 AC_MSG_ERROR([Kerberos detection failed.])
911 dnl ----------------------------------------------------------------
914 if test $ol_with_tls != no ; then
915 AC_CHECK_HEADERS(openssl/ssl.h ssl.h)
917 if test $ac_cv_header_openssl_ssl_h = yes -o $ac_cv_header_ssl_h = yes ; then
918 AC_CHECK_LIB(ssl, SSLeay_add_ssl_algorithms,
924 if test $have_ssleay = no ; then
925 AC_CHECK_LIB(ssl, SSL_library_init,
927 need_rsaref=no], [have_ssleay=no],
931 if test $have_ssleay = no ; then
932 AC_CHECK_LIB(ssl, ssl3_accept,
934 need_rsaref=yes], [have_ssleay=no],
935 [-lcrypto -lRSAglue -lrsaref])
938 if test $have_ssleay = yes ; then
942 AC_DEFINE(HAVE_SSLEAY, 1,
943 [define if you have SSLeay or OpenSSL])
945 if test $need_rsaref = yes; then
946 AC_DEFINE(HAVE_RSAREF, 1,
947 [define if you have RSAref])
949 TLS_LIBS="-lssl -lcrypto -lRSAglue -lrsaref"
951 TLS_LIBS="-lssl -lcrypto"
957 AC_WARN([TLS privacy protection not supported!])
960 if test $ol_link_tls = yes ; then
961 AC_DEFINE(HAVE_TLS, 1, [define if you have TLS])
963 elif test $ol_with_tls = auto ; then
964 AC_WARN([Could not locate TLS/SSL package])
965 AC_WARN([TLS privacy protection not supported!])
967 elif test $ol_with_tls != no ; then
968 AC_ERROR([Could not locate TLS/SSL package])
971 dnl ----------------------------------------------------------------
972 dnl Tests for reentrant functions necessary to build a
973 dnl thread_safe -lldap.
976 gethostbyname_r gethostbyaddr_r \
979 if test "$ac_cv_func_ctime_r" = no ; then
980 ol_cv_func_ctime_r_nargs=0
982 OL_FUNC_CTIME_R_NARGS
983 dnl OL_FUNC_CTIME_R_TYPE
986 if test "$ac_cv_func_gethostbyname_r" = yes ; then
987 OL_FUNC_GETHOSTBYNAME_R_NARGS
989 ol_cv_func_gethostbyname_r_nargs=0
992 if test "$ac_cv_func_gethostbyaddr_r" = yes ; then
993 OL_FUNC_GETHOSTBYADDR_R_NARGS
995 ol_cv_func_gethostbyaddr_r_nargs=0
998 if test "$ac_cv_func_ctime_r" = yes \
999 -a "$ol_cv_func_ctime_r_nargs" -ge 2 \
1000 -a "$ol_cv_func_ctime_r_nargs" -le 3 \
1001 -a "$ac_cv_func_gethostbyname_r" = yes \
1002 -a "$ol_cv_func_gethostbyname_r_nargs" -ge 5 \
1003 -a "$ol_cv_func_gethostbyname_r_nargs" -le 6 \
1004 -a "$ac_cv_func_gethostbyaddr_r" = yes \
1005 -a "$ol_cv_func_gethostbyaddr_r_nargs" -ge 5 \
1006 -a "$ol_cv_func_gethostbyaddr_r_nargs" -le 6 \
1009 AC_DEFINE(LDAP_API_FEATURE_X_OPENLDAP_REENTRANT,1)
1012 dnl ----------------------------------------------------------------
1016 if test $ol_with_threads = auto -o $ol_with_threads = yes \
1017 -o $ol_with_threads = nt ; then
1021 if test "$ol_cv_nt_threads" = yes ; then
1023 ol_with_threads=found
1024 ol_with_yielding_select=yes
1026 AC_DEFINE(HAVE_NT_SERVICE_MANAGER,1,[if you have NT Service Manager])
1027 AC_DEFINE(HAVE_NT_EVENT_LOG,1,[if you have NT Event Log])
1030 if test $ol_with_threads = nt ; then
1031 AC_MSG_ERROR([could not locate NT Threads])
1035 if test $ol_with_threads = auto -o $ol_with_threads = yes \
1036 -o $ol_with_threads = posix ; then
1038 AC_CHECK_HEADERS(pthread.h)
1040 if test $ac_cv_header_pthread_h = yes ; then
1041 OL_POSIX_THREAD_VERSION
1043 if test $ol_cv_pthread_version = final ; then
1044 AC_DEFINE(HAVE_PTHREADS_FINAL,1,
1045 [define if pthreads API compatible with final spec])
1046 elif test $ol_cv_pthread_version = draft4 ; then
1047 AC_DEFINE(HAVE_PTHREADS_D4,1,
1048 [define if pthreads API compatible with draft4 spec])
1050 AC_MSG_ERROR([unknown pthread version])
1053 # consider threads found
1054 ol_with_threads=found
1056 OL_HEADER_LINUX_THREADS
1057 OL_HEADER_GNU_PTH_PTHREAD_H
1059 if test $ol_cv_header_gnu_pth_pthread_h = no ; then
1060 AC_CHECK_HEADERS(sched.h)
1063 dnl Now the hard part, how to link?
1065 dnl currently supported checks:
1067 dnl Check for no flags
1068 dnl pthread_create() in $LIBS
1070 dnl Check special pthread (final) flags
1071 dnl [skipped] pthread_create() with -mt (Solaris) [disabled]
1072 dnl pthread_create() with -kthread (FreeBSD)
1073 dnl pthread_create() with -pthread (FreeBSD/Digital Unix)
1074 dnl pthread_create() with -pthreads (?)
1075 dnl pthread_create() with -mthreads (AIX)
1076 dnl pthread_create() with -thread (?)
1078 dnl Check pthread (final) libraries
1079 dnl pthread_mutex_unlock() in -lpthread -lmach -lexc -lc_r (OSF/1)
1080 dnl pthread_mutex_lock() in -lpthread -lmach -lexc (OSF/1)
1081 dnl [skipped] pthread_mutex_trylock() in -lpthread -lexc (OSF/1)
1082 dnl pthread_join() -Wl,-woff,85 -lpthread (IRIX)
1083 dnl pthread_create() in -lpthread (many)
1084 dnl pthread_create() in -lc_r (FreeBSD)
1086 dnl Check pthread (draft4) flags (depreciated)
1087 dnl pthread_create() with -threads (OSF/1)
1089 dnl Check pthread (draft4) libraries (depreciated)
1090 dnl pthread_mutex_unlock() in -lpthreads -lmach -lexc -lc_r (OSF/1)
1091 dnl pthread_mutex_lock() in -lpthreads -lmach -lexc (OSF/1)
1092 dnl pthread_mutex_trylock() in -lpthreads -lexc (OSF/1)
1093 dnl pthread_create() in -lpthreads (many)
1096 dnl pthread_create in $LIBS
1097 AC_CACHE_CHECK([for pthread_create in default libraries],
1098 ol_cv_pthread_create,[
1099 AC_TRY_RUN(OL_PTHREAD_TEST_PROGRAM,
1100 [ol_cv_pthread_create=yes],
1101 [ol_cv_pthread_create=no],
1102 [AC_TRY_LINK(OL_PTHREAD_TEST_INCLUDES,OL_PTHREAD_TEST_FUNCTION,
1103 [ol_cv_pthread_create=yes],
1104 [ol_cv_pthread_create=no])])])
1106 if test $ol_cv_pthread_create != no ; then
1107 ol_link_threads=posix
1111 dnl OL_PTHREAD_TRY([-mt], [ol_cv_pthread_mt])
1112 OL_PTHREAD_TRY([-kthread], [ol_cv_pthread_kthread])
1113 OL_PTHREAD_TRY([-pthread], [ol_cv_pthread_pthread])
1114 OL_PTHREAD_TRY([-pthreads], [ol_cv_pthread_pthreads])
1115 OL_PTHREAD_TRY([-mthreads], [ol_cv_pthread_mthreads])
1116 OL_PTHREAD_TRY([-thread], [ol_cv_pthread_thread])
1118 OL_PTHREAD_TRY([-lpthread -lmach -lexc -lc_r],
1119 [ol_cv_pthread_lpthread_lmach_lexc_lc_r])
1120 OL_PTHREAD_TRY([-lpthread -lmach -lexc],
1121 [ol_cv_pthread_lpthread_lmach_lexc])
1122 dnl OL_PTHREAD_TRY([-lpthread -lexc],
1123 dnl [ol_cv_pthread_lpthread_lexc])
1125 OL_PTHREAD_TRY([-lpthread -Wl,-woff,85],
1126 [ol_cv_pthread_lib_lpthread_woff])
1128 OL_PTHREAD_TRY([-lpthread], [ol_cv_pthread_lpthread])
1129 OL_PTHREAD_TRY([-lc_r], [ol_cv_pthread_lc_r])
1131 OL_PTHREAD_TRY([-threads], [ol_cv_pthread_threads])
1133 OL_PTHREAD_TRY([-lpthreads -lmach -lexc -lc_r],
1134 [ol_cv_pthread_lpthreads_lmach_lexc_lc_r])
1135 OL_PTHREAD_TRY([-lpthreads -lmach -lexc],
1136 [ol_cv_pthread_lpthreads_lmach_lexc])
1137 OL_PTHREAD_TRY([-lpthreads -lexc],
1138 [ol_cv_pthread_lpthreads_lexc])
1140 OL_PTHREAD_TRY([-lpthreads],[ol_cv_pthread_lib_lpthreads])
1142 if test $ol_link_threads != no ; then
1143 AC_DEFINE(HAVE_PTHREADS,1,
1144 [define if you have POSIX Threads])
1146 LTHREAD_LIBS="$LTHREAD_LIBS $ol_link_pthreads"
1149 save_CPPFLAGS="$CPPFLAGS"
1151 LIBS="$LTHREAD_LIBS $LIBS"
1153 dnl All POSIX Thread (final) implementations should have
1154 dnl sched_yield instead of pthread yield.
1156 AC_CHECK_FUNCS(sched_yield pthread_yield)
1158 if test $ac_cv_func_sched_yield = no -a \
1159 $ac_cv_func_pthread_yield = no ; then
1160 dnl Digital UNIX has sched_yield() in -lrt
1161 AC_CHECK_LIB(rt, sched_yield,
1162 [LTHREAD_LIBS="$LTHREAD_LIBS -lrt"
1163 AC_DEFINE(HAVE_SCHED_YIELD,1,
1164 [Define if you have the sched_yield function.])
1165 ac_cv_func_sched_yield=yes],
1166 [ac_cv_func_sched_yield=no])
1168 if test $ac_cv_func_sched_yield = no -a \
1169 $ac_cv_func_pthread_yield = no ; then
1170 dnl Solaris has sched_yield() stub in -lposix4
1171 dnl but we'll use thr_yield instead.
1172 AC_CHECK_FUNCS(thr_yield)
1174 if test $ac_cv_func_sched_yield = no -a \
1175 $ac_cv_func_pthread_yield = no -a \
1176 "$ac_cv_func_thr_yield" = no ; then
1177 AC_MSG_WARN([could not locate sched_yield() or pthread_yield()])
1180 dnl Check functions for compatibility
1181 AC_CHECK_FUNCS(pthread_kill pthread_rwlock_destroy)
1183 dnl Check for pthread_detach with <pthread.h> inclusion
1184 dnl as it's symbol may have been mangled.
1185 AC_CACHE_CHECK([for pthread_detach with <pthread.h>],
1186 [ol_cv_func_pthread_detach], [
1189 #include <pthread.h>
1191 #define NULL (void*)0
1194 [pthread_detach(NULL);],
1195 [ol_cv_func_pthread_detach=yes],
1196 [ol_cv_func_pthread_detach=no])
1199 if test $ol_cv_func_pthread_detach = no ; then
1200 AC_MSG_ERROR([could not locate pthread_detach()])
1203 AC_DEFINE(HAVE_PTHREAD_DETACH,1,
1204 [define if you have pthread_detach function])
1206 dnl Check for setconcurreny functions
1208 pthread_setconcurrency \
1209 pthread_getconcurrency \
1210 thr_setconcurrency \
1211 thr_getconcurrency \
1214 OL_SYS_LINUX_THREADS
1217 if test $ol_cv_linux_threads = error; then
1218 AC_MSG_ERROR([LinuxThreads header/library mismatch]);
1221 AC_CACHE_CHECK([if pthread_create() works],
1222 ol_cv_pthread_create_works,[
1223 AC_TRY_RUN(OL_PTHREAD_TEST_PROGRAM,
1224 [ol_cv_pthread_create_works=yes],
1225 [ol_cv_pthread_create_works=no],
1227 ol_cv_pthread_create_works=yes])])
1229 if test $ol_cv_pthread_create_works = no ; then
1230 AC_MSG_ERROR([pthread_create is not usable, check environment settings])
1233 dnl Check if select causes an yield
1234 if test $ol_with_yielding_select = auto ; then
1235 AC_CACHE_CHECK([if select yields when using pthreads],
1236 ol_cv_pthread_select_yields,[
1238 #include <sys/types.h>
1239 #include <sys/time.h>
1241 #include <pthread.h>
1243 #define NULL (void*) 0
1246 static int fildes[2];
1248 static void *task(p)
1260 FD_SET(fildes[0], &rfds);
1262 /* we're not interested in any fds */
1263 i = select(FD_SETSIZE, &rfds, NULL, NULL, &tv);
1270 exit(0); /* if we exit here, the select blocked the whole process */
1273 int main(argc, argv)
1279 /* create a pipe to select */
1280 if(pipe(&fildes[0])) {
1285 #ifdef HAVE_PTHREAD_SETCONCURRENCY
1286 (void) pthread_setconcurrency(2);
1288 #ifdef HAVE_THR_SETCONCURRENCY
1289 /* Set Solaris LWP concurrency to 2 */
1290 thr_setconcurrency(2);
1294 #if HAVE_PTHREADS_D4
1295 pthread_create(&t, pthread_attr_default, task, NULL);
1297 pthread_create(&t, NULL, task, NULL);
1300 #if HAVE_SCHED_YIELD
1301 sched_yield(); /* make sure task runs first */
1303 #ifdef HAVE_PTHREAD_YIELD
1304 pthread_yield(); /* make sure task runs first */
1310 [ol_cv_pthread_select_yields=no],
1311 [ol_cv_pthread_select_yields=yes],
1312 [ol_cv_pthread_select_yields=cross])])
1314 if test $ol_cv_pthread_select_yields = cross ; then
1315 AC_MSG_ERROR([crossing compiling: use --with-yielding_select=yes|no|manual])
1318 if test $ol_cv_pthread_select_yields = yes ; then
1319 ol_with_yielding_select=yes
1324 CPPFLAGS="$save_CPPFLAGS"
1327 AC_MSG_ERROR([could not link with POSIX Threads])
1331 if test $ol_with_threads = posix ; then
1332 AC_MSG_ERROR([could not locate POSIX Threads])
1336 if test $ol_with_threads = auto -o $ol_with_threads = yes \
1337 -o $ol_with_threads = mach ; then
1339 dnl check for Mach CThreads
1340 AC_CHECK_HEADERS(mach/cthreads.h)
1341 if test $ac_cv_header_mach_cthreads_h = yes ; then
1342 ol_with_threads=found
1344 dnl check for cthread support in current $LIBS
1345 AC_CHECK_FUNC(cthread_fork,[ol_link_threads=yes])
1347 if test $ol_link_threads = no ; then
1349 dnl this test needs work
1350 AC_CACHE_CHECK([for cthread_fork with -all_load],
1351 [ol_cv_cthread_all_load], [
1354 LIBS="-all_load $LIBS"
1355 AC_TRY_LINK([#include <mach/cthreads.h>],[
1356 cthread_fork((void *)0, (void *)0);
1357 ], ol_cv_cthread_all_load=yes, ol_cv_cthread_all_load=no)
1358 dnl restore the LIBS
1362 if test $ol_cv_cthread_all_load = yes ; then
1363 LTHREAD_LIBS="$LTHREAD_LIBS -all_load"
1364 ol_link_threads=mach
1368 if test $ol_link_threads != no ; then
1369 : check for cthread specific functionality here
1370 AC_DEFINE(HAVE_MACH_CTHREADS,1,
1371 [define if you have Mach Cthreads])
1373 AC_MSG_ERROR([could not link with Mach CThreads])
1377 if test $ol_with_threads = mach ; then
1378 AC_MSG_ERROR([could not locate Mach CThreads])
1382 if test $ol_with_threads = auto -o $ol_with_threads = yes \
1383 -o $ol_with_threads = pth ; then
1385 AC_CHECK_HEADERS(pth.h)
1387 if test $ac_cv_header_pth_h = yes ; then
1388 AC_CHECK_LIB(pth, pth_version, [have_pth=yes], [have_pth=no])
1390 if test $have_pth = yes ; then
1391 AC_DEFINE(HAVE_GNU_PTH,1,[if you have GNU Pth])
1392 LTHREAD_LIBS="$LTHREAD_LIBS -lpth"
1395 if test $ol_with_yielding_select = auto ; then
1396 ol_with_yielding_select=yes
1402 if test $ol_with_threads = auto -o $ol_with_threads = yes \
1403 -o $ol_with_threads = lwp ; then
1405 dnl check for SunOS5 LWP
1406 AC_CHECK_HEADERS(thread.h synch.h)
1407 if test $ac_cv_header_thread_h = yes -a $ac_cv_header_synch_h = yes ; then
1408 AC_CHECK_LIB(thread, thr_create, [have_thr=yes], [have_thr=no])
1410 if test $have_thr = yes ; then
1411 AC_DEFINE(HAVE_THR,1,
1412 [if you have Solaris LWP (thr) package])
1413 LTHREAD_LIBS="$LTHREAD_LIBS -lthread"
1416 if test $ol_with_yielding_select = auto ; then
1417 ol_with_yielding_select=yes
1420 dnl Check for setconcurreny functions
1422 thr_setconcurrency \
1423 thr_getconcurrency \
1428 dnl check for SunOS4 LWP
1429 AC_CHECK_HEADERS(lwp/lwp.h)
1430 if test $ac_cv_header_lwp_lwp_h = yes ; then
1431 AC_CHECK_LIB(lwp, lwp_create, [have_lwp=yes], [have_lwp=no])
1433 if test $have_lwp = yes ; then
1434 AC_DEFINE(HAVE_LWP,1,
1435 [if you have SunOS LWP package])
1436 LTHREAD_LIBS="$LTHREAD_LIBS -llwp"
1439 if test $ol_with_yielding_select = auto ; then
1440 ol_with_yielding_select=no
1446 if test $ol_with_yielding_select = yes ; then
1447 AC_DEFINE(HAVE_YIELDING_SELECT,1,
1448 [define if select implicitly yields])
1451 if test $ol_with_threads = manual ; then
1452 dnl User thinks he can manually configure threads.
1455 AC_MSG_WARN([thread defines and link options must be set manually])
1457 AC_CHECK_HEADERS(pthread.h sched.h)
1458 AC_CHECK_FUNCS(sched_yield pthread_yield)
1459 OL_HEADER_LINUX_THREADS
1461 AC_CHECK_HEADERS(mach/cthreads.h)
1462 AC_CHECK_HEADERS(lwp/lwp.h)
1463 AC_CHECK_HEADERS(thread.h synch.h)
1466 if test $ol_link_threads != no -a $ol_link_threads != nt ; then
1467 dnl needed to get reentrant/threadsafe versions
1469 AC_DEFINE(REENTRANT,1)
1470 AC_DEFINE(_REENTRANT,1)
1471 AC_DEFINE(THREAD_SAFE,1)
1472 AC_DEFINE(_THREAD_SAFE,1)
1473 AC_DEFINE(THREADSAFE,1)
1474 AC_DEFINE(_THREADSAFE,1)
1475 AC_DEFINE(_SGI_MP_SOURCE,1)
1477 dnl The errno declaration may dependent upon _REENTRANT.
1478 dnl If it does, we must link with thread support.
1479 AC_CACHE_CHECK([for thread specific errno],
1480 [ol_cv_errno_thread_specific], [
1481 AC_TRY_LINK([#include <errno.h>], [errno = 0;],
1482 [ol_cv_errno_thread_specific=yes],
1483 [ol_cv_errno_thread_specific=no])
1486 dnl The h_errno declaration may dependent upon _REENTRANT.
1487 dnl If it does, we must link with thread support.
1488 AC_CACHE_CHECK([for thread specific h_errno],
1489 [ol_cv_h_errno_thread_specific], [
1490 AC_TRY_LINK([#include <netdb.h>], [h_errno = 0;],
1491 [ol_cv_h_errno_thread_specific=yes],
1492 [ol_cv_h_errno_thread_specific=no])
1495 if test $ol_cv_errno_thread_specific != yes \
1496 -o $ol_cv_h_errno_thread_specific != yes ; then
1497 LIBS="$LTHREAD_LIBS $LIBS"
1501 dnl When in thread environment, use
1502 dnl #if defined( HAVE_REENTRANT_FUNCTIONS ) \
1503 dnl || defined( HAVE_FUNC_R )
1506 dnl # if defined( HAVE_THREADS )
1510 dnl # if defined( HAVE_THREADS )
1515 dnl HAVE_REENTRANT_FUNCTIONS is derived from:
1516 dnl _POSIX_REENTRANT_FUNCTIONS
1517 dnl _POSIX_THREAD_SAFE_FUNCTIONS
1518 dnl _POSIX_THREADSAFE_FUNCTIONS
1520 dnl and is currently defined in lthread.h
1522 dnl HAVE_THREADS is defined by lthread.h iff -UNO_THREADS
1524 dnl libldap/*.c should only include <lthread.h> iff
1525 dnl LDAP_R_COMPILE is defined. ie:
1526 dnl #ifdef LDAP_R_COMPILE
1527 dnl # include LDAP_R_COMPILE
1530 dnl LDAP_R_COMPILE is defined by libldap_r/Makefile.in
1531 dnl specifically for compiling the threadsafe version of
1532 dnl the ldap library (-lldap_r).
1534 dnl dnl check for reentrant/threadsafe functions
1536 dnl dnl note: these should only be used when linking
1537 dnl dnl with $LTHREAD_LIBS
1539 dnl save_CPPFLAGS="$CPPFLAGS"
1540 dnl save_LIBS="$LIBS"
1541 dnl LIBS="$LTHREAD_LIBS $LIBS"
1542 dnl AC_CHECK_FUNCS( \
1544 dnl gethostbyaddr_r gethostbyname_r \
1545 dnl feof_unlocked unlocked_feof \
1546 dnl putc_unlocked unlocked_putc \
1547 dnl flockfile ftrylockfile \
1549 dnl CPPFLAGS="$save_CPPFLAGS"
1550 dnl LIBS="$save_LIBS"
1553 if test $ol_link_threads = no ; then
1554 if test $ol_with_threads = yes ; then
1555 AC_MSG_ERROR([no suitable thread support])
1558 if test $ol_with_threads = auto ; then
1559 AC_MSG_WARN([no suitable thread support, disabling threads])
1563 AC_DEFINE(NO_THREADS,1,
1564 [define if you have (or want) no threads])
1568 if test $ol_link_threads != no ; then
1569 AC_DEFINE(LDAP_API_FEATURE_X_OPENLDAP_THREAD_SAFE,1)
1572 dnl ----------------------------------------------------------------
1575 if test $ol_with_ldbm_api = auto \
1576 -o $ol_with_ldbm_api = berkeley \
1577 -o $ol_with_ldbm_api = bcompat ; then
1579 if test $ol_with_ldbm_api = bcompat; then \
1580 OL_BERKELEY_COMPAT_DB
1585 if test $ol_cv_berkeley_db != no ; then
1586 AC_DEFINE(HAVE_BERKELEY_DB,1,
1587 [define this if Berkeley DB is available])
1589 ol_link_ldbm=berkeley
1592 if test $ol_with_ldbm_type = hash ; then
1593 AC_DEFINE(LDBM_USE_DBHASH,1,
1594 [define this to use DBHASH w/ LDBM backend])
1596 AC_DEFINE(LDBM_USE_DBBTREE,1,
1597 [define this to use DBBTREE w/ LDBM backend])
1600 dnl $ol_cv_lib_db should be yes or -ldb
1601 dnl (it could be no, but that would be an error
1602 if test $ol_cv_lib_db != yes ; then
1603 LDBM_LIBS="$LDBM_LIBS $ol_cv_lib_db"
1608 if test $ol_link_ldbm = no -a $ol_with_ldbm_type = btree ; then
1609 AC_MSG_WARN(Could not find LDBM with BTREE support)
1610 ol_with_ldbm_api=none
1613 if test $ol_with_ldbm_api = auto -o $ol_with_ldbm_api = mdbm ; then
1616 if test $ol_cv_mdbm = yes ; then
1618 ol_with_ldbm_api=mdbm
1619 if test $ol_cv_lib_mdbm != yes ; then
1620 LDBM_LIBS="$LDBM_LIBS $ol_cv_lib_mdbm"
1625 if test $ol_with_ldbm_api = auto -o $ol_with_ldbm_api = gdbm ; then
1628 if test $ol_cv_gdbm = yes ; then
1630 ol_with_ldbm_api=gdbm
1632 if test $ol_cv_lib_gdbm != yes ; then
1633 LDBM_LIBS="$LDBM_LIBS $ol_cv_lib_gdbm"
1638 if test $ol_with_ldbm_api = ndbm ; then
1641 if test $ol_cv_ndbm = yes ; then
1643 ol_with_ldbm_api=ndbm
1645 if test $ol_cv_lib_ndbm != yes ; then
1646 LDBM_LIBS="$LDBM_LIBS $ol_cv_lib_ndbm"
1651 if test $ol_link_ldbm = no -a $ol_enable_ldbm != no ; then
1652 AC_MSG_WARN(could not find suitable LDBM backend)
1653 if test $ol_enable_ldbm = yes ; then
1654 AC_MSG_ERROR(select appropriate LDBM options or disable)
1657 AC_MSG_WARN(disabling LDBM)
1661 dnl ----------------------------------------------------------------
1662 if test $ol_enable_dynamic = yes -a $enable_shared = yes ; then
1663 LINK_BINS_DYNAMIC="yes"
1665 LINK_BINS_DYNAMIC="no"
1668 dnl ----------------------------------------------------------------
1669 if test $ol_enable_wrappers != no ; then
1670 AC_CHECK_HEADERS(tcpd.h)
1672 if test $ac_cv_header_tcpd_h != yes ; then
1676 int allow_severity = 0;
1677 int deny_severity = 0;
1678 ],[hosts_access()],[have_wrappers=yes],[have_wrappers=no])
1681 if test $have_wrappers = yes ; then
1682 AC_DEFINE(HAVE_TCPD,1, [define if you have -lwrap])
1685 dnl We add another check for -lnsl since some libwrap's
1686 dnl need it, but it isn't always included from above
1687 AC_CHECK_LIB(nsl, main)
1689 AC_MSG_WARN(could not find -lwrap)
1690 if test $ol_enable_wrappers = yes ; then
1691 AC_MSG_ERROR(could not find wrappers, select appropriate options or disable)
1694 AC_MSG_WARN(disabling wrappers support)
1695 ol_enable_wrappers=no
1700 dnl ----------------------------------------------------------------
1701 if test $ol_enable_syslog != no ; then
1702 AC_CHECK_FUNC(openlog)
1703 if test $ac_cv_func_openlog = no -a $ol_enable_syslog = yes; then
1704 AC_MSG_ERROR(could not find syslog, select appropriate options or disable)
1706 ol_enable_syslog=$ac_cv_func_openlog
1709 dnl ----------------------------------------------------------------
1712 if test $ol_enable_sql != no ; then
1713 AC_CHECK_LIB(iodbc,SQLDriverConnect,[have_iodbc=yes],[have_iodbc=no])
1714 if test $have_iodbc = yes ; then
1715 ol_link_sql="-liodbc"
1717 AC_CHECK_LIB(odbc,SQLDriverConnect,[have_odbc=yes],[have_odbc=no])
1718 if test $have_odbc = yes ; then
1719 ol_link_sql="-lodbc"
1723 if test $ol_link_sql != no ; then
1724 SLAPD_SQL_LIBS="$ol_link_sql"
1726 elif test $ol_enable_sql != auto ; then
1727 AC_MSG_ERROR([could not locate suitable ODBC library])
1731 dnl ----------------------------------------------------------------
1732 dnl ud needs termcap (should insert check here)
1734 AC_CHECK_HEADERS(termcap.h ncurses.h)
1736 if test $ol_link_termcap = no ; then
1737 AC_CHECK_LIB(termcap, tputs, [have_termcap=yes], [have_termcap=no])
1738 if test $have_termcap = yes ; then
1739 AC_DEFINE(HAVE_TERMCAP, 1, [define if you have -ltermcap])
1741 TERMCAP_LIBS=-ltermcap
1745 if test $ol_link_termcap = no ; then
1746 AC_CHECK_LIB(ncurses, initscr, [have_ncurses=yes], [have_ncurses=no])
1747 if test $have_ncurses = yes ; then
1748 AC_DEFINE(HAVE_NCURSES, 1, [define if you have -lncurses])
1750 TERMCAP_LIBS=-lncurses
1754 if test $ol_link_termcap = no ; then
1755 AC_DEFINE(NO_TERMCAP,1, [define if you have no termcap support])
1759 dnl ----------------------------------------------------------------
1761 dnl Check for Cyrus SASL
1765 if test $ol_with_cyrus_sasl != no ; then
1766 AC_CHECK_HEADERS(sasl.h)
1768 if test $ac_cv_header_sasl_h = yes ; then
1769 AC_CHECK_LIB(sasl, sasl_client_init,
1770 [have_cyrus_sasl=yes], [have_cyrus_sasl=no])
1772 if test $have_cyrus_sasl != no ; then
1774 AC_DEFINE(HAVE_CYRUS_SASL,1,[define if you have Cyrus SASL])
1779 if test $ol_link_sasl = no ; then
1780 if test $ol_with_cyrus_sasl != auto ; then
1781 AC_MSG_ERROR([Could not locate Cyrus SASL])
1783 AC_MSG_WARN([Could not locate Cyrus SASL])
1784 AC_MSG_WARN([SASL authentication not supported!])
1785 if test $ol_link_tls = no ; then
1786 AC_MSG_WARN([Strong authentication not supported!])
1791 AC_MSG_WARN([SASL authentication not supported!])
1792 if test $ol_link_tls = no ; then
1793 AC_MSG_WARN([Strong authentication not supported!])
1797 dnl ----------------------------------------------------------------
1798 dnl Check for entropy sources
1799 if test $cross_compiling != yes ; then
1801 if test -r /dev/urandom ; then
1803 elif test -r /idev/urandom ; then
1804 dev="/idev/urandom";
1805 elif test -r /dev/srandom ; then
1807 elif test -r /dev/random ; then
1809 elif test -r /idev/random ; then
1813 if test $dev != no ; then
1814 AC_DEFINE_UNQUOTED(URANDOM_DEVICE,"$dev",[set to urandom device])
1818 dnl ----------------------------------------------------------------
1820 dnl Check for fetch URL support
1821 dnl should be extended to support other fetch URL APIs
1824 if test $ol_with_fetch != no ; then
1827 if test $ol_cv_lib_fetch != no ; then
1828 LDIF_LIBS="$LDIF_LIBS $ol_link_fetch"
1829 ol_link_fetch=freebsd
1831 elif test $ol_with_fetch != auto ; then
1832 AC_MSG_ERROR(no suitable API for --with-fetch=$ol_with_fetch)
1836 dnl ----------------------------------------------------------------
1838 dnl Check for GNU readline
1841 if test $ol_with_readline != no ; then
1842 AC_CHECK_HEADERS(readline/readline.h readline/history.h)
1844 if test $ac_cv_header_readline_readline_h = yes ; then
1846 LIBS="$TERMCAP_LIBS $LIBS"
1847 AC_CHECK_LIB(readline, readline,
1848 [have_readline=yes], [have_readline=no])
1851 if test $have_readline = yes ; then
1852 ol_with_readline=found
1853 ol_link_readline=yes
1855 READLINE_LIBS="-lreadline"
1860 if test $ol_link_readline = yes ; then
1861 AC_DEFINE(HAVE_READLINE, 1, [define if you have -lreadline])
1865 dnl ----------------------------------------------------------------
1866 dnl FreeBSD (and others) have crypt(3) in -lcrypt
1867 if test $ol_enable_crypt != no ; then
1868 AC_CHECK_FUNC(crypt, [have_crypt=yes], [
1869 AC_CHECK_LIB(crypt, crypt, [LUTIL_LIBS="$LUTIL_LIBS -lcrypt"
1870 have_crypt=yes], [have_crypt=no])])
1872 if test $have_crypt = yes ; then
1873 AC_DEFINE(HAVE_CRYPT,1, [define if crypt(3) is available])
1875 AC_MSG_WARN(could not find crypt)
1876 if test $ol_enable_crypt = yes ; then
1877 AC_MSG_ERROR(could not find crypt, select appropriate options or disable)
1880 AC_MSG_WARN(disabling crypt support)
1885 dnl ----------------------------------------------------------------
1886 dnl FreeBSD (and others) have setproctitle(3) in -lutil
1887 if test $ol_enable_proctitle != no ; then
1888 AC_CHECK_FUNC(setproctitle, [have_setproctitle=yes], [
1889 AC_CHECK_LIB(util, setproctitle,
1890 [have_setproctitle=yes
1891 LUTIL_LIBS="$LUTIL_LIBS -lutil"],
1892 [have_setproctitle=no
1893 LIBOBJS="$LIBOBJS setproctitle.o"
1894 LIBSRCS="$LIBSRCS setproctitle.c"])])
1896 if test $have_setproctitle = yes ; then
1897 AC_DEFINE(HAVE_SETPROCTITLE,1,
1898 [define if setproctitle(3) is available])
1902 dnl ----------------------------------------------------------------
1903 dnl Checks for typedefs, structures, and compiler characteristics.
1911 AC_CHECK_TYPE(ssize_t, [signed int])
1912 AC_CHECK_TYPE(caddr_t, [char *])
1915 AC_STRUCT_ST_BLKSIZE
1919 OL_TYPE_SIG_ATOMIC_T
1921 dnl AC_TYPE_GETGROUPS
1923 OL_STRUCT_PASSWD_PW_GECOS
1924 OL_STRUCT_PASSWD_PW_PASSWD
1930 if test $cross_compiling = yes ; then
1931 AC_DEFINE(CROSS_COMPILING, 1, [define if cross compiling])
1936 AC_COMPILE_CHECK_SIZEOF(short)
1937 AC_COMPILE_CHECK_SIZEOF(int)
1938 AC_COMPILE_CHECK_SIZEOF(long)
1940 if test "$ac_cv_sizeof_int" -lt 4 ; then
1941 AC_MSG_WARN([OpenLDAP requires 'int' to be 32 bits or greater.])
1943 AC_DEFINE(LBER_INT_T,long)
1945 AC_DEFINE(LBER_INT_T,int)
1948 AC_DEFINE(LBER_LEN_T,long)
1949 AC_DEFINE(LBER_SOCKET_T,int)
1950 AC_DEFINE(LBER_TAG_T,long)
1952 dnl ----------------------------------------------------------------
1953 dnl Checks for library functions.
1955 dnl AM_FUNC_MKTIME dnl checks for sys/time.h and unistd.h
1961 dnl Check for NT specific routines
1962 AC_CHECK_FUNC(_spawnlp, AC_DEFINE(HAVE_SPAWNLP,1,[if you have spawnlp()]))
1964 AC_CHECK_FUNC(_snprintf, [ac_cv_func_snprintf=yes
1965 AC_DEFINE(snprintf, _snprintf, [define to snprintf routine])
1968 AC_CHECK_FUNC(_vsnprintf, [ac_cv_func_vsnprintf=yes
1969 AC_DEFINE(vsnprintf, _vsnprintf, [define to vsnprintf routine])
1974 if test $ac_cv_func_vprintf = yes ; then
1975 dnl check for vsnprintf
1976 AC_CHECK_FUNCS(vsnprintf vsprintf)
2031 dnl We actually may need to replace more than this.
2032 AC_REPLACE_FUNCS(getopt tempnam)
2034 if test "$ac_cv_func_getopt" != yes; then
2035 LIBSRCS="$LIBSRCS getopt.c"
2038 if test "$ac_cv_func_tempnam" != yes; then
2039 LIBSRCS="$LIBSRCS tempnam.c"
2042 dnl ----------------------------------------------------------------
2043 # Check Configuration
2046 dnl ----------------------------------------------------------------
2047 dnl Sort out defines
2049 if test "$ol_enable_debug" != no ; then
2050 AC_DEFINE(LDAP_DEBUG,1,
2051 [define this to add debugging code])
2053 if test "$ol_enable_syslog" = yes ; then
2054 AC_DEFINE(LDAP_SYSLOG,1,
2055 [define this to add syslog code])
2057 if test "$ol_enable_libui" = yes ; then
2058 AC_DEFINE(LDAP_LIBUI,1,
2059 [define this for LDAP User Interface support])
2061 if test "$ol_enable_cache" = no ; then
2062 AC_DEFINE(LDAP_NOCACHE,1,
2063 [define this to remove -lldap cache support])
2065 if test "$ol_link_kbind" != no ; then
2066 AC_DEFINE(LDAP_API_FEATURE_X_OPENLDAP_V2_KBIND,LDAP_VENDOR_VERSION)
2068 if test "$ol_enable_proctitle" != no ; then
2069 AC_DEFINE(LDAP_PROCTITLE,1,
2070 [define this for LDAP process title support])
2072 if test "$ol_enable_referrals" != no ; then
2073 AC_DEFINE(LDAP_API_FEATURE_X_OPENLDAP_V2_REFERRALS,LDAP_VENDOR_VERSION)
2075 if test "$ol_enable_local" != no; then
2076 AC_DEFINE(LDAP_PF_LOCAL,1,[define to support PF_LOCAL])
2078 if test "$ol_enable_ipv6" != no; then
2079 AC_DEFINE(LDAP_PF_INET6,1,[define to support PF_INET6])
2081 if test "$ol_enable_cleartext" != no ; then
2082 AC_DEFINE(SLAPD_CLEARTEXT,1,[define to support cleartext passwords])
2084 if test "$ol_enable_crypt" != no ; then
2085 AC_DEFINE(SLAPD_CRYPT,1,[define to support crypt(3) passwords])
2087 if test "$ol_link_kpasswd" != no ; then
2088 AC_DEFINE(SLAPD_KPASSWD,1,[define to support Kerberos passwords])
2090 if test "$ol_link_spasswd" != no ; then
2091 AC_DEFINE(SLAPD_SPASSWD,1,[define to support SASL passwords])
2093 if test "$ol_enable_multimaster" != no ; then
2094 AC_DEFINE(SLAPD_MULTIMASTER,1,[define to support multimaster replication])
2096 if test "$ol_enable_phonetic" != no ; then
2097 AC_DEFINE(SLAPD_PHONETIC,1,[define to support phonetic])
2099 if test "$ol_enable_rlookups" != no ; then
2100 AC_DEFINE(SLAPD_RLOOKUPS,1,[define to support reverse lookups])
2102 if test "$ol_enable_aci" != no ; then
2103 AC_DEFINE(SLAPD_ACI_ENABLED,1,[define to support per-object ACIs])
2106 if test "$ol_link_modules" != no ; then
2107 AC_DEFINE(SLAPD_MODULES,1,[define to support modules])
2109 SLAPD_MODULES_LDFLAGS="-dlopen self"
2112 if test "$ol_link_dnssrv" != no ; then
2113 AC_DEFINE(SLAPD_DNSSRV,1,[define to support DNS SRV backend])
2116 if test "$ol_with_dnssrv_module" != static ; then
2117 AC_DEFINE(SLAPD_DNSSRV_DYNAMIC,1,
2118 [define to support dynamic DNS SRV backend])
2120 BUILD_DNSSRV_DYNAMIC=shared
2121 SLAPD_MODULES_LIST="$SLAPD_MODULES_LIST -dlopen \$(SLAP_DIR)back-dnssrv/back_dnssrv.la"
2125 if test "$ol_enable_ldap" != no ; then
2126 AC_DEFINE(SLAPD_LDAP,1,[define to support LDAP backend])
2129 if test "$ol_with_ldap_module" != static ; then
2130 AC_DEFINE(SLAPD_LDAP_DYNAMIC,1,
2131 [define to support dynamic LDAP backend])
2133 BUILD_LDAP_DYNAMIC=shared
2134 SLAPD_MODULES_LIST="$SLAPD_MODULES_LIST -dlopen \$(SLAP_DIR)back-ldap/back_ldap.la"
2138 if test "$ol_link_ldbm" != no ; then
2139 AC_DEFINE(SLAPD_LDBM,1,[define to support LDBM backend])
2142 if test "$ol_with_ldbm_module" != static ; then
2143 AC_DEFINE(SLAPD_LDBM_DYNAMIC,1,
2144 [define to support dynamic LDBM backend])
2146 BUILD_LDBM_DYNAMIC=shared
2147 SLAPD_MODULES_LIST="$SLAPD_MODULES_LIST -dlopen \$(SLAP_DIR)back-ldbm/back_ldbm.la"
2151 if test "$ol_enable_passwd" != no ; then
2152 AC_DEFINE(SLAPD_PASSWD,1,[define to support PASSWD backend])
2155 if test "$ol_with_passwd_module" != static ; then
2156 AC_DEFINE(SLAPD_PASSWD_DYNAMIC,1,
2157 [define to support dynamic PASSWD backend])
2159 BUILD_PASSWD_DYNAMIC=shared
2160 SLAPD_MODULES_LIST="$SLAPD_MODULES_LIST -dlopen \$(SLAP_DIR)back-passwd/back_passwd.la"
2164 if test "$ol_enable_shell" != no ; then
2165 AC_DEFINE(SLAPD_SHELL,1,[define to support SHELL backend])
2168 if test "$ol_with_shell_module" != static ; then
2169 AC_DEFINE(SLAPD_SHELL_DYNAMIC,1,
2170 [define to support dynamic SHELL backend])
2172 BUILD_SHELL_DYNAMIC=shared
2173 SLAPD_MODULES_LIST="$SLAPD_MODULES_LIST -dlopen \$(SLAP_DIR)back-shell/back_shell.la"
2177 if test "$ol_enable_sql" != no ; then
2178 AC_DEFINE(SLAPD_SQL,1,[define to support SQL backend])
2181 if test "$ol_with_sql_module" != static; then
2182 AC_DEFINE(SLAPD_SQL_DYNAMIC,1,
2183 [define to support dynamic SQL backend])
2185 BUILD_SQL_DYNAMIC=shared
2186 SLAPD_MODULES_LIST="$SLAPD_MODULES_LIST -dlopen \$(SLAP_DIR)back-sql/back_sql.la"
2190 if test "$ol_enable_slurpd" != no -a "$ol_link_threads" != no -a \
2191 $BUILD_SLAPD = yes ; then
2195 dnl ----------------------------------------------------------------
2197 if test "$LINK_BINS_DYNAMIC" = yes; then
2199 LT_LIB_LINKAGE=shared
2202 LT_LIB_LINKAGE=static
2205 if test "$ac_cv_mingw32" = yes ; then
2216 AC_SUBST(LIB_LINKAGE)
2217 AC_SUBST(LT_LIB_LINKAGE)
2220 AC_SUBST(BUILD_SLAPD)
2221 AC_SUBST(BUILD_DNSSRV)
2222 AC_SUBST(BUILD_LDAP)
2223 AC_SUBST(BUILD_LDBM)
2224 AC_SUBST(BUILD_PASSWD)
2225 AC_SUBST(BUILD_SHELL)
2227 AC_SUBST(BUILD_DNSSRV_DYNAMIC)
2228 AC_SUBST(BUILD_LDAP_DYNAMIC)
2229 AC_SUBST(BUILD_LDBM_DYNAMIC)
2230 AC_SUBST(BUILD_PASSWD_DYNAMIC)
2231 AC_SUBST(BUILD_SHELL_DYNAMIC)
2232 AC_SUBST(BUILD_SQL_DYNAMIC)
2233 AC_SUBST(BUILD_SLURPD)
2237 AC_SUBST(SLAPD_LIBS)
2238 AC_SUBST(SLURPD_LIBS)
2240 AC_SUBST(LTHREAD_LIBS)
2241 AC_SUBST(LUTIL_LIBS)
2243 AC_SUBST(LINK_BINS_DYNAMIC)
2245 AC_SUBST(SLAPD_MODULES_CPPFLAGS)
2246 AC_SUBST(SLAPD_MODULES_LDFLAGS)
2247 AC_SUBST(SLAPD_MODULES_LIST)
2251 AC_SUBST(READLINE_LIBS)
2253 AC_SUBST(TERMCAP_LIBS)
2255 AC_SUBST(MODULES_LIBS)
2258 AC_SUBST(SLAPD_SQL_LDFLAGS)
2259 AC_SUBST(SLAPD_SQL_LIBS)
2260 AC_SUBST(SLAPD_SQL_INCLUDES)
2262 dnl ----------------------------------------------------------------
2267 Makefile:build/top.mk:Makefile.in:build/dir.mk \
2268 doc/Makefile:build/top.mk:doc/Makefile.in:build/dir.mk \
2269 doc/man/Makefile:build/top.mk:doc/man/Makefile.in:build/dir.mk \
2270 doc/man/man1/Makefile:build/top.mk:doc/man/man1/Makefile.in:build/man.mk \
2271 doc/man/man3/Makefile:build/top.mk:doc/man/man3/Makefile.in:build/man.mk \
2272 doc/man/man5/Makefile:build/top.mk:doc/man/man5/Makefile.in:build/man.mk \
2273 doc/man/man8/Makefile:build/top.mk:doc/man/man8/Makefile.in:build/man.mk \
2274 clients/Makefile:build/top.mk:clients/Makefile.in:build/dir.mk \
2275 clients/finger/Makefile:build/top.mk:clients/finger/Makefile.in:build/rules.mk \
2276 clients/fax500/Makefile:build/top.mk:clients/fax500/Makefile.in:build/rules.mk \
2277 clients/gopher/Makefile:build/top.mk:clients/gopher/Makefile.in:build/rules.mk \
2278 clients/mail500/Makefile:build/top.mk:clients/mail500/Makefile.in:build/rules.mk \
2279 clients/rcpt500/Makefile:build/top.mk:clients/rcpt500/Makefile.in:build/rules.mk \
2280 clients/ud/Makefile:build/top.mk:clients/ud/Makefile.in:build/rules.mk \
2281 clients/maildap/Makefile:build/top.mk:clients/maildap/Makefile.in:build/rules.mk \
2282 clients/tools/Makefile:build/top.mk:clients/tools/Makefile.in:build/rules.mk \
2283 include/Makefile:build/top.mk:include/Makefile.in \
2284 libraries/Makefile:build/top.mk:libraries/Makefile.in:build/dir.mk \
2285 libraries/libavl/Makefile:build/top.mk:libraries/libavl/Makefile.in:build/lib.mk:build/lib-static.mk \
2286 libraries/liblber/Makefile:build/top.mk:libraries/liblber/Makefile.in:build/lib.mk:build/lib-shared.mk \
2287 libraries/libldap/Makefile:build/top.mk:libraries/libldap/Makefile.in:build/lib.mk:build/lib-shared.mk \
2288 libraries/libldap_r/Makefile:build/top.mk:libraries/libldap_r/Makefile.in:build/lib.mk:build/lib-shared.mk \
2289 libraries/libldbm/Makefile:build/top.mk:libraries/libldbm/Makefile.in:build/lib.mk:build/lib-static.mk \
2290 libraries/libldif/Makefile:build/top.mk:libraries/libldif/Makefile.in:build/lib.mk:build/lib-static.mk \
2291 libraries/liblunicode/Makefile:build/top.mk:libraries/liblunicode/Makefile.in:build/lib.mk:build/lib-static.mk \
2292 libraries/liblutil/Makefile:build/top.mk:libraries/liblutil/Makefile.in:build/lib.mk:build/lib-static.mk \
2293 servers/Makefile:build/top.mk:servers/Makefile.in:build/dir.mk \
2294 servers/slapd/Makefile:build/top.mk:servers/slapd/Makefile.in:build/srv.mk \
2295 servers/slapd/back-dnssrv/Makefile:build/top.mk:servers/slapd/back-dnssrv/Makefile.in:build/mod.mk \
2296 servers/slapd/back-ldap/Makefile:build/top.mk:servers/slapd/back-ldap/Makefile.in:build/mod.mk \
2297 servers/slapd/back-ldbm/Makefile:build/top.mk:servers/slapd/back-ldbm/Makefile.in:build/mod.mk \
2298 servers/slapd/back-passwd/Makefile:build/top.mk:servers/slapd/back-passwd/Makefile.in:build/mod.mk \
2299 servers/slapd/back-shell/Makefile:build/top.mk:servers/slapd/back-shell/Makefile.in:build/mod.mk \
2300 servers/slapd/back-sql/Makefile:build/top.mk:servers/slapd/back-sql/Makefile.in:build/mod.mk \
2301 servers/slapd/shell-backends/Makefile:build/top.mk:servers/slapd/shell-backends/Makefile.in:build/srv.mk \
2302 servers/slapd/tools/Makefile:build/top.mk:servers/slapd/tools/Makefile.in \
2303 servers/slurpd/Makefile:build/top.mk:servers/slurpd/Makefile.in:build/srv.mk \
2304 tests/Makefile:build/top.mk:tests/Makefile.in:build/dir.mk \
2305 tests/progs/Makefile:build/top.mk:tests/progs/Makefile.in:build/rules.mk \
2306 contrib/Makefile:build/top.mk:contrib/Makefile.in:build/dir.mk \
2307 contrib/saucer/Makefile:build/top.mk:contrib/saucer/Makefile.in:build/rules.mk \
2308 contrib/web_ldap/Makefile:build/top.mk:contrib/web_ldap/Makefile.in:build/rules.mk \
2311 echo Please \"make depend\" to build dependencies