openldap/configure.in

577 lines
16 KiB
Plaintext
Raw Normal View History

dnl Copyright 1998 The OpenLDAP Foundation. All Rights Reserved.
1998-09-16 11:01:24 +08:00
dnl
dnl Redistribution and use in source and binary forms are permitted only
dnl as authorized by the OpenLDAP Public License. A copy of this
dnl license is available at http://www.OpenLDAP.org/license.html or
dnl in file LICENSE in the top-level directory of the distribution.
dnl ----
dnl Configure.in for OpenLDAP
1998-09-16 11:01:24 +08:00
dnl
AC_INIT(include/ldap.h)
dnl
dnl
AC_PREREQ(2.10)dnl Required Autoconf version
dnl Do not use AutoConf 2.12; it produces a configuration script
dnl that causes an "internal 2K buffer" error on HPUX when run
dnl with /bin/sh. Autoconf 2.10 seems to be okay.
1998-09-16 11:14:16 +08:00
AC_CONFIG_AUX_DIR(build)
1998-09-16 11:01:24 +08:00
AC_CONFIG_HEADER(include/portable.h)dnl
dnl
dnl Start Args
AC_MSG_CHECKING(arguments)
AC_PREFIX_DEFAULT(/usr/local)
dnl General "enable" options
1998-09-16 11:01:24 +08:00
CF_ARG_OPTION(debug,[ --enable-debug enable debugging (yes)],[
LDAP_DEBUG=no],[LDAP_DEBUG=yes],yes)dnl
CF_ARG_OPTION(libui,[ --enable-libui enable library user interface (yes)],[
LDAP_LIBUI=no],[LDAP_LIBUI=yes],yes)dnl
1998-09-16 11:01:24 +08:00
CF_ARG_OPTION(cache,[ --enable-cache enable caching (yes)],[
LDAP_CACHE=no],[LDAP_CACHE=yes],yes)dnl
CF_ARG_OPTION(referrals,[ --enable-referrals enable referrals (yes)],[
LDAP_REFERRALS=no],[LDAP_REFERRALS=yes],yes)dnl
CF_ARG_OPTION(cldap,[ --enable-clapd enable connectionless ldap (no)],[
LDAP_CLDAP=yes],[LDAP_CLDAP=no],no)dnl
dnl General "with" options
AC_ARG_WITH(kerberos,[ --with-kerberos use Kerberos (no)],[
opt_kerberos=yes],[opt_kerberos=no])
AC_ARG_WITH(kerberos-afs,[ --with-kerberos-afs use AFS Kerberos (no)],[
opt_kerberos_afs=yes],[opt_kerberos_afs=no])
AC_ARG_WITH(threads,[ --with-threads use threads (yes)],[
opt_threads=yes],[opt_threads=no])
dnl Server options
dnl LDAPD OPTIONS
1998-09-16 11:01:24 +08:00
CF_ARG_OPTION(ldapd,[ --enable-ldapd enable building ldapd (no)],[
BUILD_LDAPD=yes],[BUILD_LDAPD=no],no)dnl
dnl SLAPD OPTIONS
1998-09-16 11:01:24 +08:00
CF_ARG_OPTION(slapd,[ --enable-slapd enable building slapd (yes)],[
BUILD_SLAPD=no],[BUILD_SLAPD=yes],yes)dnl
CF_ARG_OPTION(aclgroup,[ --enable-aclgroup enable ACL group support (yes)],[
SLAPD_ACLGROUP=no],[SLAPD_ALCGROUP=yes],yes)dnl
CF_ARG_OPTION(crypt,[ --enable-crypt enable crypt(3) passwords (yes)],[
SLAPD_CRYPT=no],[SLAPD_CRYPT=yes],yes)dnl
CF_ARG_OPTION(md5,[ --enable-md5 enable MD5 passwords (yes)],[
SLAPD_MD5=no],[SLAPD_MD5=yes],yes)dnl
CF_ARG_OPTION(sha1,[ --enable-sha1 enable SHA1 passwords (yes)],[
SLAPD_SHA1=no],[SLAPD_SHA1=yes],yes)dnl
CF_ARG_OPTION(wrappers,[ --enable-wrappers enable tcp wrapper support (no)],[
SLAPD_TCP_WRAPPERS=yes],[SLAPD_TCP_WRAPPERS=no],no)dnl
CF_ARG_OPTION(phonetic,[ --enable-phonetic enable phonetic/soundex (no)],[
SLAPD_PHONETIC=yes],[SLAPD_PHONETIC=no],no)dnl
CF_ARG_OPTION(rlookups,[ --enable-rlookups enable reverse lookups (yes)],[
SLAPD_RLOOKUP=no],[SLAPD_RLOOKUP=yes],yes)dnl
1998-09-16 11:01:24 +08:00
dnl SLAPD Backend options
CF_ARG_OPTION(ldbm,[ --enable-ldbm enable ldbm backend (yes)],[
SLAPD_LDBM=no],[SLAPD_LDBM=yes],yes)dnl
CF_ARG_OPTION(passwd,[ --enable-passwd enable passwd backend (yes)],[
SLAPD_PASSWD=no],[SLAPD_PASSWD=yes],yes)dnl
CF_ARG_OPTION(shell,[ --enable-shell enable shell backend (yes)],[
SLAPD_SHELL=no],[SLAPD_SHELL=yes],yes)dnl
1998-09-16 11:01:24 +08:00
AC_ARG_WITH(ndbm,[ --with-ndbm use NDB for LDBM backend (any)],[
1998-09-16 11:01:24 +08:00
opt_ndbm=yes],[opt_ndbm=no])
AC_ARG_WITH(gdbm,[ --with-gdbm use GDBM for LDBM backend (any)],[
1998-09-16 11:01:24 +08:00
opt_gdbm=yes],[opt_gdbm=no])
AC_ARG_WITH(dbhash,[ --with-dbhash use Berkeley DB Hash for LDBM backend (any)],[
1998-09-16 11:01:24 +08:00
opt_dbhash=yes],[opt_dbhash=no])
AC_ARG_WITH(dbbtree,[ --with-dbbtree use Berkeley DB Btrees for LDBM backend (any)],[
1998-09-16 11:01:24 +08:00
opt_dbbtree=yes],[opt_dbbtree=no])
AC_ARG_WITH(db2,[ --with-db2 use Berkeley DB2 API (any)],[
opt_db2=yes],[opt_db2=no])
1998-09-16 11:01:24 +08:00
dnl SLURPD OPTIONS
CF_ARG_OPTION(slurpd,[ --enable-slurpd enable building slurpd (yes)],[
BUILD_SLURPD=no],[BUILD_SLURPD=yes],yes)dnl
1998-09-16 11:01:24 +08:00
AC_MSG_RESULT(done)
AC_MSG_CHECKING(LDBM preferences)
ldbm_prefer=any
if test "$opt_ndbm" = yes ; then
ldbm_prefer=ndbm
fi
if test "$opt_gdbm" = yes ; then
ldbm_prefer=gdbm
fi
if test "$opt_dbhash" = yes ; then
ldbm_prefer=dbhash
fi
if test "$opt_dbbtree" = yes ; then
ldbm_prefer=dbbtree
fi
AC_MSG_RESULT($ldbm_prefer)
if test "$BUILD_SLAPD" != "yes" ; then
BUILD_SLURPD="no"
SLAPD_LDBM="no"
SLAPD_PASSWD="no"
SLAPD_SHELL="no"
1998-09-16 11:01:24 +08:00
ldbm_prefer="none"
fi
1998-09-19 05:45:15 +08:00
## general LDAP arguments
1998-09-16 11:01:24 +08:00
LDAP_DEFS=
LDAP_LIBS=
1998-09-16 11:01:24 +08:00
if test "$LDAP_DEBUG" = "yes" ; then
LDAP_DEFS="$LDAP_DEFS -DLDAP_DEBUG"
fi
if test "$LDAP_REFERRALS" = "yes" ; then
AC_DEFINE(LDAP_REFERRALS,1)
LDAP_DEFS="$LDAP_DEFS -DLDAP_REFERRALS"
1998-09-16 11:01:24 +08:00
fi
if test "$LDAP_CACHE" = "no" ; then
AC_DEFINE(LDAP_NOCACHE,1)
LDAP_DEFS="$LDAP_DEFS -DNO_CACHE"
fi
if test "$LDAP_CLDAP" = "yes" ; then
AC_DEFINE(LDAP_CONNECTIONLESS,1)
1998-09-16 11:01:24 +08:00
LDAP_DEFS="$LDAP_DEFS -DCLDAP"
fi
1998-09-19 05:45:15 +08:00
## ldapd arguments
LDAPD_DEFS=
LDAPD_LIBS=
1998-09-19 05:45:15 +08:00
## slapd arguments
SLAPD_DEFS=
1998-09-19 05:45:15 +08:00
SLAPD_LIBS=
LUTIL_DEFS=
if test "$SLAPD_PHONETIC" = "yes" ; then
AC_DEFINE(SLAPD_PHONETIC,1)
SLAPD_DEFS="$SLAPD_DEFS -DSOUNDEX"
fi
if test "$SLAPD_MD5" = "yes" ; then
1998-09-19 07:07:56 +08:00
dnl AC_DEFINE(SLAPD_MD5,1)
LUTIL_DEFS="$LUTIL_DEFS -DLDAP_MD5"
fi
if test "$SLAPD_SHA1" = "yes" ; then
1998-09-19 07:07:56 +08:00
dnl AC_DEFINE(SLAPD_SHA1,1)
LUTIL_DEFS="$LUTIL_DEFS -DLDAP_SHA1"
fi
if test "$SLAPD_LDBM" = "yes" ; then
1998-09-18 10:13:14 +08:00
dnl AC_DEFINE(SLAPD_LDBM,1)
SLAPD_DEFS="$SLAPD_DEFS -DLDAP_LDBM"
1998-09-16 11:01:24 +08:00
fi
if test "$SLAPD_PASSWD" = "yes" ; then
1998-09-18 10:13:14 +08:00
dnl AC_DEFINE(SLAPD_PASSWD,1)
SLAPD_DEFS="$SLAPD_DEFS -DLDAP_PASSWD"
1998-09-16 11:01:24 +08:00
fi
if test "$SLAPD_SHELL" = "yes" ; then
1998-09-18 10:13:14 +08:00
dnl AC_DEFINE(SLAPD_SHELL,1)
SLAPD_DEFS="$SLAPD_DEFS -DLDAP_SHELL"
1998-09-16 11:01:24 +08:00
fi
dnl slurpd arguments
SLURPD_DEFS=
1998-09-19 05:45:15 +08:00
SLURPD_LIBS=
1998-09-16 11:01:24 +08:00
dnl End Args
dnl ----------------------------------------------------------------
dnl Checks for programs
1998-09-16 11:01:24 +08:00
AC_PROG_CC
AC_PROG_GCC_TRADITIONAL
AC_PROG_LN_S
AC_PROG_INSTALL
AC_PROG_RANLIB
AC_PROG_MAKE_SET
AC_PATH_PROG(SENDMAIL, sendmail, /usr/lib/sendmail,
1998-09-16 11:14:16 +08:00
$PATH:/usr/libexec:/usr/lib:/usr/sbin:/usr/etc:/etc)
1998-09-19 05:45:15 +08:00
AC_PATH_PROG(EDITOR, vi, /usr/ucb/vi, $PATH:/usr/ucb)
AC_PATH_PROG(FINGER, finger, /usr/ucb/finger, $PATH:/usr/ucb)
1998-09-16 11:01:24 +08:00
dnl ----------------------------------------------------------------
dnl Checks for libraries
LTHREAD_LIBS=
if test "$opt_thread" = "no" ; then
LTHREAD_DEFS="-DNO_THREADS"
BUILD_SLURPD=no
else
AC_CHECK_HEADERS(pthread.h sched.h)
if test "$ac_cv_header_pthread_h" = yes ; then
dnl We have some form of pthreads
1998-09-19 10:31:39 +08:00
AC_CACHE_CHECK([POSIX thread version],cf_cv_pthread_version,[
AC_EGREP_CPP(final,[
#include <pthread.h>
/* this check could be improved */
#ifdef PTHREAD_ONCE_INIT
final
#endif
], pthread_final=yes, pthread_final=no)
AC_EGREP_CPP(draft4,[
#include <pthread.h>
/* this check could be improved */
#ifdef pthread_once_init
draft4
#endif
], pthread_draft4=yes, pthread_draft4=no)
if test $pthread_final = yes -a $pthread_draft4 = no; then
cf_cv_pthread_version=final
elif test $pthread_final = no -a $pthread_draft4 = yes; then
cf_cv_pthread_version=draft4
else
cf_cv_pthread_version=unknown
fi
])
if test $cf_cv_pthread_version = final ; then
LTHREAD_DEFS="$LTHREAD_DEFS -DPOSIX_THREADS"
elif test $cf_cv_pthread_version = draft4 ; then
LTHREAD_DEFS="$LTHREAD_DEFS -DTHREAD_MIT_PTHREADS"
else
AC_MSG_ERROR(unknown pthread version)
fi
1998-09-19 10:31:39 +08:00
1998-09-19 11:53:11 +08:00
AC_CACHE_CHECK([for LinuxThreads], cf_cv_linux_threads, [
res=`grep Linuxthreads /usr/include/pthread.h 2>/dev/null | wc -l`
if test "$res" -gt 0 ; then
cf_cv_linux_threads=yes
else
cf_cv_linux_threads=no
fi
])
if test $cf_cv_linux_threads = yes ; then
dnl AC_DEFINE(HAVE_LINUX_THREADS,1)
LTHREAD_DEFS="$LTHREAD_DEFS -DHAVE_LINUX_THREADS"
fi
1998-09-19 10:31:39 +08:00
dnl Now the hard part, how to link
1998-09-19 11:53:11 +08:00
dnl A few platforms have pthread support in standard libraries
AC_CHECK_FUNC(pthread_create,pthread_link=yes,pthread_link=no)
if test $pthread_link = no ; then
dnl try -pthread
AC_CACHE_CHECK([for pthread_create with -pthread],
cf_cv_pthread_flag, [
dnl save the CPPFLAGS
save_CPPFLAGS=$CPPFLAGS
CPPFLAGS="-pthread $CPPFLAGS"
AC_TRY_LINK([#include <pthread.h>],[
if(0) pthread_create((pthread_t*) 0,
(pthread_attr_t*) 0, 0, 0);
], cf_cv_pthread_flag=yes, cf_cv_pthread_flag=no)
dnl restore the CPPFLAGS
CPPFLAGS=$save_CPPFLAGS
])
if test $cf_cv_pthread_flag = yes ; then
LTHREAD_LIBS="$LTHREAD_LIBS -pthread"
pthread_link=yes
fi
fi
1998-09-19 10:31:39 +08:00
1998-09-19 11:53:11 +08:00
if test $pthread_link = no ; then
dnl try -lpthread
save_LIBS="$LIBS"
AC_CHECK_LIB(pthread, pthread_create, [
pthread_link=yes
LTHREAD_LIBS="$LTHREAD_LIBS -lpthread"])
LIBS="$save_LIBS"
1998-09-19 10:31:39 +08:00
fi
1998-09-19 11:53:11 +08:00
if test $pthread_link = no ; then
dnl try -lc_r
save_LIBS="$LIBS"
AC_CHECK_LIB(c_r, pthread_create, [
pthread_link=yes
LTHREAD_LIBS="$LTHREAD_LIBS -lc_r"])
LIBS="$save_LIBS"
fi
if test $pthread_link = no ; then
dnl try DEC Threads
save_LIBS="$LIBS"
AC_CHECK_LIB(pthread, pthread_create, [
pthread_link=yes
LTHREAD_DEFS="$LTHREAD_DEFS -DDEC_THREADS"
LTHREAD_LIBS="$LTHREAD_LIBS -lpthread -lmach -lexc -lc"],,
[-lmach -lexc -lc])
LIBS="$save_LIBS"
fi
else
LTHREAD_DEFS="-DNO_THREADS"
fi
fi
1998-09-19 11:53:11 +08:00
# check for strtok_r
save_LIBS="$LIBS"
LIBS="$save_LIBS $LTHREAD_LIBS"
AC_CHECK_LIB(pthread,strtok_r)
if test $ac_cv_lib_pthread_strtok_r = no ; then
AC_CHECK_LIB(c_r,strtok_r)
AC_CHECK_FUNCS(strtok_r pthread_init)
if test $ac_cv_lib_c_r_strtok_r = yes ; then
LTHREAD_LIBS="$LTHREAD_LIBS -lc_r"
fi
else
AC_CHECK_FUNCS(strtok_r)
fi
LIBS="$save_LIBS"
1998-09-16 11:01:24 +08:00
ldbm_use="none"
1998-09-19 05:45:15 +08:00
LDBM_DEFS=
LDBM_LIBS=
1998-09-16 11:01:24 +08:00
if test "$SLAPD_LDBM" = "yes" ; then
1998-09-16 11:01:24 +08:00
if test $ldbm_prefer = any -o $ldbm_prefer = dbbtree \
-o $ldbm_prefer = dbhash ; then
AC_CHECK_FUNC(dbopen,[
ldbm_use=$ldbm_prefer
ldbm_prefer=found],[
AC_CHECK_LIB(db,dbopen,[
ldbm_use=$ldbm_prefer
ldbm_prefer=found
1998-09-19 05:45:15 +08:00
LDBM_LIBS="$LDBM_LIBS -ldb"
1998-09-16 11:01:24 +08:00
])
])
if test $ldbm_prefer = found ; then
if test $ldbm_use = dbhash ; then
dnl AC_DEFINE(LDBM_USE_DBHASH,1)
1998-09-19 05:45:15 +08:00
LDBM_DEFS="$LDBM_DEFS -DLDBM_USE_DBHASH"
1998-09-16 11:01:24 +08:00
else
dnl AC_DEFINE(LDBM_USE_DBBTREE,1)
1998-09-19 05:45:15 +08:00
LDBM_DEFS="$LDBM_DEFS -DLDBM_USE_DBBTREE"
fi
fi
1998-09-19 10:31:39 +08:00
AC_CACHE_CHECK(for db2, cf_cv_db2,[
1998-09-19 05:45:15 +08:00
AC_EGREP_CPP(__db_version_2,[
#include <db.h>
/* this check could be improved */
#ifdef DB_VERSION_MAJOR
#if DB_VERSION_MAJOR == 2
__db_version_2
#endif
#endif
], cf_cv_db2=yes, cf_cv_db2=no)])
if test $cf_cv_db2 = yes ; then
if test $opt_db2 = yes ; then
LDBM_DEFS="$LDBM_DEFS -DLDBM_USE_DB2"
else
AC_CHECK_HEADERS(db_185.h)
if test $ac_cv_header_db_185_h = no ; then
1998-09-19 05:45:15 +08:00
AC_MSG_ERROR([select --with-db2 or install db2 with 1.85 compatibility])
fi
LDBM_DEFS="$LDBM_DEFS -DLDBM_USE_DB2_COMPAT185"
fi
else
if test $opt_db2 = yes ; then
AC_MSG_ERROR(could not local DB2)
1998-09-16 11:01:24 +08:00
fi
fi
fi
1998-09-16 11:01:24 +08:00
if test $ldbm_prefer = any -o $ldbm_prefer = gdbm ; then
AC_CHECK_LIB(gdbm, gdbm_open,[
ldbm_use=$ldbm_prefer
ldbm_prefer=found
1998-09-19 05:45:15 +08:00
LDBM_LIBS="$LDBM_LIBS -lgdbm"
dnl AC_DEFINE(LDBM_USE_GDBM,1)
1998-09-19 05:45:15 +08:00
LDBM_DEFS="$LDBM_DEFS -DLDBM_USE_GDBM"
1998-09-16 11:01:24 +08:00
])
fi
if test $ldbm_prefer = any -o $ldbm_prefer = ndbm ; then
AC_CHECK_LIB(dbm,dbm_open,[
ldbm_use=ndbm
ldbm_prefer=found
1998-09-19 05:45:15 +08:00
LDBM_LIBS="$LDBM_LIBS -ldbm"
dnl AC_DEFINE(LDBM_USE_NDBM,1)
1998-09-19 05:45:15 +08:00
LDBM_DEFS="$LDBM_DEFS -DLDBM_USE_NDBM"
1998-09-16 11:01:24 +08:00
])
fi
if test $ldbm_prefer != found ; then
AC_MSG_ERROR(could not find suitable db for $ldbm_prefer backend)
fi
if test $ldbm_use = ndbm ; then
AC_MSG_WARN(LDBM using NDBM, functionality will be limited)
fi
fi
if test "$SLAPD_TCP_WRAPPERS" = "yes" ; then
1998-09-19 07:07:56 +08:00
AC_CHECK_LIB(wrap, hosts_access, [
dnl LIBTCPD="-lwrap"
dnl AC_DEFINE(HAVE_TCPD)
SLAPD_DEFS="$SLAPD_DEFS -DTCP_WRAPPERS"
1998-09-19 07:07:56 +08:00
SLAPD_LIBS="$SLAPD_LIBS -lwrap"
])
fi
1998-09-16 11:01:24 +08:00
# ud needs termcap (should insert check here)
LIBTERMCAP="-ltermcap"
AC_SUBST(LIBTERMCAP)
# FreeBSD (and others) have crypt(3) in -lcrypt
if test "$SLAPD_CRYPT" = "yes" ; then
AC_CHECK_FUNC(crypt, have_crypt=yes, [
AC_CHECK_LIB(crypt, crypt, [LUTIL_LIBS="$LUTIL_LIBS -lcrypt"
have_crypt=yes], [have_crypt=no])])
if test $have_crypt = yes ; then
1998-09-19 07:07:56 +08:00
dnl AC_DEFINE(SLAPD_CRYPT,1)
LUTIL_DEFS="$LUTIL_DEFS -DLDAP_CRYPT"
else
AC_MSG_WARN(could not find crypt, disabling crypt support)
fi
fi
1998-09-16 11:01:24 +08:00
dnl ----------------------------------------------------------------
1998-09-16 11:01:24 +08:00
dnl Checks for header files.
AC_HEADER_DIRENT
AC_HEADER_STDC
AC_HEADER_SYS_WAIT
AC_CHECK_HEADERS( \
stddef.h \
fcntl.h \
limits.h \
malloc.h \
sgtty.h \
sys/file.h \
sys/ioctl.h \
sys/time.h \
syslog.h \
termio.h \
unistd.h \
)
dnl ----------------------------------------------------------------
1998-09-16 11:01:24 +08:00
dnl Checks for typedefs, structures, and compiler characteristics.
AC_TYPE_GETGROUPS
AC_TYPE_MODE_T
AC_TYPE_OFF_T
AC_TYPE_PID_T
AC_TYPE_SIGNAL
AC_TYPE_SIZE_T
AC_TYPE_UID_T
AC_STRUCT_ST_BLKSIZE
AC_HEADER_TIME
AC_STRUCT_TM
dnl AC_C_BIGENDIAN
AC_C_CONST
dnl ----------------------------------------------------------------
1998-09-16 11:01:24 +08:00
dnl Checks for library functions.
AC_FUNC_MEMCMP
AC_TYPE_SIGNAL
AC_FUNC_STRFTIME
AC_FUNC_VPRINTF
AC_FUNC_WAIT3
AC_CHECK_FUNCS( \
gethostname \
gettimeofday \
mktime \
select \
socket \
strdup \
strerror \
strstr \
strrchr \
strtod \
strtol \
strtoul \
1998-09-19 11:53:11 +08:00
strsep \
1998-09-16 11:01:24 +08:00
memcpy \
)
1998-09-19 11:53:11 +08:00
AC_REPLACE_FUNCS(strsep strdup)
1998-09-16 11:01:24 +08:00
dnl ----------------------------------------------------------------
1998-09-16 11:01:24 +08:00
# Check Configuration
CF_SYS_ERRLIST
1998-09-18 10:13:14 +08:00
AC_SUBST(BUILD_LDAPD)
AC_SUBST(BUILD_SLAPD)
AC_SUBST(SLAPD_LDBM)
AC_SUBST(SLAPD_PASSWD)
AC_SUBST(SLAPD_SHELL)
AC_SUBST(BUILD_SLURPD)
AC_SUBST(LDAP_DEFS)
AC_SUBST(LDAP_LIBS)
AC_SUBST(LDAPD_DEFS)
AC_SUBST(LDAPD_LIBS)
AC_SUBST(SLAPD_DEFS)
AC_SUBST(SLAPD_LIBS)
AC_SUBST(SLURPD_DEFS)
AC_SUBST(SLURPD_LIBS)
AC_SUBST(LDBM_DEFS)
AC_SUBST(LDBM_LIBS)
AC_SUBST(LTHREAD_DEFS)
AC_SUBST(LTHREAD_LIBS)
AC_SUBST(LUTIL_DEFS)
AC_SUBST(LUTIL_LIBS)
1998-09-16 11:14:16 +08:00
dnl AC_OUTPUT( \
dnl contrib/Makefile:build/top.mk:contrib/Makefile.in:build/dir.mk \
dnl contrib/saucer/Makefile:build/top.mk:contrib/saucer/Makefile.in:build/rules.mk \
dnl contrib/whois++/Makefile:build/top.mk:contrib/whois++/Makefile.in:build/rules.mk \
dnl [date > stamp-h])
AC_OUTPUT( \
Makefile:build/top.mk:Makefile.in:build/dir.mk \
doc/Makefile:build/top.mk:doc/Makefile.in:build/dir.mk \
doc/man/Makefile:build/top.mk:doc/man/Makefile.in:build/dir.mk \
1998-09-19 02:47:14 +08:00
doc/man/man1/Makefile:build/top.mk:doc/man/man1/Makefile.in:build/man.mk \
doc/man/man3/Makefile:build/top.mk:doc/man/man3/Makefile.in:build/man.mk \
doc/man/man5/Makefile:build/top.mk:doc/man/man5/Makefile.in:build/man.mk \
doc/man/man8/Makefile:build/top.mk:doc/man/man8/Makefile.in:build/man.mk \
clients/Makefile:build/top.mk:clients/Makefile.in:build/dir.mk \
1998-09-18 02:36:00 +08:00
clients/finger/Makefile:build/top.mk:clients/finger/Makefile.in:build/rules.mk \
clients/fax500/Makefile:build/top.mk:clients/fax500/Makefile.in:build/rules.mk \
clients/gopher/Makefile:build/top.mk:clients/gopher/Makefile.in:build/rules.mk \
clients/mail500/Makefile:build/top.mk:clients/mail500/Makefile.in:build/rules.mk \
clients/rcpt500/Makefile:build/top.mk:clients/rcpt500/Makefile.in:build/rules.mk \
clients/ud/Makefile:build/top.mk:clients/ud/Makefile.in:build/rules.mk \
clients/tools/Makefile:build/top.mk:clients/tools/Makefile.in:build/rules.mk \
include/Makefile:build/top.mk:include/Makefile.in \
1998-09-17 12:49:44 +08:00
libraries/Makefile:build/top.mk:libraries/Makefile.in:build/dir.mk \
1998-09-17 17:47:38 +08:00
libraries/libavl/Makefile:build/top.mk:libraries/libavl/Makefile.in:build/lib.mk \
libraries/liblber/Makefile:build/top.mk:libraries/liblber/Makefile.in:build/lib.mk \
libraries/libldap/Makefile:build/top.mk:libraries/libldap/Makefile.in:build/lib.mk \
libraries/libldbm/Makefile:build/top.mk:libraries/libldbm/Makefile.in:build/lib.mk \
libraries/libldif/Makefile:build/top.mk:libraries/libldif/Makefile.in:build/lib.mk \
libraries/liblthread/Makefile:build/top.mk:libraries/liblthread/Makefile.in:build/lib.mk \
libraries/liblutil/Makefile:build/top.mk:libraries/liblutil/Makefile.in:build/lib.mk \
servers/Makefile:build/top.mk:servers/Makefile.in:build/dir.mk \
servers/ldapd/Makefile:build/top.mk:servers/ldapd/Makefile.in:build/srv.mk \
1998-09-18 03:38:07 +08:00
servers/slapd/Makefile:build/top.mk:servers/slapd/Makefile.in:build/srv.mk \
1998-09-18 10:13:14 +08:00
servers/slapd/back-ldbm/Makefile:build/top.mk:servers/slapd/back-ldbm/Makefile.in:build/srv.mk \
servers/slapd/back-passwd/Makefile:build/top.mk:servers/slapd/back-passwd/Makefile.in:build/srv.mk \
servers/slapd/back-shell/Makefile:build/top.mk:servers/slapd/back-shell/Makefile.in:build/srv.mk \
servers/slapd/shell-backends/Makefile:build/top.mk:servers/slapd/shell-backends/Makefile.in:build/srv.mk \
servers/slapd/tools/Makefile:build/top.mk:servers/slapd/tools/Makefile.in \
servers/slurpd/Makefile:build/top.mk:servers/slurpd/Makefile.in:build/srv.mk \
tests/Makefile:build/top.mk:tests/Makefile.in \
,[date > stamp-h])