2015-01-08 18:37:20 +01:00
|
|
|
# -*- Autoconf -*-
|
|
|
|
# Process this file with autoconf to produce a configure script.
|
2015-02-08 00:20:48 +01:00
|
|
|
#
|
|
|
|
# This file is part of TALER
|
2015-04-13 13:49:42 +02:00
|
|
|
# Copyright (C) 2014, 2015 GNUnet e.V.
|
2015-02-08 00:20:48 +01:00
|
|
|
#
|
|
|
|
# TALER is free software; you can redistribute it and/or modify it under the
|
|
|
|
# terms of the GNU General Public License as published by the Free Software
|
|
|
|
# Foundation; either version 3, or (at your option) any later version.
|
|
|
|
#
|
|
|
|
# TALER is distributed in the hope that it will be useful, but WITHOUT ANY
|
|
|
|
# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
|
|
|
|
# A PARTICULAR PURPOSE. See the GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License along with
|
|
|
|
# TALER; see the file COPYING. If not, If not, see <http://www.gnu.org/license>
|
|
|
|
#
|
|
|
|
#
|
2015-01-08 18:37:20 +01:00
|
|
|
AC_PREREQ([2.69])
|
|
|
|
AC_INIT([taler-mint], [0.0.0], [taler-bug@gnunet.org])
|
|
|
|
AC_CONFIG_SRCDIR([src/util/json.c])
|
|
|
|
AC_CONFIG_HEADERS([taler_config.h])
|
|
|
|
# support for non-recursive builds
|
|
|
|
AM_INIT_AUTOMAKE([subdir-objects])
|
|
|
|
|
|
|
|
# pretty build rules
|
|
|
|
AM_SILENT_RULES([yes])
|
|
|
|
|
|
|
|
AC_CONFIG_MACRO_DIR([m4])
|
|
|
|
|
|
|
|
LT_INIT
|
|
|
|
|
|
|
|
# Checks for programs.
|
|
|
|
AC_PROG_CC
|
|
|
|
|
|
|
|
CFLAGS="-Wall $CFLAGS"
|
|
|
|
|
|
|
|
# Checks for header files.
|
|
|
|
AC_CHECK_HEADERS([stdint.h stdlib.h string.h unistd.h])
|
|
|
|
|
|
|
|
# Check for GNUnet's libgnunetutil.
|
|
|
|
libgnunetutil=0
|
|
|
|
AC_MSG_CHECKING([for libgnunetutil])
|
|
|
|
AC_ARG_WITH(gnunet,
|
|
|
|
[AS_HELP_STRING([--with-gnunet=PFX], [base of GNUnet installation])],
|
|
|
|
[AC_MSG_RESULT([given as $with_gnunet])],
|
|
|
|
[AC_MSG_RESULT(not given)
|
|
|
|
with_gnunet=yes])
|
|
|
|
AS_CASE([$with_gnunet],
|
|
|
|
[yes], [],
|
|
|
|
[no], [AC_MSG_ERROR([--with-gnunet is required])],
|
|
|
|
[LDFLAGS="-L$with_gnunet/lib $LDFLAGS"
|
|
|
|
CPPFLAGS="-I$with_gnunet/include $CPPFLAGS"])
|
|
|
|
AC_CHECK_HEADERS([gnunet/platform.h gnunet/gnunet_util_lib.h],
|
|
|
|
[AC_CHECK_LIB([gnunetutil], [GNUNET_SCHEDULER_run], libgnunetutil=1)],
|
|
|
|
[], [#ifdef HAVE_GNUNET_PLATFORM_H
|
|
|
|
#include <gnunet/platform.h>
|
|
|
|
#endif])
|
|
|
|
AS_IF([test $libgnunetutil != 1],
|
|
|
|
[AC_MSG_ERROR([[
|
|
|
|
***
|
|
|
|
*** You need libgnunetutil to build this program.
|
|
|
|
*** This library is part of GNUnet, available at
|
|
|
|
*** https://gnunet.org
|
|
|
|
*** ]])])
|
|
|
|
|
|
|
|
|
2015-03-20 23:51:28 +01:00
|
|
|
TALER_LIB_LDFLAGS="-export-dynamic -no-undefined"
|
|
|
|
TALER_PLUGIN_LDFLAGS="-export-dynamic -avoid-version -module -no-undefined"
|
|
|
|
|
|
|
|
AC_SUBST(TALER_LIB_LDFLAGS)
|
|
|
|
AC_SUBST(TALER_PLUGIN_LDFLAGS)
|
|
|
|
|
|
|
|
|
2015-01-08 18:37:20 +01:00
|
|
|
# check for libmicrohttpd
|
|
|
|
microhttpd=0
|
|
|
|
AC_MSG_CHECKING([for microhttpd])
|
|
|
|
AC_ARG_WITH([microhttpd],
|
|
|
|
[AS_HELP_STRING([--with-microhttpd=PFX], [base of microhttpd installation])],
|
|
|
|
[AC_MSG_RESULT([given as $with_microhttpd])],
|
|
|
|
[AC_MSG_RESULT([not given])
|
|
|
|
with_microhttpd=yes])
|
|
|
|
AS_CASE([$with_microhttpd],
|
|
|
|
[yes], [],
|
|
|
|
[no], [AC_MSG_ERROR([--with-microhttpd is required])],
|
|
|
|
[LDFLAGS="-L$with_microhttpd/lib $LDFLAGS"
|
|
|
|
CPPFLAGS="-I$with_microhttpd/include $CPPFLAGS"])
|
|
|
|
AC_CHECK_LIB(microhttpd,MHD_start_daemon,
|
|
|
|
[AC_CHECK_HEADER([microhttpd.h],[microhttpd=1])])
|
|
|
|
AS_IF([test $microhttpd = 0],
|
|
|
|
[AC_MSG_ERROR([[
|
|
|
|
***
|
|
|
|
*** You need libmicrohttpd to build this program.
|
|
|
|
*** ]])])
|
|
|
|
|
|
|
|
|
2015-04-13 12:57:05 +02:00
|
|
|
# test for postgres
|
2015-01-08 18:37:20 +01:00
|
|
|
AX_LIB_POSTGRESQL([9.3])
|
2015-04-13 12:57:05 +02:00
|
|
|
if test "$found_postgresql" = "yes"; then
|
|
|
|
postgres=true
|
|
|
|
fi
|
|
|
|
AM_CONDITIONAL(HAVE_POSTGRESQL, test x$postgres = xtrue)
|
2015-01-08 18:37:20 +01:00
|
|
|
|
|
|
|
# check for libjansson (Jansson JSON library)
|
|
|
|
jansson=0
|
|
|
|
AC_MSG_CHECKING([for jansson])
|
|
|
|
AC_ARG_WITH([jansson],
|
|
|
|
[AS_HELP_STRING([--with-jansson=PFX], [base of jansson installation])],
|
|
|
|
[AC_MSG_RESULT([given as $with_jansson])],
|
|
|
|
[AC_MSG_RESULT([not given])
|
|
|
|
with_jansson=yes])
|
|
|
|
AS_CASE([$with_jansson],
|
|
|
|
[yes], [],
|
|
|
|
[no], [AC_MSG_ERROR([--with-jansson is required])],
|
|
|
|
[LDFLAGS="-L$with_jansson/lib $LDFLAGS"
|
|
|
|
CPPFLAGS="-I$with_jansson/include $CPPFLAGS"])
|
|
|
|
AC_CHECK_LIB(jansson,json_pack,
|
|
|
|
[AC_CHECK_HEADER([jansson.h],[jansson=1])])
|
|
|
|
AS_IF([test $jansson = 0],
|
|
|
|
[AC_MSG_ERROR([[
|
|
|
|
***
|
|
|
|
*** You need libjansson to build this program.
|
|
|
|
*** ]])])
|
|
|
|
|
|
|
|
# check for libgnurl
|
2015-04-13 12:57:05 +02:00
|
|
|
# libgnurl
|
|
|
|
LIBGNURL_CHECK_CONFIG(,7.34.0,gnurl=1,gnurl=0)
|
2015-01-08 18:37:20 +01:00
|
|
|
if test "$gnurl" = 1
|
|
|
|
then
|
|
|
|
AM_CONDITIONAL(HAVE_LIBGNURL, true)
|
|
|
|
AC_DEFINE([HAVE_LIBGNURL],[1],[Have libgnurl])
|
|
|
|
else
|
|
|
|
AM_CONDITIONAL(HAVE_LIBGNURL, false)
|
|
|
|
fi
|
2015-04-13 12:57:05 +02:00
|
|
|
|
|
|
|
# libcurl-gnutls
|
|
|
|
LIBCURL_CHECK_CONFIG(,7.34.0,[curl=true],[curl=false])
|
|
|
|
if test "x$curl" = xtrue
|
|
|
|
then
|
|
|
|
AC_CHECK_HEADERS([curl/curl.h],
|
|
|
|
AC_CHECK_DECLS(CURLINFO_TLS_SESSION,[curl=true],[curl=false],[[#include <curl/curl.h>]]),
|
|
|
|
[curl=false])
|
|
|
|
# need libcurl-gnutls.so, everything else is not acceptable
|
|
|
|
AC_CHECK_LIB([curl-gnutls],[curl_easy_getinfo],,[curl=false])
|
|
|
|
# cURL must support CURLINFO_TLS_SESSION, version >= 7.34
|
|
|
|
|
|
|
|
fi
|
|
|
|
if test x$curl = xfalse
|
|
|
|
then
|
|
|
|
AM_CONDITIONAL(HAVE_LIBCURL, false)
|
|
|
|
if test "$gnurl" = 0
|
|
|
|
then
|
|
|
|
AC_MSG_WARN([GNUnet requires libcurl-gnutls >= 7.34])
|
|
|
|
fi
|
|
|
|
else
|
|
|
|
AM_CONDITIONAL(HAVE_LIBCURL, true)
|
|
|
|
AC_DEFINE([HAVE_LIBCURL],[1],[Have CURL])
|
|
|
|
fi
|
|
|
|
|
|
|
|
# libgnurl
|
|
|
|
if test "x$gnurl" = "x0"
|
|
|
|
then
|
|
|
|
if test "x$curl" = "x0"
|
|
|
|
then
|
|
|
|
AC_MSG_NOTICE([NOTICE: libgnurl not found. http client support will not be compiled.])
|
|
|
|
AC_MSG_WARN([ERROR: libgnurl not found. hostlist daemon will not be compiled, and you probably WANT the hostlist daemon])
|
|
|
|
else
|
|
|
|
AC_MSG_NOTICE([WARNING: libgnurl not found, trying to use libcurl-gnutls instead.])
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
2015-01-08 18:37:20 +01:00
|
|
|
|
|
|
|
# Require minimum libgcrypt version
|
|
|
|
need_libgcrypt_version=1.6.1
|
|
|
|
AC_DEFINE_UNQUOTED([NEED_LIBGCRYPT_VERSION], ["$need_libgcrypt_version"],
|
|
|
|
[minimum version of libgcrypt required])
|
|
|
|
AM_PATH_LIBGCRYPT([$need_libgcrypt_version])
|
|
|
|
|
|
|
|
# logging
|
|
|
|
extra_logging=0
|
|
|
|
AC_ARG_ENABLE([logging],
|
|
|
|
AS_HELP_STRING([--enable-logging@<:@=value@:>@],[Enable logging calls. Possible values: yes,no,verbose ('yes' is the default)]),
|
|
|
|
[AS_IF([test "x$enableval" = "xyes"], [],
|
|
|
|
[test "x$enableval" = "xno"], [AC_DEFINE([GNUNET_CULL_LOGGING],[],[Define to cull all logging calls])],
|
|
|
|
[test "x$enableval" = "xverbose"], [extra_logging=1]
|
|
|
|
[test "x$enableval" = "xveryverbose"], [extra_logging=2])
|
|
|
|
], [])
|
|
|
|
AC_DEFINE_UNQUOTED([GNUNET_EXTRA_LOGGING],[$extra_logging],[1 if extra logging is enabled, 2 for very verbose extra logging, 0 otherwise])
|
|
|
|
|
2015-04-13 13:49:42 +02:00
|
|
|
# gcov compilation
|
|
|
|
AC_MSG_CHECKING(whether to compile with support for code coverage analysis)
|
|
|
|
AC_ARG_ENABLE([coverage],
|
|
|
|
AS_HELP_STRING([--enable-coverage],
|
|
|
|
[compile the library with code coverage support]),
|
|
|
|
[use_gcov=${enableval}],
|
|
|
|
[use_gcov=no])
|
|
|
|
AC_MSG_RESULT($use_gcov)
|
|
|
|
AM_CONDITIONAL([USE_COVERAGE], [test "x$use_gcov" = "xyes"])
|
|
|
|
|
|
|
|
# version info
|
|
|
|
AC_PATH_PROG(gitcommand, git)
|
|
|
|
AC_MSG_CHECKING(for source being under a VCS)
|
|
|
|
gitsvn_version=
|
|
|
|
AS_IF([test ! "X$gitcommand" = "X"],
|
|
|
|
[
|
|
|
|
gitsvn_version=$(cd $srcdir ; git log -1 2>/dev/null | grep "git-svn-id" | sed -e 's/.*@\([[0-9]]\+\) .*/\1/')
|
|
|
|
])
|
|
|
|
AS_IF([test "X$gitsvn_version" = "X"],
|
|
|
|
[
|
|
|
|
vcs_name="no"
|
|
|
|
vcs_version="\"release\""
|
|
|
|
],
|
|
|
|
[
|
|
|
|
vcs_name="yes, git-svn"
|
|
|
|
vcs_version="\"svn-r$gitsvn_version\""
|
|
|
|
])
|
|
|
|
AC_MSG_RESULT($vcs_name)
|
|
|
|
|
|
|
|
AC_MSG_CHECKING(VCS version)
|
|
|
|
AC_MSG_RESULT($vcs_version)
|
|
|
|
AC_DEFINE_UNQUOTED(VCS_VERSION, [$vcs_version], [VCS revision/hash or tarball version])
|
|
|
|
|
|
|
|
|
2015-01-08 18:37:20 +01:00
|
|
|
# Checks for typedefs, structures, and compiler characteristics.
|
|
|
|
AC_TYPE_PID_T
|
|
|
|
AC_TYPE_SIZE_T
|
|
|
|
AC_TYPE_UINT16_T
|
|
|
|
AC_TYPE_UINT32_T
|
|
|
|
AC_TYPE_UINT64_T
|
|
|
|
AC_TYPE_INTMAX_T
|
|
|
|
AC_TYPE_UINTMAX_T
|
|
|
|
|
|
|
|
# Checks for library functions.
|
|
|
|
AC_CHECK_FUNCS([strdup])
|
|
|
|
|
|
|
|
AC_CONFIG_FILES([Makefile
|
|
|
|
doc/Makefile
|
2015-03-28 15:42:07 +01:00
|
|
|
doc/doxygen/Makefile
|
2015-01-08 18:37:20 +01:00
|
|
|
src/Makefile
|
|
|
|
src/include/Makefile
|
|
|
|
src/util/Makefile
|
2015-01-28 20:37:51 +01:00
|
|
|
src/pq/Makefile
|
2015-03-28 11:06:00 +01:00
|
|
|
src/mintdb/Makefile
|
2015-01-08 18:37:20 +01:00
|
|
|
src/mint/Makefile
|
2015-03-28 11:06:00 +01:00
|
|
|
src/mint-tools/Makefile
|
|
|
|
src/mint-lib/Makefile
|
2015-01-08 18:37:20 +01:00
|
|
|
])
|
|
|
|
AC_OUTPUT
|