Dont append duplicate status messages to the queue.
[pwmd.git] / configure.ac
blobd974033cab66aff38eba39d263dd9703f86555b0
1 dnl Process this file with autoconf to produce a configure script.
2 AC_PREREQ(2.60)
3 AC_INIT(pwmd, 3.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.14.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]))
42 dnl Checks for header files.
43 AC_HEADER_STDC
44 AC_HEADER_SYS_WAIT
45 AC_CHECK_HEADERS([fcntl.h stdlib.h string.h sys/time.h unistd.h libintl.h \
46                   locale.h syslog.h termios.h zlib.h getopt.h])
48 dnl Checks for typedefs, structures, and compiler characteristics.
49 AC_SYS_LARGEFILE
50 AC_C_CONST
51 AC_C_INLINE
52 AC_TYPE_MODE_T
53 AC_TYPE_SIZE_T
54 AC_STRUCT_TM
55 AC_TYPE_PID_T
56 AC_TYPE_SIGNAL
59 # Check for the getsockopt SO_PEERCRED
61 AC_MSG_CHECKING(for SO_PEERCRED)
62 AC_CACHE_VAL(pwmd_cv_sys_so_peercred,
63       [AC_TRY_COMPILE([#include <sys/socket.h>], 
64          [struct ucred cr; 
65           int cl = sizeof cr;
66           getsockopt (1, SOL_SOCKET, SO_PEERCRED, &cr, &cl);],
67           pwmd_cv_sys_so_peercred=yes,
68           pwmd_cv_sys_so_peercred=no)
69        ])
70 AC_MSG_RESULT($pwmd_cv_sys_so_peercred) 
71 if test $pwmd_cv_sys_so_peercred = yes; then
72   AC_DEFINE(HAVE_SO_PEERCRED, 1,
73             [Defined if SO_PEERCRED is supported (Linux specific)])
76 dnl Checks for library functions.
77 AC_FUNC_STAT
78 AC_FUNC_FORK
79 AC_FUNC_MALLOC
80 AC_FUNC_MEMCMP
81 AC_FUNC_STRFTIME
82 AC_CHECK_FUNCS([memset mkdir munmap setlocale socket strchr strerror strrchr \
83                 strstr strtol setrlimit mlockall getopt_long backtrace])
84 AM_CONDITIONAL([NEED_GETOPT_LONG], [test "$ac_cv_func_getopt_long" != "yes"])
86 AC_DEFUN([AC_DEBUG],
88     if test "$1"; then
89         ac_cv_sys_debug=$1
90     fi
92     AC_CACHE_CHECK([if debugging is wanted], [ac_cv_sys_debug],
93         [ac_cv_sys_debug=no])
94     AM_CONDITIONAL([WITH_DEBUG], [test "$ac_cv_sys_debug" = "yes"])
97 AC_ARG_ENABLE(debug, AC_HELP_STRING([--enable-debug], [Enable debugging (memory de/allocations output).]),
98     AC_DEBUG([$enableval]), AC_DEBUG)
100 AC_DEFUN([AC_MEM_DEBUG],
102     if test "$1"; then
103         ac_cv_sys_mem_debug=$1
104     fi
106     AC_CACHE_CHECK([if memory debugging is wanted], [ac_cv_sys_mem_debug],
107         [ac_cv_sys_mem_debug=no])
108     AM_CONDITIONAL([WITH_MEM_DEBUG], [test "$ac_cv_sys_mem_debug" = "yes"])
111 AC_DEFUN([AC_MUTEX_DEBUG],
113     if test "$1"; then
114         ac_cv_sys_mutex_debug=$1
115     fi
117     AC_CACHE_CHECK([if mutex debugging is wanted], [ac_cv_sys_mutex_debug],
118         [ac_cv_sys_mutex_debug=no])
119     AM_CONDITIONAL([WITH_MUTEX_DEBUG], [test "$ac_cv_sys_mutex_debug" = "yes"])
122 AC_ARG_ENABLE(mutex_debug, AC_HELP_STRING([--enable-mutex-debug], [Enable mutex debugging output.]),
123     AC_MUTEX_DEBUG([$enableval]), AC_MUTEX_DEBUG)
125 # Libacl support (for data files).
126 AC_ARG_ENABLE(acl, AC_HELP_STRING([--enable-acl], 
127               [Enable Access Control List support]), USE_LIBACL=yes,
128               USE_LIBACL=no)
129 if test "x$USE_LIBACL" = "xyes"; then
130     AC_CHECK_LIB(acl, acl_get_file,,
131                     AC_MSG_ERROR([Missing or incomplete libacl installation.]))
132     AC_CHECK_HEADER([sys/acl.h],,
133                     AC_MSG_ERROR([Missing or incomplete libacl installation.]))
134     AC_DEFINE(WITH_LIBACL, 1, [Define if you want libacl support.])
136 AM_CONDITIONAL(WITH_LIBACL, [test "x$USE_LIBACL" = "xyes"])
138 # Memory debugging.
139 AC_ARG_ENABLE(mem_debug, AC_HELP_STRING([--enable-mem-debug], [Disable internal memory manager.]),
140     AC_MEM_DEBUG([$enableval]), AC_MEM_DEBUG)
141 AM_CONDITIONAL(MEM_DEBUG, test x"${ac_cv_sys_mem_debug}" != xno)
143 VER_MAJOR="`echo "$VERSION" | sed 's/\([[0-9]]*\)\.\([[0-9]]*\).*/\1/'`"
144 VER_MINOR="`echo "$VERSION" | sed 's/\([[0-9]]*\)\.\([[0-9]]*\).*/\2/'`"
145 VER_MOD="`if test \`echo -n $VER_MINOR | wc -c\` -eq 1; then echo 0$VER_MINOR; else echo $VER_MINOR; fi`"
146 AC_DEFINE_UNQUOTED(VERSION_HEX, 0x${VER_MAJOR}${VER_MOD}, [For the file header.])
148 AC_CONFIG_FILES([Makefile src/Makefile doc/Makefile doc/pwmd.1 po/Makefile.in])
149 AC_OUTPUT
150 echo
151 echo "Features:"
152 echo "    Debug: ${ac_cv_sys_debug}"
153 echo "    Memory debug: ${ac_cv_sys_mem_debug}"
154 echo "    Mutex debug: ${ac_cv_sys_mutex_debug}"
155 echo "    ACL: $USE_LIBACL"