X-Git-Url: https://git.librecmc.org/?a=blobdiff_plain;f=configure.ac;h=30edf62856bca983da4d0ecf6a3833e3974f6999;hb=e98bb339cbe55a6addc5dfb6a6a1cdbd0c27bb00;hp=8374c5c7e46d9a11bcb66a5f84bb5831ab526677;hpb=96be70d5f2d5e4e0fe43d60b4addcfdf6e7b18e9;p=oweals%2Fgnunet.git diff --git a/configure.ac b/configure.ac index 8374c5c7e..30edf6285 100644 --- a/configure.ac +++ b/configure.ac @@ -1,5 +1,5 @@ # This file is part of GNUnet. -# (C) 2001--2014 Christian Grothoff (and other contributing authors) +# (C) 2001--2015 Christian Grothoff (and other contributing authors) # # GNUnet is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published @@ -202,6 +202,10 @@ AC_CHECK_LIB(socket, socket) AC_CHECK_LIB(m, log) AC_CHECK_LIB(c, getloadavg, AC_DEFINE(HAVE_GETLOADAVG,1,[getloadavg supported])) +AC_CHECK_PROG(VAR_GETOPT_BINARY, getopt, true, false) +AM_CONDITIONAL(HAVE_GETOPT_BINARY, $VAR_GETOPT_BINARY) + + AC_CHECK_MEMBER(struct tm.tm_gmtoff, [AC_DEFINE(HAVE_TM_GMTOFF, 1, @@ -1207,6 +1211,24 @@ AC_ARG_ENABLE([experimental], AC_MSG_RESULT($enable_experimental) AM_CONDITIONAL([HAVE_EXPERIMENTAL], [test "x$enable_experimental" = "xyes"]) +# FTBFS right now... +AC_MSG_CHECKING(whether to compile ATS test code) +AC_ARG_ENABLE([wachs], + [AS_HELP_STRING([--enable-wachs], [enable compiling ATS test code])], + [enable_wachs=${enableval}], + [enable_wachs=no]) +AC_MSG_RESULT($enable_wachs) +AM_CONDITIONAL([HAVE_WACHS], [test "x$enable_wachs" = "xyes"]) + +# REST API +AC_MSG_CHECKING(whether to compile REST API) +AC_ARG_ENABLE([rest], + [AS_HELP_STRING([--enable-rest], [enable REST])], + [enable_rest=${enableval}], + [enable_rest=no]) +AC_MSG_RESULT($enable_rest) +AM_CONDITIONAL([HAVE_REST], [test "x$enable_rest" = "xyes"]) + # should malicious code be compiled (should only be used for testing)? AC_MSG_CHECKING(whether to compile malicious code) AC_ARG_ENABLE([malicious], @@ -1511,6 +1533,7 @@ src/util/Makefile src/util/resolver.conf src/vpn/Makefile src/vpn/vpn.conf +src/rest/Makefile pkgconfig/Makefile pkgconfig/gnunetarm.pc pkgconfig/gnunetats.pc