Reimplement GnuTLS support.
[pwmd.git] / configure.ac
blob84c2221d7c2b46ebbdb2963d1156bfe5c51a755d
1 dnl Process this file with autoconf to produce a configure script.
2 AC_PREREQ(2.60)
3 AC_INIT(pwmd, 3.0.0-dev, [Ben Kibbey bjk@luxsci.net])
4 AC_CONFIG_AUX_DIR(build)
5 AC_CANONICAL_TARGET
6 AM_INIT_AUTOMAKE([foreign dist-bzip2 no-dist-gzip])
7 AC_PROG_MAKE_SET
8 AC_USE_SYSTEM_EXTENSIONS()
9 AC_CONFIG_SRCDIR([src/pwmd.c])
10 AM_CONFIG_HEADER([config.h])
11 AM_GNU_GETTEXT([external])
12 AM_GNU_GETTEXT_VERSION([0.16.1])
14 dnl Checks for programs.
15 AC_PROG_CC_C99
17 if test "$ac_cv_prog_cc_c99" = "no"; then
18     AC_MSG_WARN("Unable to find a C99 compatible compiler.")
21 AC_PROG_AWK
22 AC_PROG_LN_S
23 AC_PROG_INSTALL
24 AC_PROG_LN_S
25 AC_PROG_RANLIB
26 AC_PROG_CPP
27 AC_PROG_MKDIR_P
29 dnl Checks for library functions.
30 ACX_PTHREAD(, [POSIX threads are required])
31 CC="$PTHREAD_CC"
32 AM_PATH_LIBASSUAN([2.0.2],, AC_MSG_ERROR([libassuan not found]))
33 PKG_PROG_PKG_CONFIG()
34 PKG_CHECK_MODULES([LIBGTHREAD], [gthread-2.0 >= 2.16.0])
35 AM_PATH_LIBGCRYPT([1.5.0],, AC_MSG_ERROR([libgcrypt not found]))
36 AM_PATH_XML2(,, AC_MSG_ERROR([libxml2 not found]))
37 AM_PATH_GPG_ERROR(,, AC_MSG_ERROR([libgpg-error not found]))
38 dnl For data file conversion.
39 AC_CHECK_LIB(z, deflate,,
40              AC_MSG_ERROR([Version 1.2.2.1 or later of zlib is required]))
41 AC_ARG_ENABLE(gnutls, AC_HELP_STRING([--enable-gnutls], 
42               [Enable TCP (GnuTLS) server support.]), USE_GNUTLS=$enableval,
43               USE_GNUTLS=no)
44 if test "x$USE_GNUTLS" = "xyes"; then
45     PKG_CHECK_MODULES([GNUTLS], [gnutls])
46     AC_DEFINE(WITH_GNUTLS, 1, [Define if you want TCP (GnuTLS) support.])
48 AM_CONDITIONAL(WITH_GNUTLS, [test "x$USE_GNUTLS" = "xyes"])
50 dnl Checks for header files.
51 AC_HEADER_STDC
52 AC_HEADER_SYS_WAIT
53 AC_CHECK_HEADERS([fcntl.h stdlib.h string.h sys/time.h unistd.h libintl.h \
54                   locale.h syslog.h termios.h zlib.h getopt.h])
55 AC_CHECK_HEADER([linux/prctl.h],
56                 AC_CHECK_DECL([PR_SET_NAME],,, [[#include <linux/prctl.h>]]))
57 if test "x$ac_cv_have_decl_PR_SET_NAME" = xyes; then
58   AC_DEFINE(HAVE_PR_SET_NAME, 1,
59             [Defined if PR_SET_NAME is available (Linux specific)])
62 dnl Checks for typedefs, structures, and compiler characteristics.
63 AC_SYS_LARGEFILE
64 AC_C_CONST
65 AC_C_INLINE
66 AC_TYPE_MODE_T
67 AC_TYPE_SIZE_T
68 AC_STRUCT_TM
69 AC_TYPE_PID_T
70 AC_TYPE_SIGNAL
73 # Check for the getsockopt SO_PEERCRED
75 AC_MSG_CHECKING(for SO_PEERCRED)
76 AC_CACHE_VAL(pwmd_cv_sys_so_peercred,
77       [AC_TRY_COMPILE([#include <sys/socket.h>], 
78          [struct ucred cr; 
79           int cl = sizeof cr;
80           getsockopt (1, SOL_SOCKET, SO_PEERCRED, &cr, &cl);],
81           pwmd_cv_sys_so_peercred=yes,
82           pwmd_cv_sys_so_peercred=no)
83        ])
84 AC_MSG_RESULT($pwmd_cv_sys_so_peercred) 
85 if test $pwmd_cv_sys_so_peercred = yes; then
86   AC_DEFINE(HAVE_SO_PEERCRED, 1,
87             [Defined if SO_PEERCRED is supported (Linux specific)])
90 dnl Checks for library functions.
91 AC_FUNC_STAT
92 AC_FUNC_FORK
93 AC_FUNC_MALLOC
94 AC_FUNC_MEMCMP
95 AC_FUNC_STRFTIME
96 AC_CHECK_FUNCS([memset mkdir munmap setlocale socket strchr strerror strrchr \
97                 strstr strtol setrlimit mlockall getopt_long backtrace])
98 AM_CONDITIONAL([NEED_GETOPT_LONG], [test "$ac_cv_func_getopt_long" != "yes"])
100 AC_DEFUN([AC_DEBUG],
102     if test "$1"; then
103         ac_cv_sys_debug=$1
104     fi
106     AC_CACHE_CHECK([if debugging is wanted], [ac_cv_sys_debug],
107         [ac_cv_sys_debug=no])
108     AM_CONDITIONAL([WITH_DEBUG], [test "$ac_cv_sys_debug" = "yes"])
111 AC_ARG_ENABLE(debug, AC_HELP_STRING([--enable-debug], [Enable debugging (memory de/allocations output).]),
112     AC_DEBUG([$enableval]), AC_DEBUG)
114 AC_DEFUN([AC_MEM_DEBUG],
116     if test "$1"; then
117         ac_cv_sys_mem_debug=$1
118     fi
120     AC_CACHE_CHECK([if memory debugging is wanted], [ac_cv_sys_mem_debug],
121         [ac_cv_sys_mem_debug=no])
122     AM_CONDITIONAL([WITH_MEM_DEBUG], [test "$ac_cv_sys_mem_debug" = "yes"])
125 AC_DEFUN([AC_MUTEX_DEBUG],
127     if test "$1"; then
128         ac_cv_sys_mutex_debug=$1
129     fi
131     AC_CACHE_CHECK([if mutex debugging is wanted], [ac_cv_sys_mutex_debug],
132         [ac_cv_sys_mutex_debug=no])
133     AM_CONDITIONAL([WITH_MUTEX_DEBUG], [test "$ac_cv_sys_mutex_debug" = "yes"])
136 AC_ARG_ENABLE(mutex_debug, AC_HELP_STRING([--enable-mutex-debug], [Enable mutex debugging output.]),
137     AC_MUTEX_DEBUG([$enableval]), AC_MUTEX_DEBUG)
139 # Libacl support (for data files).
140 AC_ARG_ENABLE(acl, AC_HELP_STRING([--enable-acl], 
141               [Enable Access Control List support]), USE_LIBACL=yes,
142               USE_LIBACL=no)
143 if test "x$USE_LIBACL" = "xyes"; then
144     AC_CHECK_LIB(acl, acl_get_file,,
145                     AC_MSG_ERROR([Missing or incomplete libacl installation.]))
146     AC_CHECK_HEADER([sys/acl.h],,
147                     AC_MSG_ERROR([Missing or incomplete libacl installation.]))
148     AC_DEFINE(WITH_LIBACL, 1, [Define if you want libacl support.])
150 AM_CONDITIONAL(WITH_LIBACL, [test "x$USE_LIBACL" = "xyes"])
152 # Memory debugging.
153 AC_ARG_ENABLE(mem_debug, AC_HELP_STRING([--enable-mem-debug], [Disable internal memory manager.]),
154     AC_MEM_DEBUG([$enableval]), AC_MEM_DEBUG)
155 AM_CONDITIONAL(MEM_DEBUG, test x"${ac_cv_sys_mem_debug}" != xno)
157 VERSION_MAJOR="`echo "$VERSION" | sed 's/\([[0-9]]*\)\.\([[0-9]]*\)\.\([[0-9]]*\).*/\1/'`"
158 VERSION_MINOR="`echo "$VERSION" | sed 's/\([[0-9]]*\)\.\([[0-9]]*\)\.\([[0-9]]*\).*/\2/'`"
159 VERSION_PATCH="`echo "$VERSION" | sed 's/\([[0-9]]*\)\.\([[0-9]]*\)\.\([[0-9]]*\).*/\3/'`"
160 VERSION_NUM="`printf 0x%02x%02x%02X ${VERSION_MAJOR} ${VERSION_MINOR} ${VERSION_PATCH}`"
161 AC_DEFINE_UNQUOTED(VERSION_HEX, ${VERSION_NUM}, [For the file header.])
163 AC_CONFIG_FILES([Makefile src/Makefile doc/Makefile doc/pwmd.1 po/Makefile.in])
164 AC_OUTPUT
165 echo
166 echo "Features:"
167 echo "    Debug: ${ac_cv_sys_debug}"
168 echo "    Memory debug: ${ac_cv_sys_mem_debug}"
169 echo "    Mutex debug: ${ac_cv_sys_mutex_debug}"
170 echo "    ACL: $USE_LIBACL"
171 echo "    TCP (GnuTLS): $USE_GNUTLS"