1 dnl Process this file with autoconf to produce a configure script.
3 AC_INIT(libpwmd, 8.0.0-dev, [Ben Kibbey bjk@luxsci.net])
4 AC_CONFIG_MACRO_DIR([m4])
5 AC_CONFIG_AUX_DIR(build)
7 AM_INIT_AUTOMAKE([foreign dist-bzip2 no-dist-gzip])
10 AC_USE_SYSTEM_EXTENSIONS
12 AC_CONFIG_SRCDIR([src/libpwmd.c])
13 AM_CONFIG_HEADER([config.h])
14 AM_GNU_GETTEXT([external])
15 AM_GNU_GETTEXT_VERSION([0.16.1])
17 VER_MAJOR="`echo "$VERSION" | sed 's/\([[0-9]]*\)\.\([[0-9]]*\)\.\([[0-9]]*\).*/\1/'`"
18 VER_MINOR="`echo "$VERSION" | sed 's/\([[0-9]]*\)\.\([[0-9]]*\)\.\([[0-9]]*\).*/\2/'`"
19 VER_PATCH="`echo "$VERSION" | sed 's/\([[0-9]]*\)\.\([[0-9]]*\)\.\([[0-9]]*\).*/\3/'`"
23 VER_MAJOR_HEX=`printf "%02X" $VER_MAJOR`
24 VER_MINOR_HEX=`printf "%02X" $VER_MINOR`
25 VER_PATCH_HEX=`printf "%02X" $VER_PATCH`
26 AC_SUBST(VER_MAJOR_HEX)
27 AC_SUBST(VER_MINOR_HEX)
28 AC_SUBST(VER_PATCH_HEX)
29 VER_STRING="\"$VERSION\""
34 LDFLAGS="$LDFLAGS -flat_namespace -L/sw/lib"
35 CPPFLAGS="$CPPFLAGS -I/sw/include -L/sw/lib"
40 LDFLAGS="$LDFLAGS -lrt"
50 dnl Checks for programs.
53 if test "$ac_cv_prog_cc_c99" = "no"; then
54 AC_MSG_ERROR("Unable to find a C99 compatible compiler.")
57 dnl Borrowed from libssh2!
58 dnl ************************************************************
59 dnl Enable hiding of internal symbols in library to reduce its size and
60 dnl speed dynamic linking of applications. This currently is only supported
61 dnl on gcc >= 4.0 and SunPro C.
63 AC_MSG_CHECKING([whether to enable hidden symbols in the library])
64 AC_ARG_ENABLE(hidden-symbols,
65 AC_HELP_STRING([--enable-hidden-symbols],[Hide internal symbols in library])
66 AC_HELP_STRING([--disable-hidden-symbols],[Leave all symbols with default visibility in library]),
67 [ case "$enableval" in
72 AC_MSG_CHECKING([whether $CC supports it])
73 if test "$GCC" = yes ; then
74 if $CC --help --verbose 2>&1 | grep fvisibility= > /dev/null ; then
76 AC_DEFINE(LIBPWMD_API, [__attribute__ ((visibility ("default")))], [to make a symbol visible])
77 CFLAGS="$CFLAGS -fvisibility=hidden"
83 dnl Test for SunPro cc
84 if $CC 2>&1 | grep flags >/dev/null && $CC -flags | grep xldscope= >/dev/null ; then
86 AC_DEFINE(LIBPWMD_API, [__global], [to make a symbol visible])
87 CFLAGS="$CFLAGS -xldscope=hidden"
97 dnl Checks for header files.
100 AC_CHECK_HEADERS([fcntl.h limits.h stdlib.h string.h unistd.h sys/socket.h \
103 dnl Checks for typedefs, structures, and compiler characteristics.
110 ACX_PTHREAD(, AC_MSG_ERROR([Missing or incomplete pthread installation]))
113 AC_ARG_ENABLE(interactive, AC_HELP_STRING([--disable-interactive], [Disable interactive mode in pwmc.]),
114 WITH_INTERACTIVE=no, WITH_INTERACTIVE=yes)
115 AC_MSG_CHECKING([if interactive mode is wanted])
116 AC_MSG_RESULT($WITH_INTERACTIVE)
117 if test "x$WITH_INTERACTIVE" = "xyes"; then
120 if test "x$vl_cv_lib_readline" != "xno"; then
121 READLINE_LIBS="$vl_cv_lib_readline"
122 AC_SUBST(READLINE_LIBS)
124 AC_MSG_ERROR([Missing or incomplete readline installation.])
125 WITH_INTERACTIVE="no"
128 AM_CONDITIONAL([WITH_READLINE], [test x"$vl_cv_lib_readline" != "x"])
130 AM_PATH_LIBASSUAN([2.1.0], have_libassuan_2_1_0=yes)
131 if test x"$have_libassuan_2_1_0" != x"yes";then
132 AM_PATH_LIBASSUAN([2.0.3],, AC_MSG_ERROR([libassuan 2.0.3 or later required.]))
134 AC_DEFINE(LIBASSUAN_2_1_0, 1, [Define if you have libassuan 2.1.0 or later.])
137 AM_PATH_GPG_ERROR(,, AC_MSG_ERROR([Missing or incomplete libgpg-error installation.]))
139 AC_ARG_ENABLE(ssh, AC_HELP_STRING([--enable-ssh], [Enable SSH support.]),
140 WITH_SSH=$enableval, WITH_SSH=no)
141 AC_MSG_CHECKING([if ssh support is wanted])
142 AC_MSG_RESULT($WITH_SSH)
143 if test "x$WITH_SSH" = "xyes"; then
144 AC_MSG_CHECKING([for libssh2 availability])
145 PKG_CHECK_EXISTS([libssh2], have_libssh2=1)
148 if test $have_libssh2; then
149 PKG_CHECK_MODULES([libssh2], [libssh2 >= 1.2.9])
150 AC_DEFINE(WITH_SSH, 1, [Define if you want SSH support.])
153 AC_MSG_ERROR([Missing or incomplete libssh2 installation.])
156 AM_CONDITIONAL([WITH_SSH], [test "x$WITH_SSH" = "xyes"])
158 AC_ARG_ENABLE(gnutls, AC_HELP_STRING([--enable-gnutls],
159 [Enable GnuTLS client support.]), WITH_GNUTLS=$enableval,
161 AC_MSG_CHECKING([if gnutls support is wanted])
162 AC_MSG_RESULT($WITH_GNUTLS)
163 if test "x$WITH_GNUTLS" = "xyes"; then
164 AC_MSG_CHECKING([for libgnutls availability])
165 PKG_CHECK_EXISTS(gnutls, have_libgnutls=1, AC_MSG_ERROR([gnutls pkg-config module not found]))
168 if test $have_libgnutls; then
169 PKG_CHECK_MODULES([GNUTLS], [gnutls])
170 AC_DEFINE(WITH_GNUTLS, 1, [Define if you want GnuTLS support.])
173 AC_MSG_ERROR([Missing or incomplete gnutls installation.])
176 AM_CONDITIONAL(WITH_GNUTLS, [test "x$WITH_GNUTLS" = "xyes"])
178 # Default pwmd socket.
179 AC_ARG_WITH(pwmd_socket, AC_HELP_STRING([--with-pwmd-socket=PATH],
180 [Default pwmd socket (~/.pwmd/socket)]),
181 pwmd_socket="$withval", pwmd_socket=)
182 if test x"$pwmd_socket" != "x"; then
183 AC_DEFINE_UNQUOTED(DEFAULT_PWMD_SOCKET, ["$pwmd_socket"],
184 [Default pwmd socket (~/.pwmd/socket).])
186 pwmd_socket="~/.pwmd/socket"
188 AC_SUBST(pwmd_socket)
190 dnl Checks for library functions.
194 AC_FUNC_SELECT_ARGTYPES
195 AC_CHECK_FUNCS([memmove select socket strdup strerror setlocale getcwd \
196 memset stpcpy strchr strrchr strtok_r getopt_long getpwuid_r])
197 AM_CONDITIONAL([NEED_GETOPT_LONG], [test "$ac_cv_func_getopt_long" != "yes"])
199 AC_DEFUN([AC_MEM_DEBUG],
202 ac_cv_sys_mem_debug=$1
205 AC_CACHE_CHECK([if memory debugging is wanted], [ac_cv_sys_mem_debug],
206 [ac_cv_sys_mem_debug=no])
207 AM_CONDITIONAL([WITH_MEM_DEBUG], [test "$ac_cv_sys_mem_debug" = "yes"])
210 AC_ARG_ENABLE(mem_debug, AC_HELP_STRING([--enable-mem-debug],
211 [Enable memory debugging.]), AC_MEM_DEBUG([$enableval]),
214 AM_CONDITIONAL(MEM_DEBUG, test "x${ac_cv_sys_mem_debug}" != "xno")
216 AC_ARG_ENABLE(pinentry, AC_HELP_STRING([--disable-pinentry],
217 [Disable pinentry(1) support (not pwmd).]), WITH_PINENTRY=no,
220 if test "x$WITH_PINENTRY" != "xno"; then
221 AC_CHECK_HEADERS([locale.h])
222 AC_DEFINE(WITH_PINENTRY, 1, [Define if you want local pinentry(1) support.])
225 AM_CONDITIONAL([WITH_PINENTRY], [test "x$WITH_PINENTRY" = "xyes"])
226 pinentry="/usr/bin/pinentry"
228 AC_ARG_WITH(pinentry, AC_HELP_STRING([--with-pinentry=PATH],
229 [Default location of the pinentry binary (/usr/bin/pinentry)]),
233 AC_DEFINE_UNQUOTED(PINENTRY_PATH, ["$pinentry"],
234 [Default location of the pinentry binary.])
236 # Cracklib support (requires pinentry support).
237 AC_ARG_ENABLE(quality, AC_HELP_STRING([--enable-quality],
238 [Enable password quality checking with cracklib.]),
239 WITH_QUALITY=$enableval, WITH_QUALITY=no)
240 if test "x$WITH_QUALITY" = "xyes"; then
241 if test "x$WITH_PINENTRY" != "xyes"; then
242 AC_MSG_ERROR([--enable-quality needs --enable-pinentry])
245 AC_CHECK_HEADER([crack.h],, AC_MSG_ERROR([Missing or invalid cracklib installation.]))
246 AC_CHECK_LIB([crack], FascistCheck,, AC_MSG_ERROR([Missing or invalid cracklib installation.]))
247 AC_DEFINE(WITH_QUALITY, 1, [Define if you want password quality checking.])
249 AM_CONDITIONAL(WITH_QUALITY, [test "x$WITH_QUALITY" = "xyes"])
251 crackdict="/var/cache/cracklib/cracklib_dict"
252 AC_ARG_WITH(crackdict, AC_HELP_STRING([--with-crack-dict=PATH],
253 [Location of the cracklib dictionary (/var/cache/cracklib/cracklib_dict).]),
254 crackdict="$withval")
256 AC_DEFINE_UNQUOTED(CRACKLIB_DICT, ["$crackdict"], [The location of the cracklib dictionary.])
258 dnl Disable optimizing of memset(). GCC and CLang (and others?) accept
259 dnl multiple optimization flags and use the last one specified. The
260 dnl non-optimized memset() may still use any CPU features found in the
261 dnl user specified CFLAGS (-mtune) and libc.
262 CFLAGS_ORIG="$CFLAGS"
263 CFLAGS_MEMZERO="$CFLAGS -O0"
265 AC_SUBST(CFLAGS_ORIG)
266 AC_SUBST(CFLAGS_MEMZERO)
268 AC_CONFIG_FILES([Makefile libpwmd-7.0.pc doc/Makefile doc/doxygen.conf.in \
269 doc/pwmc.1 src/Makefile src/libpwmd.h po/Makefile.in])
273 echo " Interactive pwmc: $WITH_INTERACTIVE"
274 echo " Ssh: $WITH_SSH"
275 echo " GnuTLS: $WITH_GNUTLS"
276 echo " Local pinentry: $WITH_PINENTRY"
277 echo " Pinentry location: $pinentry"
279 if test x"$pwmd_socket" != "x"; then
280 echo " Default pwmd socket: $pwmd_socket"
282 echo " Default pwmd socket: ~/.pwmd/socket"
285 echo " Local passphrase quality checking: $WITH_QUALITY"
286 echo " Crack dictionary: $crackdict"
287 echo " Memory debug: ${ac_cv_sys_mem_debug}"