]> git.sur5r.net Git - openldap/blob - configure.in
Import unprotected strtok fix from -devel. Yes, you have to edit 8 files
[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 Configure.in for OpenLDAP
11 AC_INIT(include/ldap.h)dnl
12 AC_CONFIG_AUX_DIR(build)dnl
13 AM_INIT_AUTOMAKE(OpenLDAP,[1.1-beta], [no ac_define])dnl
14
15 dnl Do not use AutoConf 2.12; it produces a configuration script
16 dnl that causes an "internal 2K buffer" error on HPUX when run
17 dnl with /bin/sh.  Autoconf 2.10 seems to be okay.
18 AC_PREREQ(2.10)dnl Required Autoconf version
19
20 AC_CONFIG_HEADER(include/portable.h)dnl
21
22 dnl
23 dnl Start Args
24 AC_MSG_CHECKING(configure arguments)
25 AC_PREFIX_DEFAULT(/usr/local)
26
27 top_builddir=`pwd`
28 AC_SUBST(top_builddir)dnl
29
30 ldap_subdir="openldap"
31
32 AC_ARG_WITH(subdir, [  --with-subdir=DIR change default subdirectory used for installs], [
33         if test "$withval" = "no"; then
34                 ldap_subdir=""
35         elif test "$withval" != "yes"; then
36                 ldap_subdir="$withval"
37         fi
38 ])dnl
39
40 AC_SUBST(ldap_subdir)dnl
41
42 OL_ARG_ENABLE(debug,[  --enable-debug   enable debugging], yes)dnl
43 dnl OL_ARG_ENABLE(syslog,[  --enable-syslog     enable syslog support], auto)dnl
44 OL_ARG_ENABLE(proctitle,[  --enable-proctitle   enable proctitle support], yes)dnl
45 OL_ARG_ENABLE(libui,[  --enable-libui   enable library user interface], yes)dnl
46 OL_ARG_ENABLE(cache,[  --enable-cache   enable caching], yes)dnl
47 OL_ARG_ENABLE(dns,[  --enable-dns               enable dns support], no)dnl
48 OL_ARG_ENABLE(referrals,[  --enable-referrals   enable referrals], yes)dnl
49 OL_ARG_ENABLE(cldap,[  --enable-cldap   enable connectionless ldap], no)dnl
50 OL_ARG_ENABLE(x_compile,[  --enable-x-compile   enable cross compiling],
51         no, [yes no])dnl
52
53 dnl General "with" options
54 OL_ARG_WITH(kerberos,[  --with-kerberos use Kerberos],
55         auto, [auto k5 k4 afs yes no])
56 OL_ARG_WITH(threads,[  --with-threads   use threads],
57         auto, [auto posix mach lwp yes no manual] )
58 OL_ARG_WITH(yielding_select,[  --with-yielding-select   with implicitly yielding select],
59         auto, [auto yes no manual] )
60
61 dnl Server options
62
63 dnl LDAPD OPTIONS
64 AC_ARG_WITH(xxldapdoptions,[LDAPD Options:])
65 OL_ARG_ENABLE(ldapd,[  --enable-ldapd   enable building ldapd], no)dnl
66
67 dnl SLAPD OPTIONS
68 AC_ARG_WITH(xxslapdoptions,[SLAPD Options:])
69 OL_ARG_ENABLE(slapd,[  --enable-slapd   enable building slapd], yes)dnl
70 OL_ARG_ENABLE(aclgroups,[    --enable-aclgroups enable ACL group support], auto)dnl
71 OL_ARG_ENABLE(cleartext,[    --enable-cleartext enable cleartext passwords], yes)dnl
72 OL_ARG_ENABLE(crypt,[    --enable-crypt enable crypt(3) passwords], auto)dnl
73 OL_ARG_ENABLE(wrappers,[    --enable-wrappers   enable tcp wrapper support], no)dnl
74 OL_ARG_ENABLE(phonetic,[    --enable-phonetic   enable phonetic/soundex], no)dnl
75 OL_ARG_ENABLE(rlookups,[    --enable-rlookups   enable reverse lookups], auto)dnl
76
77 dnl SLAPD Backend options
78 OL_ARG_ENABLE(ldbm,[    --enable-ldbm   enable ldbm backend], yes)dnl
79 OL_ARG_WITH(ldbm_api,[      --with-ldbm-api     use LDBM API], auto,
80         [auto db2 db gdbm ndbm manual])
81 OL_ARG_WITH(ldbm_type,[      --with-ldbm-type   use LDBM type], auto,
82         [auto btree hash])
83
84 OL_ARG_ENABLE(passwd,[    --enable-passwd       enable passwd backend], no)dnl
85 OL_ARG_ENABLE(shell,[    --enable-shell enable shell backend], no)dnl
86
87 dnl SLURPD OPTIONS
88 AC_ARG_WITH(xxslurpdoptions,[SLURPD Options:])
89 OL_ARG_ENABLE(slurpd,[  --enable-slurpd enable building slurpd], auto)dnl
90
91 AC_ARG_WITH(xxliboptions,[Library Generation & Linking Options])
92 AM_ENABLE_STATIC
93 AM_DISABLE_SHARED
94 dnl AM_ENABLE_SHARED
95
96 dnl General "enable" options
97 # validate options
98 if test $ol_enable_referrals = no ; then
99         if test $ol_enable_dns = yes ; then
100                 AC_MSG_WARN([dns disabled, ignoring --enable-dns argument])
101         fi
102         ol_enable_dns=no
103 fi
104
105 if test $ol_enable_slapd = no ; then
106         dnl SLAPD was specificallly disabled
107         if test $ol_enable_ldbm = yes ; then
108                 AC_MSG_WARN([slapd disabled, ignoring --enable_ldbm argument])
109         fi
110         if test $ol_enable_passwd = yes ; then
111                 AC_MSG_WARN([slapd disabled, ignoring --enable_passwd argument])
112         fi
113         if test $ol_enable_shell = yes ; then
114                 AC_MSG_WARN([slapd disabled, ignoring --enable_shell argument])
115         fi
116         if test $ol_enable_aclgroups = yes ; then
117                 AC_MSG_WARN([slapd disabled, ignoring --enable_aclgroups argument])
118         fi
119         if test $ol_enable_wrappers = yes ; then
120                 AC_MSG_WARN([slapd disabled, ignoring --enable_wrappers argument])
121         fi
122         if test $ol_enable_phonetic = yes ; then
123                 AC_MSG_WARN([slapd disabled, ignoring --enable_phonetic argument])
124         fi
125         if test $ol_enable_rlookups = yes ; then
126                 AC_MSG_WARN([slapd disabled, ignoring --enable_rlookups argument])
127         fi
128         if test $ol_with_ldbm_api != auto ; then
129                 AC_MSG_WARN([slapd disabled, ignoring --with_ldbm_api argument])
130         fi
131         if test $ol_with_ldbm_type != auto ; then
132                 AC_MSG_WARN([slapd disabled, ignoring --with_ldbm_type argument])
133         fi
134         if test $ol_enable_slurpd = yes ; then
135                 AC_MSG_ERROR([slurpd requires slapd])
136         fi
137
138         # force settings to no
139         ol_enable_ldbm=no
140         ol_enable_shell=no
141         ol_enable_passwd=no
142         ol_enable_aclgroups=no
143         ol_enable_wrappers=no
144         ol_enable_phonetic=no
145         ol_enable_rlookups=no
146         ol_with_ldbm_api=no
147         ol_with_ldbm_type=no
148         ol_enable_slurpd=no
149
150 elif test $ol_enable_ldbm = no ; then
151         dnl SLAPD without LDBM
152
153         if test $ol_with_ldbm_api != auto ; then
154                 AC_MSG_WARN([LDBM disabled, ignoring --with_ldbm_api argument])
155         fi
156
157         if test $ol_with_ldbm_type != auto ; then
158                 AC_MSG_WARN([LDBM disabled, ignoring --with_ldbm_type argument])
159         fi
160
161         if test $ol_enable_passwd = no -a $ol_enable_shell = no ; then
162                 AC_MSG_ERROR([slapd requires a backend])
163         fi
164
165         ol_with_ldbm_api=no
166         ol_with_ldbm_type=no
167
168 else
169         dnl SLAPD with LDBM
170
171         if test $ol_with_ldbm_api = gdbm -a \
172                 $ol_with_ldbm_type = btree ; then
173                 AC_MSG_ERROR([GDBM only supports LDBM type hash])
174         fi
175         if test $ol_with_ldbm_api = ndbm -a \
176                 $ol_with_ldbm_type = btree ; then
177                 AC_MSG_ERROR([NDBM only supports LDBM type hash])
178         fi
179 fi
180
181 if test $ol_enable_slurpd = yes ; then
182         dnl SLURPD was specifically enabled
183         if test $ol_with_threads = no ; then
184                 AC_MSG_ERROR([slurpd requires threads])
185         fi
186 fi
187
188 AC_MSG_RESULT(done)
189
190 AC_CANONICAL_HOST
191
192 ## Initialize vars
193 LDAP_LIBS=
194 LDBM_LIBS=
195 LTHREAD_LIBS=
196 LUTIL_LIBS=
197
198 LDAPD_LIBS=
199 SLAPD_LIBS=
200 SLURPD_LIBS=
201
202 BUILD_LDAPD=no
203 BUILD_SLAPD=no
204 BUILD_SLURPD=no
205
206 BUILD_LDBM=no
207 BUILD_PASSWD=no
208 BUILD_SHELL=no
209 BUILD_THREAD=no
210
211 KRB_LIBS=
212 TERMCAP_LIBS=
213
214 dnl ----------------------------------------------------------------
215 dnl Checks for programs
216
217 AC_PROG_INSTALL
218 AM_PROG_LIBTOOL
219 dnl AC_PROG_MAKE_SET
220
221 AC_PATH_PROG(SENDMAIL, sendmail, /usr/lib/sendmail,
222         $PATH:/usr/libexec:/usr/lib:/usr/sbin:/usr/etc:/etc)
223 AC_PATH_PROG(EDITOR, vi, /usr/ucb/vi, $PATH:/usr/ucb)
224 AC_PATH_PROG(FINGER, finger, /usr/ucb/finger, $PATH:/usr/ucb)
225
226 dnl Checks the compiler and UNIX Variants
227
228 if test $cross_compiling = yes -a $ol_enable_x_compile = yes; then
229         AC_MSG_WARN([cross compiling....  some functionality will be removed.])
230
231 elif test $cross_compiling = no -a $ol_enable_x_compile = yes; then
232         AC_MSG_WARN([programs compiled here do run here...])
233         AC_MSG_ERROR([  if not cross compiling, use --disable-x-compile.])
234
235 elif test $cross_compiling = yes -a $ol_enable_x_compile = no; then
236         AC_MSG_WARN([programs compiled here do not run here...])
237         AC_MSG_ERROR([  if cross compiling,  add --enable-x-compile.])
238 fi
239
240 AC_PROG_CPP
241
242 AC_AIX
243 AC_ISC_POSIX
244 AC_MINIX
245
246 dnl OpenLDAP requires STDC features
247 AM_PROG_CC_STDC
248 if test "X${am_cv_prog_cc_stdc}" = "Xno" ; then
249         AC_MSG_ERROR([OpenLDAP requires compiler to support STDC prototypes.])
250 fi
251
252 dnl AM_C_PROTOTYPES
253
254 dnl Checks for libraries
255
256 dnl Find socket()
257 dnl Likely combinations:
258 dnl             -lsocket [ -lnsl_s | -lnsl ]
259 dnl             -linet
260
261 AC_CHECK_FUNC(socket, [have_socket=yes], [      
262 dnl
263 dnl hopefully we won't include too many libraries
264 dnl
265         AC_CHECK_LIB(socket, main)
266         AC_CHECK_LIB(net, main)
267         AC_CHECK_LIB(nsl_s, main)
268         AC_CHECK_LIB(nsl, main)
269         AC_CHECK_LIB(inet, socket)
270         AC_CHECK_LIB(gen, main)
271 ])
272
273 dnl Check for resolv
274 AC_CHECK_LIB(resolv, res_search)
275
276 dnl HP-UX requires -lV3
277 AC_CHECK_LIB(V3, sigset)
278
279 # ISODE tests
280 ol_link_isode=no
281 if test $ol_enable_ldapd != no ; then
282         dnl look for ISODE libraries
283         AC_CHECK_LIB(xtpp, main, [
284                 ol_link_isode=yes
285                 AC_DEFINE(HAVE_XTPP,1)
286                 LDAPD_LIBS="$LDAPD_LIBS -lxtpp -lxtdsap -lxtisode -losi"
287                 ],:,[-lxtdsap -lxtisode -losi])
288         AC_CHECK_LIB(dsap, main, [
289                 ol_link_isode=yes
290                 AC_DEFINE(HAVE_DSAP,1)
291                 LDAPD_LIBS="$LDAPD_LIBS -ldsap"
292                 ],:,[-lisode])
293         AC_CHECK_LIB(isode, main, [
294                 ol_link_isode=yes
295                 AC_DEFINE(HAVE_ISODE,1)
296                 LDAPD_LIBS="$LDAPD_LIBS -lisode"
297                 ],:)
298 fi
299
300 if test $ol_link_isode != no; then
301         AC_CHECK_LIB(pp, main, [
302                 AC_DEFINE(HAVE_PP,1)
303                 LDAPD_LIBS="-lpp $LDAPD_LIBS"
304                 ],:)
305
306         AC_PATH_PROG(PEPSY, pepsy)
307 fi
308
309 dnl
310 dnl check for kerberos
311 dnl
312 ol_link_kerberos=no
313
314 if test $ol_with_kerberos = auto -o $ol_with_kerberos = k5 ; then
315         AC_CHECK_HEADERS(kerberosIV/krb.h kerberosIV/des.h)
316
317         if test $ac_cv_header_kerberosIV_krb_h = yes ; then
318                 AC_CHECK_LIB(krb4, main, [have_k5=yes], [have_k5=no],
319                         [-lkrb5 -ldes425])
320
321                 if test $have_k5 = yes ; then
322                         ol_with_kerberos=found
323                         ol_link_kerberos=yes
324
325                         AC_DEFINE(HAVE_KERBEROS)
326                         KRB_LIBS="-lkrb4 -lkrb5 -ldes425"
327                 fi
328         fi
329 fi
330
331 if test $ol_with_kerberos = auto -o $ol_with_kerberos = k4 ; then
332         AC_CHECK_HEADERS(krb.h des.h)
333
334         if test $ac_cv_header_krb_h = yes ; then
335                 AC_CHECK_LIB(krb, main, [have_k4=yes], [have_k4=no], [-ldes])
336
337                 if test $have_k4 = yes ; then
338                         ol_with_kerberos=found
339                         ol_link_kerberos=yes
340
341                         AC_DEFINE(HAVE_KERBEROS)
342                         KRB_LIBS="-lkrb -ldes"
343                 fi
344         fi
345 fi
346
347 dnl     if test $ol_link_kerberos = yes ; then
348 dnl             save_LIBS=$LIBS
349 dnl             LIBS="$KRB_LIBS $LIBS"
350 dnl             AC_CHECK_FUNCS(des_string_to_key)
351 dnl             LIBS=$save_LIBS
352 dnl fi
353
354 ol_link_threads=no
355 if test $ol_with_threads = auto -o $ol_with_threads = yes \
356         -o $ol_with_threads = posix ; then
357
358         AC_CHECK_HEADERS(pthread.h sched.h)
359
360         if test $ac_cv_header_pthread_h = yes ; then
361                 OL_POSIX_THREAD_VERSION
362
363                 if test $ol_cv_pthread_version = final ; then
364                         AC_DEFINE(HAVE_PTHREADS_FINAL)
365                 elif test $ol_cv_pthread_version = draft4 ; then
366                         AC_DEFINE(HAVE_PTHREADS_D4)
367                 else
368                         AC_MSG_ERROR([unknown pthread version])
369                 fi
370
371                 # consider threads found
372                 ol_with_threads=found
373
374                 OL_LINUX_THREADS
375
376                 if test $ol_cv_linux_threads = yes ; then
377                         AC_DEFINE(HAVE_LINUX_THREADS,1)
378                 fi
379
380                 dnl Now the hard part, how to link
381
382                 dnl Check for pthread support in current $LIBS
383                 AC_CHECK_FUNC(pthread_create,[ol_link_threads=yes])
384
385                 if test $ol_link_threads = no ; then
386                         dnl try -pthread
387                         AC_CACHE_CHECK([for pthread_create with -pthread],
388                                 [ol_cv_pthread_flag], [
389                                 dnl save the flags
390                                 save_LIBS="$LIBS"
391                                 LIBS="-pthread $LIBS"
392                                 AC_TRY_LINK([char pthread();],[
393                                         pthread_create();
394                                         ], ol_cv_pthread_flag=yes, ol_cv_pthread_flag=no)
395                                 dnl restore the LIBS
396                                 LIBS="$save_LIBS"
397                         ])
398
399                         if test $ol_cv_pthread_flag = yes ; then
400                                 LTHREAD_LIBS="$LTHREAD_LIBS -pthread"
401                                 ol_link_threads=posix
402                         fi
403                 fi
404
405                 if test $ol_link_threads = no ; then
406                         dnl try -pthreads
407                         AC_CACHE_CHECK([for pthread_create with -pthreads],
408                                 [ol_cv_pthreads_flag], [
409                                 dnl save the flags
410                                 save_LIBS="$LIBS"
411                                 LIBS="-pthreads $LIBS"
412                                 AC_TRY_LINK([char pthread();],[
413                                         pthread_create();
414                                         ], ol_cv_pthreads_flag=yes, ol_cv_pthreads_flag=no)
415                                 dnl restore the LIBS
416                                 LIBS="$save_LIBS"
417                         ])
418
419                         if test $ol_cv_pthreads_flag = yes ; then
420                                 LTHREAD_LIBS="$LTHREAD_LIBS -pthreads"
421                                 ol_link_threads=posix
422                         fi
423                 fi
424
425                 if test $ol_link_threads = no ; then
426                         dnl try -thread
427                         AC_CACHE_CHECK([for pthread_create with -thread],
428                                 [ol_cv_thread_flag], [
429                                 dnl save the flags
430                                 save_LIBS="$LIBS"
431                                 LIBS="-thread $LIBS"
432                                 AC_TRY_LINK([char pthread();],[
433                                         pthread_create();
434                                         ], ol_cv_thread_flag=yes, ol_cv_thread_flag=no)
435                                 dnl restore the LIBS
436                                 LIBS="$save_LIBS"
437                         ])
438
439                         if test $ol_cv_thread_flag = yes ; then
440                                 LTHREAD_LIBS="$LTHREAD_LIBS -thread"
441                                 ol_link_threads=posix
442                         fi
443                 fi
444
445                 if test $ol_link_threads = no ; then
446                         dnl try DEC Threads -lpthread -lexc
447                         save_LIBS="$LIBS"
448                         AC_CHECK_LIB(pthread, pthread_join, [
449                                 ol_link_threads=posix
450                                 LTHREAD_LIBS="$LTHREAD_LIBS -lpthread -lexc"
451                                 if test $ol_with_yielding_select = auto ; then
452                                         ol_with_yielding_select=yes
453                                 fi
454                                 ],,[-lexc])
455                         LIBS="$save_LIBS"
456                 fi
457
458                 if test $ol_link_threads = no ; then
459                         dnl try DEC Threads -lpthreads -lmach -lexc -lc_r
460                         save_LIBS="$LIBS"
461                         AC_CHECK_LIB(pthreads, pthread_join, [
462                                 ol_link_threads=posix
463                                 LTHREAD_LIBS="$LTHREAD_LIBS -lpthreads -lmach -lexc -lc_r"
464                                 if test $ol_with_yielding_select = auto ; then
465                                         ol_with_yielding_select=yes
466                                 fi
467                                 ],,[-lmach -lexc -lc_r])
468                         LIBS="$save_LIBS"
469                 fi
470
471                 if test $ol_link_threads = no ; then
472                         dnl try -lpthread
473                         save_LIBS="$LIBS"
474                         AC_CHECK_LIB(pthread, pthread_create, [
475                                 ol_link_threads=posix
476                                 LTHREAD_LIBS="$LTHREAD_LIBS -lpthread"])
477                         LIBS="$save_LIBS"
478                 fi
479
480                 if test $ol_link_threads = no ; then
481                         dnl try -lc_r
482                         save_LIBS="$LIBS"
483                         AC_CHECK_LIB(c_r, pthread_create, [
484                                 ol_link_threads=posix
485                                 LTHREAD_LIBS="$LTHREAD_LIBS -lc_r"])
486                         LIBS="$save_LIBS"
487                 fi
488
489                 if test $ol_link_threads = no ; then
490                         dnl try -lpthreads
491                         save_LIBS="$LIBS"
492                         AC_CHECK_LIB(pthreads, pthread_create, [
493                                 ol_link_threads=posix
494                                 LTHREAD_LIBS="$LTHREAD_LIBS -lpthreads"])
495                         LIBS="$save_LIBS"
496                 fi
497
498                 dnl HP-UX 11 check
499                 if test $ol_link_threads = no; then
500                         save_LIBS="$LIBS"
501                         LIBS="$LIBS -lpthread"
502                         AC_MSG_CHECKING([for pthread_create() in HP-UX -lpthread])
503                         ol_try_pthread_hpux_11=no
504                         AC_CACHE_VAL(ol_cv_pthread_hpux_11,[
505                                 AC_TRY_LINK([
506 #include <pthread.h>
507 #include <elf.h>
508 #ifndef ELFABI_HPUX_REL11
509         die horribly
510 #endif
511                                 ], [pthread_create(NULL, NULL, NULL, NULL);],
512                                         ol_try_pthread_hpux_11=yes
513                                         ol_cv_pthread_hpux_11=yes,
514                                         ol_cv_pthread_hpux_11=no)])
515                         AC_MSG_RESULT(yes)
516                         LIBS="$save_LIBS"
517
518                         if test $ol_cv_pthread_hpux_11=yes ; then
519                                 ol_link_threads=posix
520                                 LTHREAD_LIBS="$LTHREAD_LIBS -lpthread"
521                                 if test $ol_try_pthread_hpux_11=yes ; then
522                                         dnl Some tests below may fail, cause we aint including
523                                         dnl pthread.h. Force appropriate ones to yes
524                                         ac_cv_func_pthread_attr_init=yes
525                                 fi
526                         fi
527                 fi
528
529                 if test $ol_link_threads != no ; then
530                         AC_DEFINE(HAVE_PTHREADS)
531
532                         dnl save flags
533                         save_CPPFLAGS="$CPPFLAGS"
534                         save_LIBS="$LIBS"
535                         LIBS="$LTHREAD_LIBS $LIBS"
536
537                         dnl All POSIX Thread (final) implementations should have
538                         dnl sched_yield instead of pthread yield.
539                         dnl check for both
540                         AC_CHECK_FUNCS(sched_yield pthread_yield)
541
542                         if test $ac_cv_func_sched_yield = no -a \
543                                 $ac_cv_func_pthread_yield = no ; then
544                                 dnl Digital UNIX has sched_yield() in -lrt
545                                 AC_CHECK_LIB(rt, sched_yield,
546                                         [LTHREAD_LIBS="$LTHREAD_LIBS -lrt"
547                                         AC_DEFINE(HAVE_SCHED_YIELD,1)
548                                         ac_cv_func_sched_yield=yes],
549                                         [ac_cv_func_sched_yield=no])
550                         fi
551                         if test $ac_cv_func_sched_yield = no -a \
552                                 $ac_cv_func_pthread_yield = no ; then
553                                 dnl Solaris has sched_yield() in -lposix4
554                                 AC_CHECK_LIB(posix4, sched_yield,
555                                         [LTHREAD_LIBS="$LTHREAD_LIBS -lposix4"
556                                         AC_DEFINE(HAVE_SCHED_YIELD,1)
557                                         ac_cv_func_sched_yield=yes],
558                                         [ac_cv_func_sched_yield=no])
559                         fi
560                         if test $ac_cv_func_sched_yield = no -a \
561                                 $ac_cv_func_pthread_yield = no ; then
562                                 AC_MSG_WARN([could not locate sched_yield() or pthread_yield()])
563                                 AC_MSG_ERROR([POSIX Threads are not usable])
564                         fi
565
566                         dnl Check functions for compatibility
567                         AC_CHECK_FUNCS(pthread_kill)
568                         AC_CHECK_FUNCS( \
569                                 pthread_attr_create pthread_attr_init \
570                                 pthread_attr_destroy pthread_attr_delete \
571                                 pthread_attr_setdetachstate pthread_attr_setdetach_np \
572                         )
573
574                         dnl Check for setconcurreny functions
575                         AC_CHECK_FUNCS( \
576                                 pthread_setconcurrency \
577                                 thr_setconcurrency \
578                         )
579
580                         AC_MSG_CHECKING([if pthread_create() works])
581                         AC_CACHE_VAL(ol_cv_pthread_create_works,[
582                         AC_TRY_RUN([
583 #include <pthread.h>
584 #ifndef NULL
585 #define NULL (void*)0
586 #endif
587
588 static void *task(p)
589         void *p;
590 {
591         return (void *) (p == NULL);
592 }
593
594 int main(argc, argv)
595         int argc;
596         char **argv;
597 {
598         pthread_t t;
599         exit(pthread_create(&t, NULL, task, NULL));
600 }
601 ],
602                                 [ol_cv_pthread_create_works=yes],
603                                 [ol_cv_pthread_create_works=no],
604                                 [dnl assume yes
605                                 ol_cv_pthread_create_works=yes])])
606                         AC_MSG_RESULT($ol_cv_pthread_create_works)
607
608                         if test $ol_cv_pthread_create_works = no ; then
609                                 AC_MSG_ERROR([pthread.h and pthread_create are not compatible])
610                         fi
611
612                         dnl Check if select causes an yield
613                         if test $ol_with_yielding_select = auto ; then
614                                 AC_MSG_CHECKING([if select yields when using pthreads])
615                                 AC_CACHE_VAL(ol_cv_pthread_select_yields,[
616                                 AC_TRY_RUN([
617 #include <sys/types.h>
618 #include <sys/time.h>
619 #include <unistd.h>
620 #include <pthread.h>
621 #ifndef NULL
622 #define NULL (void*) 0
623 #endif
624
625 static int fildes[2];
626
627 static void *task(p)
628         void *p;
629 {
630         int i;
631         struct timeval tv;
632
633         fd_set rfds;
634
635         tv.tv_sec=10;
636         tv.tv_usec=0;
637
638         FD_ZERO(&rfds);
639         FD_SET(fildes[0], &rfds);
640
641         /* we're not interested in any fds */
642         i = select(FD_SETSIZE, &rfds, NULL, NULL, &tv);
643
644         if(i < 0) {
645                 perror("select");
646                 exit(10);
647         }
648
649         exit(0); /* if we exit here, the select blocked the whole process */
650 }
651
652 int main(argc, argv)
653         int argc;
654         char **argv;
655 {
656         pthread_t t;
657
658         /* create a pipe to select */
659         if(pipe(&fildes[0])) {
660                 perror("select");
661                 exit(1);
662         }
663
664 #ifdef HAVE_PTHREAD_SETCONCURRENCY
665         (void) pthread_setconcurrency(2);
666 #else
667 #ifdef HAVE_THR_SETCONCURRENCY
668         /* Set Solaris LWP concurrency to 2 */
669         thr_setconcurrency(2);
670 #endif
671 #endif
672
673         pthread_create(&t, NULL, task, NULL);
674
675 #if HAVE_SCHED_YIELD
676         sched_yield();  /* make sure task runs first */
677 #else
678 #ifdef HAVE_PTHREAD_YIELD
679         pthread_yield();        /* make sure task runs first */
680 #endif
681 #endif
682
683         exit(2);
684 }],
685                                 [ol_cv_pthread_select_yields=no],
686                                 [ol_cv_pthread_select_yields=yes], [
687                                 AC_MSG_ERROR([crossing compiling: use --with-yielding_select=yes|no|manual])])])
688                                 AC_MSG_RESULT($ol_cv_pthread_select_yields)
689
690                                 if test $ol_cv_pthread_select_yields = yes ; then
691                                         ol_with_yielding_select=yes
692                                 fi
693                         fi
694
695                         dnl restore flags
696                         CPPFLAGS="$save_CPPFLAGS"
697                         LIBS="$save_LIBS"
698                 else
699                         AC_MSG_ERROR([could not link with POSIX Threads])
700                 fi
701         fi
702
703         if test $ol_with_threads = posix ; then
704                 AC_MSG_ERROR([could not locate POSIX Threads])
705         fi
706 fi
707
708 if test $ol_with_threads = auto -o $ol_with_threads = yes \
709         -o $ol_with_threads = mach ; then
710
711         dnl check for Mach CThreads
712         AC_CHECK_HEADERS(mach/cthreads.h)
713         if test $ac_cv_header_mach_cthreads_h = yes ; then
714                 ol_with_threads=found
715
716                 dnl check for cthread support in current $LIBS
717                 AC_CHECK_FUNC(cthread_fork,[ol_link_threads=yes])
718
719                 if test $ol_link_threads = no ; then
720                         dnl try -all_load
721                         dnl this test needs work
722                         AC_CACHE_CHECK([for cthread_fork with -all_load],
723                                 [ol_cv_cthread_all_load], [
724                                 dnl save the flags
725                                 save_LIBS="$LIBS"
726                                 LIBS="-all_load $LIBS"
727                                 AC_TRY_LINK([#include <mach/cthreads.h>],[
728                                         cthread_fork((void *)0, (void *)0);
729                                         ], ol_cv_cthread_all_load=yes, ol_cv_cthread_all_load=no)
730                                 dnl restore the LIBS
731                                 LIBS="$save_LIBS"
732                         ])
733
734                         if test $ol_cv_cthread_all_load = yes ; then
735                                 LTHREAD_LIBS="$LTHREAD_LIBS -all_load"
736                                 ol_link_threads=mach
737                         fi
738                 fi
739
740                 if test $ol_link_threads != no ; then
741                         : check for cthread specific functionality here
742                         AC_DEFINE(HAVE_MACH_CTHREADS,1)
743                 else
744                         AC_MSG_ERROR([could not link with Mach CThreads])
745                 fi
746         fi
747
748         if test $ol_with_threads = mach ; then
749                 AC_MSG_ERROR([could not locate Mach CThreads])
750         fi
751 fi
752
753 if test $ol_with_threads = auto -o $ol_with_threads = yes \
754         -o $ol_with_threads = lwp ; then
755
756         dnl check for SunOS5 LWP
757         AC_CHECK_HEADERS(thread.h synch.h)
758         if test $ac_cv_header_thread_h = yes -a $ac_cv_header_synch_h = yes ; then
759                 AC_CHECK_LIB(thread, thr_create, [have_thr=yes], [have_thr=no])
760
761                 if test $have_thr = yes ; then
762                         AC_DEFINE(HAVE_THR)
763                         LTHREAD_LIBS="$LTHREAD_LIBS -lthread"
764                         ol_link_threads=thr
765
766                         if test $ol_with_yielding_select = auto ; then
767                                 ol_with_yielding_select=yes
768                         fi
769                 fi
770         fi
771
772         dnl check for SunOS4 LWP
773         AC_CHECK_HEADERS(lwp/lwp.h)
774         if test $ac_cv_header_lwp_lwp_h = yes ; then
775                 AC_CHECK_LIB(lwp, lwp_create, [have_lwp=yes], [have_lwp=no])
776
777                 if test $have_lwp = yes ; then
778                         AC_DEFINE(HAVE_LWP)
779                         LTHREAD_LIBS="$LTHREAD_LIBS -llwp"
780                         ol_link_threads=lwp
781
782                         if test $ol_with_yielding_select = auto ; then
783                                 ol_with_yielding_select=no
784                         fi
785                 fi
786         fi
787 fi
788
789 if test $ol_with_yielding_select = yes ; then
790         AC_DEFINE(HAVE_YIELDING_SELECT,1)
791 fi
792
793 if test $ol_with_threads = manual ; then
794         dnl User thinks he can manually configure threads.
795         ol_link_threads=yes
796
797         AC_MSG_WARN([thread defines and link options must be set manually])
798
799         AC_CHECK_HEADERS(pthread.h sched.h)
800         AC_CHECK_FUNCS(sched_yield pthread_yield)
801         OL_LINUX_THREADS
802
803         AC_CHECK_HEADERS(mach/cthreads.h)
804         AC_CHECK_HEADERS(lwp/lwp.h)
805         AC_CHECK_HEADERS(thread.h synch.h)
806 fi
807
808 if test $ol_link_threads != no ; then  
809         dnl needed to get reentrant/threadsafe versions
810         dnl
811         AC_DEFINE(REENTRANT,1)
812         AC_DEFINE(_REENTRANT,1)
813         AC_DEFINE(THREAD_SAFE,1)
814         AC_DEFINE(_THREAD_SAFE,1)
815         AC_DEFINE(THREADSAFE,1)
816         AC_DEFINE(_THREADSAFE,1)
817
818         dnl this might cause the errno symbol to be
819         dnl replaced with a function to get a thread specific errno.
820         dnl check to see if everything needs to be compiled
821         dnl with the thread libraries
822         AC_CACHE_CHECK([for thread specific errno],
823                 [ol_cv_errno_thread_specific], [
824                 AC_TRY_LINK([
825 #include <errno.h>
826                         ], [
827 int x = errno;
828                         ],
829                         [ol_cv_errno_thread_specific=yes],
830                         [ol_cv_errno_thread_specific=no])
831         ])
832
833         if test $ol_cv_errno_thread_specific != yes ; then
834                 LIBS="$LTHREAD_LIBS $LIBS"
835                 LTHREAD_LIBS=""
836         fi
837
838         dnl check for reentrant/threadsafe functions
839         dnl
840         dnl note: these should only be used when linking
841         dnl       with $LTHREAD_LIBS
842         dnl
843         save_CPPFLAGS="$CPPFLAGS"
844         save_LIBS="$LIBS"
845         LIBS="$LTHREAD_LIBS $LIBS"
846         AC_CHECK_FUNCS( \
847                 strtok_r \
848                 gmtime_r \
849                 gethostbyaddr_r gethostbyname_r \
850                 feof_unlocked unlocked_feof \
851                 putc_unlocked unlocked_putc \
852                 flockfile ftrylockfile \
853         )
854         CPPFLAGS="$save_CPPFLAGS"
855         LIBS="$save_LIBS"
856 fi  
857
858 dnl ----------------------------------------------------------------
859
860 if test $ol_link_threads = no ; then
861         if test $ol_with_threads = yes ; then
862                 AC_MSG_ERROR([no suitable thread support])
863         fi
864
865         if test $ol_with_threads = auto ; then
866                 AC_MSG_WARN([no suitable thread support, disabling threads])
867                 ol_with_threads=no
868         fi
869
870         AC_DEFINE(NO_THREADS,1)
871         LTHREAD_LIBS=""
872 fi
873
874 ol_link_ldbm=no 
875 if test $ol_with_ldbm_api = auto -o $ol_with_ldbm_api = db2 ; then
876         OL_BERKELEY_DB2
877
878         if test $ol_cv_berkeley_db2 = yes ; then
879                 ol_link_ldbm=db2
880                 ol_with_ldbm_api=db2
881
882                 if test $ol_with_ldbm_type = hash ; then
883                         AC_DEFINE(LDBM_USE_DBHASH,1)
884                 else
885                         AC_DEFINE(LDBM_USE_DBBTREE,1)
886                 fi
887
888                 dnl $ol_cv_lib_db2 should be yes or -ldb
889                 dnl (it could be no, but that would be an error
890                 if test $ol_cv_lib_db2 != yes ; then
891                         LDBM_LIBS="$LDBM_LIBS $ol_cv_lib_db2"
892                 fi
893         fi
894 fi
895
896 if test $ol_with_ldbm_api = auto -o $ol_with_ldbm_api = db ; then
897         OL_BERKELEY_DB
898
899         if test $ol_cv_berkeley_db = yes ; then
900                 ol_link_ldbm=db
901                 ol_with_ldbm_api=db
902
903                 if test $ol_with_ldbm_type = hash ; then
904                         AC_DEFINE(LDBM_USE_DBHASH,1)
905                 else
906                         AC_DEFINE(LDBM_USE_DBBTREE,1)
907                 fi
908
909                 dnl $ol_cv_lib_db should be yes or -ldb
910                 dnl (it could be no, but that would be an error
911                 if test $ol_cv_lib_db != yes ; then
912                         LDBM_LIBS="$LDBM_LIBS $ol_cv_lib_db"
913                 fi
914         fi
915 fi
916
917 if test $ol_with_ldbm_api = manual ; then
918         dnl User thinks he can manually configure LDBM api.
919         ol_link_ldbm=yes
920
921         AC_MSG_WARN([LDBM defines and link options must be set manually])
922
923         AC_CHECK_HEADERS(db.h db_185.h gdbm.h ndbm.h)
924 fi
925
926 if test $ol_link_ldbm = no -a $ol_with_ldbm_type = btree ; then
927         AC_MSG_WARN(Could not find LDBM with BTREE support)
928         ol_with_ldbm_api=none
929 fi
930
931 if test $ol_with_ldbm_api = auto -o $ol_with_ldbm_api = gdbm ; then
932         OL_GDBM
933
934         if test $ol_cv_gdbm = yes ; then
935                 ol_link_ldbm=gdbm
936                 ol_with_ldbm_api=gdbm
937
938                 if test $ol_cv_lib_gdbm != yes ; then
939                         LDBM_LIBS="$LDBM_LIBS $ol_cv_lib_gdbm"
940                 fi
941         fi
942 fi
943
944 if test $ol_with_ldbm_api = auto ; then
945         AC_MSG_WARN([skipping automatic checking for NDBM, must be manually enabled.])
946 elif test $ol_with_ldbm_api = ndbm ; then
947         OL_NDBM
948
949         if test $ol_cv_ndbm = yes ; then
950                 ol_link_ldbm=ndbm
951                 ol_with_ldbm_api=ndbm
952
953                 if test $ol_cv_lib_ndbm != yes ; then
954                         LDBM_LIBS="$LDBM_LIBS $ol_cv_lib_ndbm"
955                 fi
956         fi
957 fi
958
959 if test $ol_link_ldbm = no -a $ol_enable_ldbm != no ; then
960         AC_MSG_WARN(could not find suitable LDBM backend)
961         if test $ol_enable_ldbm = yes ; then
962                 AC_MSG_ERROR(select appropriate LDBM options or disable)
963         fi
964
965         AC_MSG_WARN(disabling LDBM)
966         ol_enable_ldbm=no
967 fi
968
969 if test $ol_enable_wrappers = yes ; then
970         AC_CHECK_LIB(wrap, main,
971                 [have_wrappers=yes], [have_wrappers=no])
972
973         if test $have_wrappers = yes ; then
974                 AC_DEFINE(HAVE_TCPD)
975                 SLAPD_LIBS="$SLAPD_LIBS -lwrap"
976         else
977                 AC_MSG_WARN(could not find -lwrap)
978                 if test $ol_enable_wrappers = yes ; then
979                         AC_MSG_ERROR(could not find wrappers, select appropriate options or disable)
980                 fi
981
982                 AC_MSG_WARN(disabling wrappers support)
983                 ol_enable_wrappers=no
984         fi
985
986 fi
987
988 # ud needs termcap (should insert check here)
989 ol_link_termcap=no
990 AC_CHECK_HEADERS(termcap.h ncurses.h)
991
992 if test $ol_link_termcap = no ; then
993         AC_CHECK_LIB(termcap, tputs, [have_termcap=yes], [have_termcap=no])
994         if test $have_termcap = yes ; then
995                 AC_DEFINE(HAVE_TERMCAP)
996                 ol_link_termcap=yes
997                 TERMCAP_LIBS=-ltermcap
998         fi
999 fi
1000
1001 if test $ol_link_termcap = no ; then
1002         AC_CHECK_LIB(ncurses, initscr, [have_ncurses=yes], [have_ncurses=no])
1003         if test $have_ncurses = yes ; then
1004                 AC_DEFINE(HAVE_NCURSES)
1005                 ol_link_termcap=yes
1006                 TERMCAP_LIBS=-lncurses
1007         fi
1008 fi
1009
1010 if test $ol_link_termcap = no ; then
1011         AC_DEFINE(NO_TERMCAP,1)
1012         TERMCAP_LIBS=
1013 fi
1014
1015 # FreeBSD (and others) have crypt(3) in -lcrypt
1016 if test $ol_enable_crypt != no ; then
1017         AC_CHECK_FUNC(crypt, [have_crypt=yes], [
1018                 AC_CHECK_LIB(crypt, crypt, [LUTIL_LIBS="$LUTIL_LIBS -lcrypt"
1019                         have_crypt=yes], [have_crypt=no])])
1020
1021         if test $have_crypt = yes ; then
1022                 AC_DEFINE(HAVE_CRYPT,1)
1023         else
1024                 AC_MSG_WARN(could not find crypt)
1025                 if test $ol_enable_crypt = yes ; then
1026                         AC_MSG_ERROR(could not find crypt, select appropriate options or disable)
1027                 fi
1028
1029                 AC_MSG_WARN(disabling crypt support)
1030                 ol_enable_crypt=no
1031         fi
1032 fi
1033
1034 # FreeBSD (and others) have setproctitle(3) in -lutil
1035 if test $ol_enable_proctitle != no ; then
1036         AC_CHECK_FUNC(setproctitle,     [have_setproctitle=yes], [
1037                 AC_CHECK_LIB(util, setproctitle,
1038                         [have_setproctitle=yes
1039                         LUTIL_LIBS="$LUTIL_LIBS -lutil"],
1040                         [have_setproctitle=no
1041                         LIBOBJS="$LIBOBJS setproctitle.o"])])
1042
1043         if test $have_setproctitle = yes ; then
1044                 AC_DEFINE(HAVE_SETPROCTITLE,1)
1045         fi
1046 fi
1047
1048 dnl ----------------------------------------------------------------
1049 dnl Checks for header files.
1050 AC_HEADER_STDC
1051
1052 if test $ac_cv_header_stdc != yes; then
1053         AC_MSG_WARN([could not Standard C compliant headers])
1054 fi
1055
1056 AC_HEADER_DIRENT
1057 AC_HEADER_SYS_WAIT
1058 AM_HEADER_TIOCGWINSZ_NEEDS_SYS_IOCTL
1059 if test $am_cv_sys_posix_termios = yes ; then
1060         AC_DEFINE(HAVE_POSIX_TERMIOS,1)
1061 fi
1062
1063 AC_CHECK_HEADERS(       \
1064         crypt.h                 \
1065         errno.h                 \
1066         fcntl.h                 \
1067         filio.h                 \
1068         getopt.h                \
1069         libutil.h               \
1070         limits.h                \
1071         malloc.h                \
1072         memory.h                \
1073         regex.h                 \
1074         psap.h                  \
1075         pwd.h                   \
1076         sgtty.h                 \
1077         stdarg.h                \
1078         stddef.h                \
1079         string.h                \
1080         strings.h               \
1081         sys/file.h              \
1082         sys/filio.h             \
1083         sys/errno.h             \
1084         sys/ioctl.h             \
1085         sys/param.h             \
1086         sys/resource.h  \
1087         sys/socket.h    \
1088         sys/syslog.h    \
1089         sys/time.h              \
1090         sys/types.h             \
1091         syslog.h                \
1092         termios.h               \
1093         unistd.h                \
1094 )
1095
1096 dnl ----------------------------------------------------------------
1097 dnl Checks for typedefs, structures, and compiler characteristics.
1098 AC_TYPE_GETGROUPS dnl requires AC_TYPE_UID_T
1099 AC_TYPE_MODE_T
1100 AC_TYPE_OFF_T
1101 AC_TYPE_PID_T
1102 AM_TYPE_PTRDIFF_T
1103 AC_TYPE_SIGNAL
1104 AC_TYPE_SIZE_T
1105 AC_STRUCT_ST_BLKSIZE
1106 AC_HEADER_TIME
1107 AC_STRUCT_TM
1108
1109 OL_C_UPPER_LOWER
1110 AC_C_CONST
1111
1112 if test $cross_compiling = yes ; then
1113         AC_DEFINE(CROSS_COMPILING, 1)
1114 else
1115         AC_C_BIGENDIAN
1116         AC_CHECK_SIZEOF(short) 
1117         AC_CHECK_SIZEOF(int) 
1118         AC_CHECK_SIZEOF(long)
1119 fi
1120
1121 dnl ----------------------------------------------------------------
1122 dnl Checks for library functions.
1123 AC_FUNC_MEMCMP
1124 dnl AM_FUNC_MKTIME dnl checks for sys/time.h and unistd.h
1125 AC_FUNC_STRFTIME
1126 dnl AM_FUNC_STRTOD
1127 AC_FUNC_VPRINTF
1128
1129 if test $ac_cv_func_vprintf = yes ; then
1130         dnl check for vsnprintf
1131         AC_CHECK_FUNCS(vsnprintf vsprintf)
1132 fi
1133
1134 AC_FUNC_WAIT3
1135
1136 AC_CHECK_FUNCS(         \
1137         bcopy                   \
1138         flock                   \
1139         getdtablesize   \
1140         gethostname             \
1141         getpwuid                \
1142         gettimeofday    \
1143         lockf                   \
1144         memcpy                  \
1145         memmove                 \
1146         mkstemp                 \
1147         res_search              \
1148         select                  \
1149         setpwfile               \
1150         setsid                  \
1151         signal                  \
1152         sigset                  \
1153         snprintf                \
1154         socket                  \
1155         strerror                \
1156         strpbrk                 \
1157         strrchr                 \
1158         strsep                  \
1159         strstr                  \
1160         strtok                  \
1161         strtol                  \
1162         strtoul                 \
1163         sysconf                 \
1164         waitpid                 \
1165 )
1166
1167 dnl We actually may need to replace more than this.
1168 AC_REPLACE_FUNCS(getopt strdup tempnam)
1169
1170 dnl ----------------------------------------------------------------
1171 # Check Configuration
1172 OL_SYS_ERRLIST
1173
1174 dnl ----------------------------------------------------------------
1175 dnl Sort out defines
1176
1177 if test "$ol_enable_debug" != no ; then
1178         AC_DEFINE(LDAP_DEBUG,1)
1179 fi
1180 dnl     if test "$ol_enable_syslog" != no ; then
1181 dnl             AC_DEFINE(LDAP_SYSLOG,1)
1182 dnl     fi
1183 if test "$ol_enable_libui" = yes ; then
1184         AC_DEFINE(LDAP_LIBUI,1)
1185 fi
1186 if test "$ol_enable_cache" = no ; then
1187         AC_DEFINE(LDAP_NOCACHE,1)
1188 fi
1189 if test "$ol_enable_dns" != no ; then
1190         AC_DEFINE(LDAP_DNS,1)
1191 fi
1192 if test "$ol_enable_proctitle" != no ; then
1193         AC_DEFINE(LDAP_PROCTITLE,1)
1194 fi
1195 if test "$ol_enable_referrals" != no ; then
1196         AC_DEFINE(LDAP_REFERRALS,1)
1197 fi
1198 if test "$ol_enable_cldap" != no ; then
1199         AC_DEFINE(LDAP_CONNECTIONLESS,1)
1200 fi
1201
1202 if test "$ol_enable_aclgroups" != no ; then
1203         AC_DEFINE(SLAPD_ACLGROUPS,1)
1204 fi
1205 if test "$ol_enable_crypt" != no ; then
1206         AC_DEFINE(SLAPD_CRYPT,1)
1207 fi
1208 if test "$ol_enable_cleartext" != no ; then
1209         AC_DEFINE(SLAPD_CLEARTEXT,1)
1210 fi
1211 if test "$ol_enable_phonetic" != no ; then
1212         AC_DEFINE(SLAPD_PHONETIC,1)
1213 fi
1214 if test "$ol_enable_rlookups" != no ; then
1215         AC_DEFINE(SLAPD_RLOOKUPS,1)
1216 fi
1217
1218 if test "$ol_link_ldbm" != no ; then
1219         AC_DEFINE(SLAPD_LDBM,1)
1220         BUILD_SLAPD=yes
1221         BUILD_LDBM=yes
1222 fi
1223
1224 if test "$ol_enable_passwd" != no ; then
1225         AC_DEFINE(SLAPD_PASSWD,1)
1226         BUILD_SLAPD=yes
1227         BUILD_PASSWD=yes
1228 fi
1229
1230 if test "$ol_enable_shell" != no ; then
1231         AC_DEFINE(SLAPD_SHELL,1)
1232         BUILD_SLAPD=yes
1233         BUILD_SHELL=yes
1234 fi
1235
1236 if test "$ol_enable_slurpd" != no -a "$ol_link_threads" != no -a \
1237         $BUILD_SLAPD = yes ; then
1238         BUILD_SLURPD=yes
1239 fi
1240
1241 if test "$ol_link_isode" != no ; then
1242         BUILD_LDAPD=yes
1243 fi
1244
1245 dnl ----------------------------------------------------------------
1246
1247 AC_SUBST(BUILD_LDAPD)
1248 AC_SUBST(BUILD_SLAPD)
1249   AC_SUBST(BUILD_LDBM)
1250   AC_SUBST(BUILD_PASSWD)
1251   AC_SUBST(BUILD_SHELL)
1252 AC_SUBST(BUILD_SLURPD)
1253
1254
1255 AC_SUBST(LDAP_LIBS)
1256 AC_SUBST(LDAPD_LIBS)
1257 AC_SUBST(SLAPD_LIBS)
1258 AC_SUBST(SLURPD_LIBS)
1259 AC_SUBST(LDBM_LIBS)
1260 AC_SUBST(LTHREAD_LIBS)
1261 AC_SUBST(LUTIL_LIBS)
1262
1263 AC_SUBST(KRB_LIBS)
1264 AC_SUBST(TERMCAP_LIBS)
1265
1266 dnl ----------------------------------------------------------------
1267 dnl final output
1268 dnl
1269
1270 AC_OUTPUT( \
1271 Makefile:build/top.mk:Makefile.in:build/dir.mk \
1272 doc/Makefile:build/top.mk:doc/Makefile.in:build/dir.mk \
1273 doc/man/Makefile:build/top.mk:doc/man/Makefile.in:build/dir.mk \
1274 doc/man/man1/Makefile:build/top.mk:doc/man/man1/Makefile.in:build/man.mk \
1275 doc/man/man3/Makefile:build/top.mk:doc/man/man3/Makefile.in:build/man.mk \
1276 doc/man/man5/Makefile:build/top.mk:doc/man/man5/Makefile.in:build/man.mk \
1277 doc/man/man8/Makefile:build/top.mk:doc/man/man8/Makefile.in:build/man.mk \
1278 clients/Makefile:build/top.mk:clients/Makefile.in:build/dir.mk \
1279 clients/finger/Makefile:build/top.mk:clients/finger/Makefile.in:build/rules.mk \
1280 clients/fax500/Makefile:build/top.mk:clients/fax500/Makefile.in:build/rules.mk \
1281 clients/gopher/Makefile:build/top.mk:clients/gopher/Makefile.in:build/rules.mk \
1282 clients/mail500/Makefile:build/top.mk:clients/mail500/Makefile.in:build/rules.mk \
1283 clients/rcpt500/Makefile:build/top.mk:clients/rcpt500/Makefile.in:build/rules.mk \
1284 clients/ud/Makefile:build/top.mk:clients/ud/Makefile.in:build/rules.mk \
1285 clients/tools/Makefile:build/top.mk:clients/tools/Makefile.in:build/rules.mk \
1286 include/Makefile:build/top.mk:include/Makefile.in \
1287 libraries/Makefile:build/top.mk:libraries/Makefile.in:build/dir.mk      \
1288 libraries/libavl/Makefile:build/top.mk:libraries/libavl/Makefile.in:build/lib.mk:build/lib-static.mk    \
1289 libraries/liblber/Makefile:build/top.mk:libraries/liblber/Makefile.in:build/lib.mk:build/lib-shared.mk  \
1290 libraries/libldap/Makefile:build/top.mk:libraries/libldap/Makefile.in:build/lib.mk:build/lib-shared.mk  \
1291 libraries/libldbm/Makefile:build/top.mk:libraries/libldbm/Makefile.in:build/lib.mk:build/lib-static.mk  \
1292 libraries/libldif/Makefile:build/top.mk:libraries/libldif/Makefile.in:build/lib.mk:build/lib-static.mk  \
1293 libraries/liblthread/Makefile:build/top.mk:libraries/liblthread/Makefile.in:build/lib.mk:build/lib-static.mk    \
1294 libraries/liblutil/Makefile:build/top.mk:libraries/liblutil/Makefile.in:build/lib.mk:build/lib-static.mk        \
1295 servers/Makefile:build/top.mk:servers/Makefile.in:build/dir.mk \
1296 servers/ldapd/Makefile:build/top.mk:servers/ldapd/Makefile.in:build/srv.mk \
1297 servers/slapd/Makefile:build/top.mk:servers/slapd/Makefile.in:build/srv.mk \
1298 servers/slapd/back-ldbm/Makefile:build/top.mk:servers/slapd/back-ldbm/Makefile.in:build/srv.mk \
1299 servers/slapd/back-passwd/Makefile:build/top.mk:servers/slapd/back-passwd/Makefile.in:build/srv.mk \
1300 servers/slapd/back-shell/Makefile:build/top.mk:servers/slapd/back-shell/Makefile.in:build/srv.mk \
1301 servers/slapd/shell-backends/Makefile:build/top.mk:servers/slapd/shell-backends/Makefile.in:build/srv.mk \
1302 servers/slapd/tools/Makefile:build/top.mk:servers/slapd/tools/Makefile.in \
1303 servers/slurpd/Makefile:build/top.mk:servers/slurpd/Makefile.in:build/srv.mk \
1304 tests/Makefile:build/top.mk:tests/Makefile.in \
1305 ,[
1306 date > stamp-h
1307 echo Please \"make depend\" to build dependencies
1308 ])