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