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