1 dnl Process this file with autoconf to produce a configure script.
3 AC_INIT(libpwmd, 4.0.3, [Ben Kibbey bjk@luxsci.net])
4 AC_CONFIG_AUX_DIR(build)
6 AM_INIT_AUTOMAKE([foreign])
10 AC_CONFIG_SRCDIR([libpwmd.c])
11 AM_CONFIG_HEADER([config.h])
12 AM_GNU_GETTEXT([external])
13 AM_GNU_GETTEXT_VERSION([0.16.1])
17 LDFLAGS="$LDFLAGS -flat_namespace -L/sw/lib"
18 CPPFLAGS="$CPPFLAGS -I/sw/include -L/sw/lib"
24 CFLAGS="$CFLAGS -D_GNU_SOURCE"
26 dnl Checks for programs.
29 dnl Checks for header files.
32 AC_CHECK_HEADERS([fcntl.h limits.h stdlib.h string.h unistd.h sys/socket.h \
35 dnl Checks for typedefs, structures, and compiler characteristics.
42 AM_PATH_LIBASSUAN(1.0.4,, AC_MSG_ERROR([libassuan not found]))
43 AM_PATH_GPG_ERROR(,, AC_MSG_ERROR([libgpg-error not found]))
45 dnl Checks for library functions.
49 AC_FUNC_SELECT_ARGTYPES
50 AC_CHECK_FUNCS([memmove select socket strdup strerror setlocale getcwd \
51 memset stpcpy strchr strrchr])
53 AC_DEFUN([AC_MEM_DEBUG],
56 ac_cv_sys_mem_debug=$1
59 AC_CACHE_CHECK([if memory debugging is wanted], [ac_cv_sys_mem_debug],
60 [ac_cv_sys_mem_debug=no])
61 AM_CONDITIONAL([WITH_MEM_DEBUG], [test "$ac_cv_sys_mem_debug" = "yes"])
64 AC_ARG_ENABLE(mem_debug, AC_HELP_STRING([--enable-mem-debug], [Enable memory debugging.]),
65 AC_MEM_DEBUG([$enableval]), AC_MEM_DEBUG)
67 AM_CONDITIONAL(MEM_DEBUG, test x"${ac_cv_sys_mem_debug}" != xno)
69 AC_ARG_ENABLE(pinentry, AC_HELP_STRING([--disable-pinentry],
70 [Disable pinentry(1) support.]), USE_PINENTRY=no,
71 USE_PINENTRY=$enableval)
73 if test $USE_PINENTRY = "yes"; then
74 AC_CHECK_HEADERS([locale.h])
75 AC_DEFINE(USE_PINENTRY, 1, [Define if you want pinentry(1) support.])
78 AM_CONDITIONAL(USE_PINENTRY, [test $USE_PINENTRY = "yes"])
80 pinentry_path="/usr/bin/pinentry"
82 AC_ARG_WITH(pinentry_path, AC_HELP_STRING([--with-pinentry-path=PATH],
83 [Default location of the pinentry binary (/usr/bin/pinentry)]),
84 pinentry_path="$withval")
86 AC_SUBST(pinentry_path)
87 AC_DEFINE_UNQUOTED(PINENTRY_PATH, ["$pinentry_path"], [Default location of the pinentry binary.])
88 AC_CONFIG_FILES([Makefile libpwmd.pc libpwmd.3 pwmc.1 po/Makefile.in])