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