summaryrefslogtreecommitdiffstats
path: root/ldapaddressbook/configure.ac
blob: b0cea5b6c8e84cd4b6bd607ab231ea1c8216a333 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
dnl Process this file with autoconf to produce a configure script.
dnl
dnl Copyright 2000 - 2006 Double Precision, Inc.  See COPYING for
dnl distribution information.

AC_INIT(ldapaddressbook, 0.10, [courier-users@lists.sourceforge.net])

>confdefs.h  # Kill PACKAGE_ macros

AC_CONFIG_SRCDIR(Makefile.am)
AC_CONFIG_AUX_DIR(../..)
AM_INIT_AUTOMAKE([foreign no-define])
LPATH="$PATH:/usr/local/bin"
AC_CONFIG_HEADERS(config.h)

dnl Checks for programs.
AC_USE_SYSTEM_EXTENSIONS
AC_PROG_CC
AC_PROG_CC_C99
AC_PROG_LIBTOOL

dnl Checks for libraries.

dnl Checks for header files.
AC_HEADER_STDC
AC_CHECK_HEADERS(stdio.h sys/wait.h sys/time.h)
AC_HEADER_TIME

AC_ARG_WITH(ldapaddressbook,
[  --without-ldapaddressbook   Disable LDAP address book code ],
   HAVE_OPENLDAP="$withval",
   HAVE_OPENLDAP=1)

OPENLDAP_LIBS=""

if test "$HAVE_OPENLDAP" = 1
then
	HAVE_OPENLDAP=0

AC_CHECK_HEADERS([lber.h])
AC_CHECK_HEADERS([ldap.h],
	[ HAVE_OPENLDAP=1 ],,[
#if HAVE_LBER_H
#include <lber.h>
#endif
])

if test "$HAVE_OPENLDAP" = 1
then
	save_LIBS="$LIBS"
	LIBS="$LIBS -lldap"
	AC_TRY_LINK([
#include <stdio.h>
#if HAVE_LBER_H
#include <lber.h>
#endif
#include <ldap.h>
],
[
	(void)ldap_err2string(0);
],
[
	:
],
[
	AC_MSG_ERROR([ldap.h header found, but a test compile failed -- check ldapaddressbook/config.log for more details])
])
	LIBS="$save_LIBS"
	OPENLDAP_LIBS="-lldap"
fi
fi

AC_DEFINE_UNQUOTED(HAVE_OPENLDAP, $HAVE_OPENLDAP,
		[ Whether openldap support has been detected ])

AM_CONDITIONAL(HAVE_OPENLDAP, [test $HAVE_OPENLDAP = 1])
AC_SUBST(OPENLDAP_LIBS)

AC_HEADER_SYS_WAIT
dnl Checks for typedefs, structures, and compiler characteristics.
AC_C_CONST
AC_SYS_LARGEFILE

AM_CONDITIONAL(HAVE_SGML, test -d ${srcdir}/../docbook)

dnl Checks for library functions.

AC_OUTPUT(Makefile)