1 dnl Process this file with autoconf to produce a configure script.
3 AC_INIT(libpwmd, 4.0.2, [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(,, 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_ARG_ENABLE(pinentry, AC_HELP_STRING([--disable-pinentry],
54 [Disable pinentry(1) support.]), USE_PINENTRY=no,
55 USE_PINENTRY=$enableval)
57 if test $USE_PINENTRY = "yes"; then
58 AC_CHECK_HEADERS([locale.h])
59 AC_DEFINE(USE_PINENTRY, 1, [Define if you want pinentry(1) support.])
62 AM_CONDITIONAL(USE_PINENTRY, [test $USE_PINENTRY = "yes"])
65 AC_CONFIG_FILES([Makefile libpwmd.pc libpwmd.3 po/Makefile.in])