X-Git-Url: http://git.code-monkey.de/?a=blobdiff_plain;f=configure.ac;h=3fb9757641441aa7106392cd9f90186d295672f2;hb=e3d75b4d7bddb8db5e1a4fb218cc5f3b236de0cc;hp=a642207e352b7aa29317a3ca1f27c6cb622db367;hpb=be269bf939d2a2d6f1aa577d08f8b18fa49f3df8;p=umurmur.git diff --git a/configure.ac b/configure.ac index a642207..3fb9757 100644 --- a/configure.ac +++ b/configure.ac @@ -32,7 +32,7 @@ AC_PREREQ([2.63]) AC_INIT([umurmur], [0.2.14], [http://code.google.com/p/umurmur/issues/entry], [umurmur], [http://code.google.com/p/umurmur]) AC_CONFIG_SRCDIR([src/client.h]) -AC_CONFIG_HEADERS([config.h]) +AC_CONFIG_HEADERS([src/config.h]) AM_INIT_AUTOMAKE AC_CANONICAL_HOST @@ -86,6 +86,11 @@ AS_IF([test "x$with_ssl" = xopenssl], [ AC_CHECK_LIB([ssl], [SSL_library_init], [], [AC_MSG_ERROR([could not find libssl])]) ]) +AM_CONDITIONAL(USE_OPENSSL, test x$with_ssl = xopenssl) +AM_CONDITIONAL(USE_GNUTLS, test x$with_ssl = xgnutls) + +AC_DEFINE([DEFAULT_CONFIG], ["/etc/umurmur.conf"], [Default config]) + # Checks for header files. AC_FUNC_ALLOCA AC_CHECK_HEADERS([arpa/inet.h fcntl.h inttypes.h limits.h netinet/tcp.h stddef.h stdint.h stdlib.h string.h sys/socket.h sys/time.h syslog.h unistd.h sys/poll.h], [], [AC_MSG_ERROR([missing a required header])])