1 dnl Process this file with autoconf to produce a configure script.
3 AC_INIT(pwmd, 0.2, [Ben Kibbey bjk@luxsci.net])
4 AC_CONFIG_AUX_DIR(build)
6 AM_INIT_AUTOMAKE([foreign])
8 AC_CONFIG_SRCDIR([src/pwmd.c])
9 AM_CONFIG_HEADER([config.h])
10 AC_CONFIG_SUBDIRS([libpwmd])
12 CFLAGS="$CFLAGS -D_GNU_SOURCE"
14 dnl Checks for programs.
19 AM_PATH_GLIB_2_0(,, AC_MSG_ERROR([glib2 not found]))
20 AM_PATH_LIBGCRYPT(,, AC_MSG_ERROR([libgcrypt not found]))
22 dnl Checks for library functions.
23 AC_CHECK_PROG([have_xmlconfig], [xml2-config], [yes], [no])
25 if test "x$have_xmlconfig" = "xno"; then
26 AC_MSG_ERROR([xml2-config not found])
29 XML_CFLAGS="`xml2-config --cflags`"
30 XML_LIBS="`xml2-config --libs`"
35 dnl Checks for header files.
38 AC_CHECK_HEADERS([fcntl.h arpa/inet.h netdb.h netinet/in.h stdlib.h string.h \
39 sys/socket.h sys/time.h unistd.h])
41 dnl Checks for typedefs, structures, and compiler characteristics.
49 dnl Checks for library functions.
56 AC_FUNC_SELECT_ARGTYPES
57 AC_CHECK_FUNCS([mkdir strerror gethostbyname memset select socket strcasecmp \
58 strdup strncasecmp strchr setrlimit mlock mlockall ftruncate \
59 getcwd memmove munmap strrchr strtol ])
67 AC_CACHE_CHECK([if debugging is wanted], [ac_cv_sys_debug],
69 AM_CONDITIONAL([WITH_DEBUG], [test "$ac_cv_sys_debug" = "yes"])
72 AC_ARG_ENABLE(debug, AC_HELP_STRING([--enable-debug], [Enable debugging.]),
73 AC_DEBUG([$enableval]), AC_DEBUG)
77 AC_CONFIG_FILES([Makefile src/Makefile doc/Makefile])