Version 5.0.0.
[libpwmd.git] / configure.ac
blob545bcc9271360f98f3cb6d66fbc95d7f5fc74c95
1 dnl Process this file with autoconf to produce a configure script.
2 AC_PREREQ(2.59)
3 AC_INIT(libpwmd, 5.0.0, [Ben Kibbey bjk@luxsci.net])
4 AC_CONFIG_AUX_DIR(build)
5 AC_CANONICAL_TARGET
6 AM_INIT_AUTOMAKE([foreign])
7 AC_PROG_MAKE_SET
8 #AC_DISABLE_SHARED
9 AC_PROG_LIBTOOL
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])
15 case "$target_os" in
16     darwin*)
17         LDFLAGS="$LDFLAGS -flat_namespace -L/sw/lib"
18         CPPFLAGS="$CPPFLAGS -I/sw/include -L/sw/lib"
19         ;;
20     *)
21         ;;
22 esac
24 CFLAGS="$CFLAGS -D_GNU_SOURCE"
26 dnl Checks for programs.
27 AC_PROG_CC
29 dnl Checks for header files.
30 AC_HEADER_STDC
31 AC_HEADER_SYS_WAIT
32 AC_CHECK_HEADERS([fcntl.h limits.h stdlib.h string.h unistd.h sys/socket.h \
33                   assuan.h])
35 dnl Checks for typedefs, structures, and compiler characteristics.
36 AC_C_CONST
37 AC_TYPE_SIZE_T
38 AC_STRUCT_TM
39 AC_TYPE_SSIZE_T
40 AC_TYPE_PID_T
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.
46 AC_FUNC_MALLOC
47 AC_FUNC_REALLOC
48 AC_FUNC_STRFTIME
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],
55     if test "$1"; then
56         ac_cv_sys_mem_debug=$1
57     fi
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="/usr/bin/pinentry"
82 AC_ARG_WITH(pinentry, AC_HELP_STRING([--with-pinentry=PATH],
83               [Default location of the pinentry binary (/usr/bin/pinentry)]),
84               pinentry="$withval")
86 AC_SUBST(pinentry)
87 AC_DEFINE_UNQUOTED(PINENTRY_PATH, ["$pinentry"], [Default location of the pinentry binary.])
89 AC_CONFIG_FILES([Makefile libpwmd.pc libpwmd.3 pwmc.1 po/Makefile.in])
90 AC_OUTPUT