fixing #5440: updating postgres test m4 macro
[oweals/gnunet.git] / configure.ac
1 # This file is part of GNUnet.
2 # (C) 2001--2018 GNUnet e.V.
3 #
4 # GNUnet is free software: you can redistribute it and/or modify it
5 # under the terms of the GNU Affero General Public License as published
6 # by the Free Software Foundation, either version 3 of the License,
7 # or (at your option) any later version.
8 #
9 # GNUnet is distributed in the hope that it will be useful, but
10 # WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12 # Affero General Public License for more details.
13 #
14 # You should have received a copy of the GNU Affero General Public License
15 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
16 #
17 #
18 # Process this file with autoconf to produce a configure script.
19 #
20 #
21 AC_PREREQ(2.61)
22 # Checks for programs.
23 AC_INIT([gnunet], [0.11.0pre66], [bug-gnunet@gnu.org])
24 AC_CONFIG_AUX_DIR([build-aux])
25
26 AC_CANONICAL_TARGET
27 AC_CANONICAL_HOST
28 AC_CANONICAL_SYSTEM
29 AM_INIT_AUTOMAKE
30 m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
31 AC_CONFIG_HEADERS([gnunet_config.h])
32 AH_TOP([#define _GNU_SOURCE  1])
33 AC_CONFIG_MACRO_DIR([m4])
34 AC_PROG_AWK
35 AC_PROG_CC_C99
36 AC_PROG_CPP
37 AC_PROG_CXX
38 AC_PROG_OBJC
39 AC_PROG_INSTALL
40 AC_PROG_LN_S
41 AC_PROG_MAKE_SET
42 AM_PROG_CC_C_O
43 LT_INIT([disable-static dlopen win32-dll])
44 AC_SUBST(MKDIR_P)
45
46 # large file support
47 AC_SYS_LARGEFILE
48 AC_FUNC_FSEEKO
49
50
51 CFLAGS="-Wall $CFLAGS"
52 # use '-fno-strict-aliasing', but only if the compiler can take it
53 if gcc -fno-strict-aliasing -S -o /dev/null -xc /dev/null >/dev/null 2>&1;
54 then
55  CFLAGS="-fno-strict-aliasing $CFLAGS"
56 fi
57
58 # Use Linux interface name unless the OS has a different preference
59 DEFAULT_INTERFACE="\"eth0\""
60
61 funcstocheck="getnameinfo gethostname gethostbyname gethostbyaddr getaddrinfo getaddrinfo_a"
62
63 # Srcdir in a form that native compiler understands (i.e. DOS path on W32)
64 native_srcdir=$srcdir
65
66 # Check system type
67 case "$host_os" in
68 *darwin* | *rhapsody* | *macosx*)
69      AC_DEFINE_UNQUOTED(DARWIN,1,[This is an Apple Darwin system])
70      CPPFLAGS="-D_APPLE_C_SOURCE $CPPFLAGS"
71      CFLAGS="-fno-common $CFLAGS"
72      AC_MSG_WARN([WARNING: The VPN application cannot be compiled on your OS])
73      build_target="darwin"
74      DEFAULT_INTERFACE="\"en0\""
75      LIBPREFIX=
76      DLLDIR=lib
77      UNIXONLY="#"
78      ;;
79 linux*)
80      AC_DEFINE_UNQUOTED(LINUX,1,[This is a Linux kernel])
81      build_target="linux"
82      LIBPREFIX=
83      DLLDIR=lib
84      UNIXONLY="#"
85      AC_PATH_XTRA
86      ;;
87 *freebsd*)
88      AC_DEFINE_UNQUOTED(SOMEBSD,1,[This is a BSD system])
89      AC_DEFINE_UNQUOTED(FREEBSD,1,[This is a FreeBSD system])
90      CFLAGS="-D_THREAD_SAFE $CFLAGS"
91      build_target="freebsd"
92      LIBPREFIX=
93      DLLDIR=lib
94      UNIXONLY="#"
95      ;;
96 *openbsd*)
97      AC_DEFINE_UNQUOTED(SOMEBSD,1,[This is a BSD system])
98      AC_DEFINE_UNQUOTED(OPENBSD,1,[This is an OpenBSD system])
99      LIBS=`echo $LIBS | sed -e "s/-ldl//"`
100      build_target="openbsd"
101      LIBPREFIX=
102      DLLDIR=lib
103      UNIXONLY="#"
104      ;;
105 *netbsd*)
106      AC_DEFINE_UNQUOTED(SOMEBSD,1,[This is a BSD system])
107      AC_DEFINE_UNQUOTED(NETBSD,1,[This is a NetBSD system])
108      LIBPREFIX=
109      DLLDIR=lib
110      UNIXONLY="#"
111      ;;
112 *solaris*)
113      AC_DEFINE_UNQUOTED(SOLARIS,1,[This is a Solaris system])
114      AC_DEFINE_UNQUOTED(_REENTRANT,1,[Need with solaris or errno doesnt work])
115      AC_CHECK_LIB(resolv, res_init)
116      AC_CHECK_LIB(rt, nanosleep)
117      build_target="solaris"
118      LIBPREFIX=
119      DLLDIR=lib
120      UNIXONLY="#"
121      ;;
122 *arm-linux*)
123      AC_DEFINE_UNQUOTED(LINUX,1,[This is a Linux kernel])
124      CFLAGS="-D_REENTRANT -fPIC -pipe $CFLAGS"
125      build_target="linux"
126      LIBPREFIX=
127      DLLDIR=lib
128      UNIXONLY="#"
129      ;;
130 *cygwin*)
131      AC_DEFINE_UNQUOTED(CYGWIN,1,[This is a Cygwin system])
132      AC_DEFINE_UNQUOTED(WINDOWS,1,[This is a Windows system])
133      AC_CHECK_LIB(intl, gettext)
134      CFLAGS="-mms-bitfields $CFLAGS"
135      build_target="cygwin"
136      LIBPREFIX=lib
137      DLLDIR=bin
138      AC_PROG_CXX
139      UNIXONLY=""
140      ;;
141 *mingw*)
142      AC_DEFINE_UNQUOTED(MINGW,1,[This is a MinGW system])
143      AC_DEFINE_UNQUOTED(WINDOWS,1,[This is a Windows system])
144      AC_DEFINE_UNQUOTED(_WIN32,1,[This is a Windows system])
145      AC_CHECK_LIB(intl, gettext)
146      LDFLAGS="$LDFLAGS -Wl,--export-all-symbols"
147      LIBS="$LIBS -lws2_32 -lplibc -lgnurx -lole32"
148      CFLAGS="-mms-bitfields $CFLAGS"
149      CPPFLAGS="-D_WIN32_WINNT=0x0501 -DHAVE_STAT64=1 -D__USE_MINGW_ANSI_STDIO=1 $CPPFLAGS"
150      build_target="mingw"
151      AC_PROG_CXX
152      LIBPREFIX=lib
153      DLLDIR=bin
154      UNIXONLY=""
155      funcstocheck=""
156      native_srcdir=$(cd $srcdir; pwd -W)
157      ;;
158 gnu*)
159      AC_DEFINE_UNQUOTED(GNU,1,[This is a GNU system])
160      build_target="gnu"
161      UNIXONLY="#"
162      ;;
163 *)
164      AC_MSG_RESULT(Unrecognised OS $host_os)
165      AC_DEFINE_UNQUOTED(OTHEROS,1,[Some strange OS])
166      UNIXONLY=""
167 ;;
168 esac
169 AC_DEFINE_UNQUOTED([GNUNET_DEFAULT_INTERFACE], $DEFAULT_INTERFACE, [This should be the default choice for the name of the first network interface])
170 AC_SUBST(DEFAULT_INTERFACE)
171
172 # Disable TCP-based IPC on systems that support UNIX domain
173 # sockets in default configuratin:
174 AC_SUBST(UNIXONLY)
175
176
177 AC_MSG_CHECKING([for build target])
178 AM_CONDITIONAL(DARWIN,  test "$build_target" = "darwin")
179 AM_CONDITIONAL(CYGWIN,  test "$build_target" = "cygwin")
180 AM_CONDITIONAL(MINGW,   test "$build_target" = "mingw")
181 AM_CONDITIONAL(SOLARIS, test "$build_target" = "solaris")
182 AM_CONDITIONAL(XFREEBSD, test "$build_target" = "freebsd")
183 AM_CONDITIONAL(OPENBSD, test "$build_target" = "openbsd")
184 AM_CONDITIONAL(LINUX, test "$build_target" = "linux")
185 AM_CONDITIONAL(GNU, test "$build_target" = "gnu")
186
187 AC_MSG_RESULT([$build_target])
188 AC_SUBST(build_target)
189 AM_CONDITIONAL([am__fastdepOBJC], false)
190 AC_UNALIGNED_64_ACCESS
191
192 # some other checks for standard libs
193 AC_SEARCH_LIBS([gethostbyname], [nsl ws2_32])
194 AC_CHECK_LIB(socket, socket)
195 AC_CHECK_LIB(m, log)
196 AC_CHECK_LIB(c, getloadavg, AC_DEFINE(HAVE_GETLOADAVG,1,[getloadavg supported]))
197
198 AC_CHECK_PROG(VAR_GETOPT_BINARY, getopt, true, false)
199 AM_CONDITIONAL(HAVE_GETOPT_BINARY, $VAR_GETOPT_BINARY)
200
201 AC_CHECK_PROG(VAR_SSH_BINARY, ssh, true, false)
202 AM_CONDITIONAL(HAVE_SSH_BINARY, $VAR_SSH_BINARY)
203 AM_CONDITIONAL(HAVE_SSH_KEY,  ssh -D 12345 -o "BatchMode yes" -o "UserKnownHostsFile /tmp/gnunet_test_cosks_ssh_garbage" -o "StrictHostKeyChecking no" 127.0.0.1 echo -n)
204 rm -f /tmp/gnunet_test_cosks_ssh_garbage
205
206 # iptables is a soft requirement to run tests
207 AC_PATH_TARGET_TOOL(VAR_IPTABLES_BINARY, iptables, false)
208
209 if test x"$VAR_IPTABLES_BINARY" = x"false"
210 then
211   if test -x "/sbin/iptables"
212   then
213     VAR_IPTABLES_BINARY="/sbin/iptables"
214   elif test -x "/usr/sbin/iptables"
215   then
216     VAR_IPTABLES_BINARY="/usr/sbin/iptables"
217   fi
218 fi
219
220 if test x"$VAR_IPTABLES_BINARY" != x"false"
221 then
222 AC_DEFINE_UNQUOTED([IPTABLES], "$VAR_IPTABLES_BINARY", [Path to iptables])
223 else
224 AC_MSG_WARN([warning: 'iptables' not found.])
225 fi
226
227 AC_PATH_TARGET_TOOL(VAR_IFCONFIG_BINARY, ifconfig, false)
228
229 AC_CHECK_PROG(VAR_IFCONFIG_BINARY, ifconfig, true, false)
230 if test x"$VAR_IFCONFIG_BINARY" = x"false"
231 then
232   if test -x "/sbin/ifconfig"
233   then
234     VAR_IFCONFIG_BINARY="/sbin/ifconfig"
235   elif test -x "/usr/sbin/ifconfig"
236   then
237     VAR_IFCONFIG_BINARY="/usr/sbin/ifconfig"
238   fi
239 fi
240 if test x"$VAR_IFCONFIG_BINARY" != x"false"
241 then
242 AC_DEFINE_UNQUOTED([IFCONFIG], "$VAR_IFCONFIG_BINARY", [Path to ifconfig])
243 else
244 AC_MSG_WARN([warning: 'ifconfig' not found.])
245 fi
246
247 # miniupnpc / upnpc binary is a soft runtime requirement
248 AC_PATH_TARGET_TOOL(VAR_UPNPC_BINARY, upnpc, false)
249
250 if test x"$VAR_UPNPC_BINARY" != x"false"
251 then
252 AC_DEFINE_UNQUOTED([UPNPC], "$VAR_UPNPC_BINARY", [Path to upnpc binary])
253 else
254 AC_MSG_WARN([warning: 'upnpc' binary not found.])
255 fi
256
257 AC_CHECK_MEMBER(struct tm.tm_gmtoff,
258   [AC_DEFINE(HAVE_TM_GMTOFF, 1,
259      [Define if struct tm has the tm_gmtoff member.])],
260      ,
261      [#include <time.h>])
262
263 AC_CHECK_DECLS([_stati64])
264
265 # 'save' libs; only those libs found so far will be
266 # linked against _everywhere_.  For the others, we
267 # will be more selective!
268 SAVE_LIBS=$LIBS
269
270 have_addrinfo_a=0
271 AC_CHECK_LIB(anl, getaddrinfo_a, [have_addrinfo_a=1 AC_DEFINE(HAVE_GETADDRINFO_A,1,[getaddrinfo_a supported])])
272 AM_CONDITIONAL(HAVE_GETADDRINFO_A, [test "$have_addrinfo_a" = 1])
273
274 # tests only run on Windows
275 if test "x$build_target" = "xmingw"
276 then
277   AC_CHECK_LIB(plibc, plibc_init, [], [AC_MSG_ERROR([GNUnet requires PlibC on Windows])])
278   AC_CHECK_LIB(gnurx, regexec, [], [AC_MSG_ERROR([GNUnet requires libgnurx on Windows])])
279 fi
280
281 # libgcrypt
282 gcrypt=0
283 NEED_LIBGCRYPT_API=1
284 NEED_LIBGCRYPT_VERSION=1.6.0
285
286
287 AM_PATH_LIBGCRYPT("$NEED_LIBGCRYPT_API:$NEED_LIBGCRYPT_VERSION", gcrypt=1)
288 AC_CHECK_DECLS([gcry_mpi_set_opaque_copy], [], [], [[#include <gcrypt.h>]])
289
290 if test $gcrypt = 0
291 then
292   AC_MSG_ERROR([[
293 ***
294 *** You need libgcrypt to build this program.
295 **  This library is for example available at
296 ***   ftp://ftp.gnupg.org/gcrypt/libgcrypt/
297 *** (at least version $NEED_LIBGCRYPT_VERSION (API $NEED_LIBGCRYPT_API)
298 ***  is required.)
299 ***]])
300 fi
301 AC_DEFINE_UNQUOTED([NEED_LIBGCRYPT_VERSION], "$NEED_LIBGCRYPT_VERSION", [required libgcrypt version])
302
303 # should the build process be building the documentation?
304 AC_MSG_CHECKING(whether to build documentation)
305 AC_ARG_ENABLE([documentation],
306    [AS_HELP_STRING([--disable-documentation], [do not build the documentation])],
307    [documentation=${enableval}],
308    [documentation=yes])
309 AC_MSG_RESULT($documentation)
310 if test "x$documentation" = "xyes"
311 then
312   AM_CONDITIONAL([DOCUMENTATION],true)
313   AC_DEFINE([DOCUMENTATION],[1],[Building the documentation])
314 else
315   AM_CONDITIONAL([DOCUMENTATION],false)
316   AC_DEFINE([DOCUMENTATION],[0],[Not building the documentation])
317 fi
318
319 # TODO: Include check for mandoc + texi2mdoc.
320 # TODO: Rename the switch? Just 'section7' is too vague.
321 # mdoc section 7 output.
322 AC_MSG_CHECKING(wether to build section 7 mdoc output)
323 AC_ARG_ENABLE([section7],
324 [AS_HELP_STRING([--disable-section7], [do not build section 7 mdoc output])],
325 [section7=${enableval}],
326 [section7=yes])
327 AC_MSG_RESULT($section7)
328 if test "x$section7" = "xyes"
329 then
330   if test "$texi2mdoc" = 0
331   then
332   AC_MSG_WARN([ERROR: mdoc output currently requires texi2mdoc.])
333   AC_MSG_WARN([ERROR: texi2mdoc can be obtained via your Operating System])
334   AC_MSG_WARN([ERROR: package manager or from https://mandoc.bsd.lv/texi2mdoc/])
335   else
336   AM_CONDITIONAL([SECTION7],true)
337   AC_DEFINE([SECTION7],[1],[Building section 7 mdoc output])
338   fi
339 else
340   AM_CONDITIONAL([SECTION7],false)
341   AC_DEFINE([SECTION7],[0],[Not building section 7 mdoc output])
342 fi
343
344 # should the build process be building only the documentation?
345 AC_MSG_CHECKING(whether to build only documentation)
346 AC_ARG_ENABLE([documentation-only],
347    [AS_HELP_STRING([--enable-documentation-only], [build only the documentation])],
348    [documentation_only=${enableval}],
349    [documentation_only=no])
350 AC_MSG_RESULT($documentation_only)
351 if test "x$documentation_only" = "xyes"
352 then
353   AM_CONDITIONAL([DOCUMENTATION_ONLY],true)
354   AC_DEFINE([DOCUMENTATION_ONLY],[1],[Building only the documentation])
355 else
356   AM_CONDITIONAL([DOCUMENTATION_ONLY],false)
357   AC_DEFINE([DOCUMENTATION_ONLY],[0],[Not building only the documentation])
358 fi
359
360
361 # Check for makeinfo version >= 5, required for building documentation.
362 # TODO: add check for alternatives
363 have_makeinfo_5=false
364 if test x"$documentation" = xyes || test x"$documentation_only" = xyes
365 then
366   AC_PROG_SED
367   AC_CHECK_PROG([MAKEINFO_FOUND], [makeinfo], [yes])
368   if test x"${MAKEINFO_FOUND}" = xyes
369   then
370     MAKEINFO_VERSION_REQ=5
371     AC_MSG_CHECKING([for makeinfo version >= $MAKEINFO_VERSION_REQ])
372     # XXX: is this sed invocation portable?
373     MAKEINFO_VERSION=`makeinfo --version | sed -ne 's/^\(makeinfo\|texi2any\) .* \([[0-9]][[0-9]]*\)\.[[0-9]][[0-9]]*.*$/\2/p'`
374     if test x$MAKEINFO_VERSION = x -o 0$MAKEINFO_VERSION -lt $MAKEINFO_VERSION_REQ
375     then
376       AC_MSG_RESULT([no])
377       AC_MSG_FAILURE([Program 'makeinfo' version >= $MAKEINFO_VERSION_REQ is required.])
378     else
379       AC_MSG_RESULT([yes])
380       have_makeinfo_5=true
381     fi
382   else
383       AC_MSG_FAILURE([Missing program 'makeinfo', Documentation will not be built. Please install it if you want 'info' documentation or refer to online resources at 'https://docs.gnunet.org'.])
384   fi
385 fi
386 AM_CONDITIONAL([HAVE_MAKEINFO_5], [test x$have_makeinfo_5 = xtrue])
387
388 # Adam shostack suggests the following for Windows:
389 # -D_FORTIFY_SOURCE=2 -fstack-protector-all
390 AC_ARG_ENABLE(gcc-hardening,
391    AS_HELP_STRING(--enable-gcc-hardening, enable compiler security checks),
392 [if test x$enableval = xyes; then
393     CFLAGS="$CFLAGS -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -fstack-protector-all"
394     CFLAGS="$CFLAGS -fwrapv -fPIE -Wstack-protector"
395     CFLAGS="$CFLAGS --param ssp-buffer-size=1"
396     LDFLAGS="$LDFLAGS -pie"
397 fi])
398
399
400 # Linker hardening options
401 # Currently these options are ELF specific - you can't use this with MacOSX
402 AC_ARG_ENABLE(linker-hardening,
403   AS_HELP_STRING(--enable-linker-hardening, enable linker security fixups),
404 [if test x$enableval = xyes; then
405    LDFLAGS="$LDFLAGS -z relro -z now"
406 fi])
407
408
409 AC_ARG_ENABLE(sanitizer,
410   AS_HELP_STRING(--enable-sanitizer, enable Address Sanitizer and Undefined Behavior Sanitizer),
411 [if test x$enableval = xyes; then
412    LDFLAGS="$CFLAGS -fsanitize=address,undefined -fno-omit-frame-pointer"
413 fi])
414
415
416 extra_logging=GNUNET_NO
417 AC_ARG_ENABLE([logging],
418    AS_HELP_STRING([--enable-logging@<:@=value@:>@],[Enable logging calls. Possible values: yes,no,verbose,veryverbose ('yes' is the default)]),
419    [AS_IF([test "x$enableval" = "xyes"], [],
420           [test "x$enableval" = "xno"], [AC_DEFINE([GNUNET_CULL_LOGGING],[],[Define to cull all logging calls])],
421           [test "x$enableval" = "xverbose"], [extra_logging=GNUNET_YES]
422           [test "x$enableval" = "xveryverbose"], [extra_logging=\(GNUNET_YES+1\)])
423    ], [])
424 AC_DEFINE_UNQUOTED([GNUNET_EXTRA_LOGGING],[$extra_logging],[1 if extra logging is enabled, 2 for very verbose extra logging, 0 otherwise])
425
426 # should memory poisoning be enabled?
427 AC_MSG_CHECKING(whether to poison freed memory)
428 AC_ARG_ENABLE([poisoning],
429    [AS_HELP_STRING([--enable-poisoning], [enable poisoning of freed memory (good for debugging)])],
430    [enable_poisoning=${enableval}],
431    [
432      if test "x$extra_logging" != "xGNUNET_NO"; then
433        enable_poisoning="defaults to yes (extra logging is enabled)"
434      else
435        enable_poisoning=no
436      fi
437    ])
438 AC_MSG_RESULT($enable_poisoning)
439 if test ! "x$enable_poisoning" = "xno"; then
440   enable_poisoning=1
441 else
442   enable_poisoning=0
443 fi
444 AC_DEFINE_UNQUOTED([ENABLE_POISONING],[$enable_poisoning],[1 if freed memory should be poisoned, 0 otherwise])
445
446 if test $build = $target
447 then
448 AC_MSG_CHECKING([for working HMAC])
449 AC_LANG_PUSH(C)
450 LIBS="$LIBS $LIBGCRYPT_LIBS"
451 CFLAGS="$CFLAGS $LIBGCRYPT_CFLAGS"
452 AC_RUN_IFELSE(
453   [AC_LANG_PROGRAM([#include <gcrypt.h>
454         #include <stdio.h>], [[
455         gcry_md_hd_t mac;
456
457         unsigned char data[] = { 0xbf, 0x16, 0x6e, 0x46, 0x3a, 0x6c, 0xf3, 0x93, 0xa7, 0x72,
458             0x11, 0xa1, 0xdc, 0x0b, 0x07, 0xdb, 0x1a, 0x5e, 0xd9, 0xb9, 0x81, 0xbe,
459             0xea, 0xe4, 0x31, 0x5f, 0x24, 0xff, 0xfe, 0x50, 0x8a, 0xde };
460         unsigned char key[] = { 0xfc, 0x62, 0x76, 0x35 };
461         unsigned char result[] = {0xa2, 0xb, 0x1, 0xd9, 0xc0, 0x8b, 0x5a, 0x12, 0x80,
462             0xd5, 0x50, 0x12, 0x8e, 0xd0, 0x5b, 0xb6, 0x5c, 0x87, 0x24, 0xe2, 0xd0,
463             0xd2, 0xaf, 0x63, 0xae, 0xd1, 0xd6, 0x64, 0x14, 0xe3, 0x6e, 0x61, 0x5b,
464             0xd, 0xba, 0x17, 0x7d, 0xd3, 0x10, 0xb1, 0x37, 0x41, 0x91, 0x7d, 0xeb,
465             0x1, 0x4d, 0x71, 0xe8, 0x59, 0x71, 0x42, 0x8e, 0xd6, 0xf3, 0x29, 0x3b,
466             0x90, 0xf2, 0xd1, 0xaf, 0x65, 0x1e, 0xb3};
467
468         if (!gcry_check_version (GCRYPT_VERSION))
469         {
470           fprintf (stderr, "Version mismatch %s <-> %s \n", gcry_check_version (NULL), GCRYPT_VERSION);
471           return 1;
472         }
473
474         gcry_control (GCRYCTL_DISABLE_SECMEM, 0);
475         gcry_control (GCRYCTL_INITIALIZATION_FINISHED, 0);
476
477         if (gcry_md_open(&mac, GCRY_MD_SHA512, GCRY_MD_FLAG_HMAC) != GPG_ERR_NO_ERROR)
478         {
479           fprintf (stderr, "gcry_md_open error\n");
480           return 2;
481         }
482
483         gcry_md_setkey (mac, key, sizeof (key));
484         gcry_md_write (mac, data, sizeof (data));
485
486         if (memcmp(gcry_md_read (mac, 0), result, gcry_md_get_algo_dlen (gcry_md_get_algo (mac))) != 0)
487         {
488           fprintf (stderr, "memcmp error\n");
489           return 3;
490         }
491
492         gcry_md_close (mac);
493
494         return 0;
495     ]])],
496   [AC_MSG_RESULT([yes])],
497   [
498    RESULT=$?
499    if test $RESULT = 3
500    then
501      AC_MSG_FAILURE([HMAC test vector does not match. This is a known problem with libgcrypt 1.2.2 on Windows and fixed in 1.4.6.])
502    fi
503    if test $RESULT = 2
504    then
505      AC_MSG_FAILURE([HMAC test failed])
506    fi
507    if test $RESULT = 1
508    then
509      AC_MSG_FAILURE([libgcrypt header version does not match library version])
510    fi
511   ],
512   [AC_MSG_RESULT([cross compiling, test skipped])])
513 AC_LANG_POP(C)
514 fi      # $build = $target
515
516 # check for bluetooth library
517 bluetooth=0
518 AC_CHECK_LIB(bluetooth, ba2str,[AC_CHECK_HEADER([bluetooth/bluetooth.h],bluetooth=1)])
519 if test "$build_target" = "mingw"
520 then
521   bluetooth=1
522 fi
523 AM_CONDITIONAL(HAVE_LIBBLUETOOTH, [test "$bluetooth" = 1])
524 if test "$bluetooth" = 1
525 then
526   AC_DEFINE([HAVE_LIBBLUETOOTH],[1],[Have bluetooth library])
527 else
528   AC_DEFINE([HAVE_LIBBLUETOOTH],[0],[Lacking bluetooth library])
529 fi
530
531 # check for jansson library
532 jansson=0
533 AC_MSG_CHECKING(for libjansson)
534 AC_ARG_WITH(jansson,
535    [  --with-jansson=PFX    base of libjansson installation],
536    [AC_MSG_RESULT([$with_jansson])
537     case $with_jansson in
538       no)
539         ;;
540       yes)
541         AC_CHECK_HEADERS(jansson.h,
542           AC_CHECK_LIB([jansson], [json_loads],
543             jansson=1))
544         ;;
545       *)
546         LDFLAGS="-L$with_jansson/lib $LDFLAGS"
547         CPPFLAGS="-I$with_jansson/include $CPPFLAGS"
548         AC_CHECK_HEADERS(jansson.h,
549           AC_CHECK_LIB([jansson], [json_loads],
550             EXT_LIB_PATH="-L$with_jansson/lib $EXT_LIB_PATH"
551             jansson=1))
552         ;;
553     esac
554    ],
555    [AC_MSG_RESULT([--with-jansson not specified])
556     AC_CHECK_HEADERS(jansson.h,
557      AC_CHECK_LIB([jansson], [json_loads],
558       jansson=1))])
559 AM_CONDITIONAL(HAVE_JANSSON, [test "$jansson" = 1])
560 if test "x$jansson" = x1
561 then
562   AC_DEFINE([HAVE_JANSSON],[1],[Have jansson library])
563 else
564   AC_DEFINE([HAVE_JANSSON],[0],[Lacking jansson library])
565 fi
566
567
568 # check for libpulse(audio) library
569 pulse=0
570 AC_CHECK_LIB(pulse,pa_stream_peek,
571   [AC_CHECK_HEADER([pulse/simple.h],pulse=1)])
572 if test "$build_target" = "mingw"
573 then
574   pulse=0
575 fi
576 if test "$pulse" = 1
577 then
578   AC_DEFINE([HAVE_PULSE],[1],[Have libpulse(audio) library])
579 fi
580
581 # check for libopus(audio) library
582 opus=0
583 AC_CHECK_LIB(opus,opus_decode_float,
584   [AC_CHECK_HEADER([opus/opus.h],
585     [AC_CHECK_DECL([OPUS_SET_GAIN],[opus=1],[],[[#include <opus/opus.h>]]
586     )]
587   )]
588 )
589 AS_IF([test "x$opus" = x1],
590       [AC_DEFINE([HAVE_OPUS],[1],[Have libopus library])])
591
592 # libogg
593 AC_CHECK_LIB(ogg, ogg_stream_flush_fill,
594         [AC_CHECK_HEADERS([ogg/ogg.h],
595           AM_CONDITIONAL(HAVE_OGG, true)
596           ogg=1
597           AC_DEFINE(HAVE_OGG,1,[Have ogg]),
598           AM_CONDITIONAL(HAVE_OGG, false)
599           ogg=0
600           AC_DEFINE(HAVE_OGG,0,[lacking ogg]))],
601         AM_CONDITIONAL(HAVE_OGG, false)
602         ogg=0)
603
604
605 PKG_CHECK_MODULES([GLIB], [glib-2.0],
606 # check for pbc library
607 pbc=0
608 AC_CHECK_HEADER([pbc/pbc.h],pbc=1)
609 AC_CHECK_HEADER([gabe.h],abe=1)
610 AM_CONDITIONAL(HAVE_PBC, [test "x$pbc" = x1])
611 AM_CONDITIONAL(HAVE_ABE, [test "x$abe" = x1])
612 if test "x$pbc" = x1
613 then
614   AC_DEFINE([HAVE_PBC],[1],[Have pbc library])
615 else
616   AC_DEFINE([HAVE_PBC],[0],[Lacking pbc library])
617 fi
618 if test "x$abe" = x1
619 then
620   AC_DEFINE([HAVE_ABE],[1],[Have ABE library])
621 else
622   AC_DEFINE([HAVE_ABE],[0],[Lacking ABE library])
623 fi
624 ,
625 # glib-2 not found
626   AM_CONDITIONAL(HAVE_PBC, [false])
627   AM_CONDITIONAL(HAVE_ABE, [false])
628   AC_DEFINE([HAVE_PBC],[0],[Lacking glib library])
629 )
630
631 gst=0
632 PKG_CHECK_MODULES(
633   [GST],
634   [glib-2.0 gobject-2.0 gstreamer-1.0 gstreamer-app-1.0 gstreamer-audio-1.0],
635   [
636     gst=1
637     AC_MSG_RESULT(ok)
638   ], [
639     gst=0
640     AC_MSG_RESULT(not found)
641   ])
642
643 # Pulse Audio
644 if test "x$pulse" != "x1" -o "x$opus" != "x1" -o "x$ogg" != "x1"
645 then
646  if test "x$gst" != "x1"
647  then
648   conversation_backend=none
649   AM_CONDITIONAL(BUILD_PULSE_HELPERS, false)
650   AM_CONDITIONAL(BUILD_GST_HELPERS, false)
651   AM_CONDITIONAL(BUILD_EXPERIMENTAL_HELPERS, false)
652  else
653    conversation_backend=gst
654    AM_CONDITIONAL(BUILD_PULSE_HELPERS, false)
655    AM_CONDITIONAL(BUILD_GST_HELPERS, true)
656    AM_CONDITIONAL(BUILD_EXPERIMENTAL_HELPERS, false)
657  fi
658 else
659
660  conversation_backend=pulse
661  AM_CONDITIONAL(BUILD_PULSE_HELPERS, true)
662  AM_CONDITIONAL(BUILD_GST_HELPERS, false)
663  AM_CONDITIONAL(BUILD_EXPERIMENTAL_HELPERS, false)
664 fi
665
666 # libgnurl
667 LIBGNURL_CHECK_CONFIG(,7.34.0,gnurl=1,gnurl=0)
668 if test "$gnurl" = 1
669 then
670         AM_CONDITIONAL(HAVE_LIBGNURL, true)
671         AC_DEFINE([HAVE_LIBGNURL],[1],[Have libgnurl])
672 else
673         AM_CONDITIONAL(HAVE_LIBGNURL, false)
674         AC_DEFINE([HAVE_LIBGNURL],[0],[Lacking libgnurl])
675 fi
676
677 SAVE_CPPFLAGS=$CPPFLAGS
678 CPPFLAGS="$LIBGNURL_CPPFLAGS $LIBCURL_CPPFLAGS $CPPFLAGS"
679 LIBS="$LIBGNURL $LIBCURL $LIBS"
680
681 # libcurl-gnutls
682 LIBCURL_CHECK_CONFIG(,7.34.0,[curl=true],[curl=false])
683 if test "x$curl" = xtrue
684 then
685
686  AC_CHECK_HEADERS([curl/curl.h],
687   AC_CHECK_DECLS(CURLINFO_TLS_SESSION,[curl=true],[curl=false],[[#include <curl/curl.h>]]),
688   [curl=false])
689  AC_CHECK_HEADERS([gnurl/curl.h],
690   AC_CHECK_DECLS(CURLINFO_TLS_SESSION,[curl=true],,[[#include <gnurl/curl.h>]]))
691  # need libcurl-gnutls.so, everything else is not acceptable
692  AC_CHECK_LIB([curl-gnutls],[curl_easy_getinfo],,[curl=false])
693  # cURL must support CURLINFO_TLS_SESSION, version >= 7.34
694 fi
695
696 # Check for curl/curl.h and gnurl/curl.h so we can use #ifdef
697 # HAVE_CURL_CURL_H later (the above LIBCURL_CHECK_CONFIG accepted
698 # *either* header set).
699 AC_CHECK_HEADERS([curl/curl.h],,
700   curl=false
701   AC_CHECK_HEADERS([gnurl/curl.h],,
702   gnurl=false))
703
704
705
706 if test x$curl = xfalse
707 then
708         AM_CONDITIONAL(HAVE_LIBCURL, false)
709 if test "$gnurl" = 0
710 then
711         AC_MSG_WARN([ERROR: GNUnet requires libcurl-gnutls or gnurl >= 7.34])
712 fi
713 else
714         AM_CONDITIONAL(HAVE_LIBCURL, true)
715         AC_DEFINE([HAVE_LIBCURL],[1],[Have CURL])
716 fi
717
718
719 # restore LIBS & CPPFLAGS
720 LIBS=$SAVE_LIBS
721 CPPFLAGS=$SAVE_CPPFLAGS
722
723 AC_CHECK_HEADERS([glpk.h],[glpk=true],[gplk=false])
724 # GLPK must support glpk_init_env, version >= 4.43
725 AC_CHECK_LIB([glpk],[glp_init_env],,[gplk=false])
726 # GLPK must support atm MLP presolving, version >= 4.32
727 AC_CHECK_MEMBERS(glp_iocp.presolve,,[gplk=false],[[#include <glpk.h>]])
728 if test x$gplk = xfalse
729 then
730         AM_CONDITIONAL(HAVE_LIBGLPK, false)
731         AC_MSG_WARN([ERROR: GNUnet requires GLPK  >= 4.32])
732 else
733         AM_CONDITIONAL(HAVE_LIBGLPK, true)
734         AC_DEFINE([HAVE_LIBGLPK],[1],[Have GLPK])
735 fi
736
737
738 AC_CHECK_HEADERS([nss.h],[nss=true],[nss=false])
739 if test x$nss = xfalse
740 then
741         AM_CONDITIONAL(HAVE_GLIBCNSS, false)
742         AC_MSG_WARN([No GNU libc nss header, will not build NSS plugin])
743 else
744         AM_CONDITIONAL(HAVE_GLIBCNSS, true)
745 fi
746
747
748
749 # test for kvm and kstat (for CPU stats under BSD/Solaris)
750 AC_CHECK_LIB([kvm],[kvm_open])
751 AC_CHECK_LIB([kstat],[kstat_open])
752
753
754 # should the build process be restricted to the code required
755 # for GNU Taler wallets?
756 AC_MSG_CHECKING(whether to compile GNU Taler Wallet library ONLY)
757 AC_ARG_ENABLE([taler-wallet],
758    [AS_HELP_STRING([--enable-taler-wallet], [only compile for Taler wallet])],
759    [taler_only=${enableval}],
760    [taler_only=no])
761 AC_MSG_RESULT($taler_only)
762 if test "x$taler_only" = "xyes"
763 then
764   AM_CONDITIONAL([TALER_ONLY],true)
765   AC_DEFINE([TALER_WALLET_ONLY],[1],[Compiling for Taler wallet])
766 else
767   AM_CONDITIONAL([TALER_ONLY],false)
768   AC_DEFINE([TALER_WALLET_ONLY],[0],[Canonical compilation])
769 fi
770
771 # test for libextractor
772 extractor=0
773 AC_MSG_CHECKING(for libextractor)
774 AC_ARG_WITH(extractor,
775    [  --with-extractor=PFX    base of libextractor installation],
776    [AC_MSG_RESULT([$with_extractor])
777     case $with_extractor in
778       no)
779         ;;
780       yes)
781         AC_CHECK_HEADERS([extractor.h],
782           AC_CHECK_LIB([extractor], [EXTRACTOR_plugin_add_defaults],
783             extractor=1))
784         ;;
785       *)
786         LDFLAGS="-L$with_extractor/lib $LDFLAGS"
787         CPPFLAGS="-I$with_extractor/include $CPPFLAGS"
788         AC_CHECK_HEADERS([extractor.h],
789           AC_CHECK_LIB([extractor], [EXTRACTOR_plugin_add_defaults],
790             EXT_LIB_PATH="-L$with_extractor/lib $EXT_LIB_PATH"
791             extractor=1))
792         ;;
793     esac
794    ],
795    [AC_MSG_RESULT([--with-extractor not specified])
796     AC_CHECK_HEADERS([extractor.h],
797      AC_CHECK_LIB([extractor], [EXTRACTOR_plugin_add_defaults],
798       extractor=1))])
799 # restore LIBS
800 LIBS=$SAVE_LIBS
801
802 if test "$extractor" != 1
803 then
804  AM_CONDITIONAL(HAVE_LIBEXTRACTOR, false)
805  AC_DEFINE([HAVE_LIBEXTRACTOR],[0],[Lacking libextractor])
806 else
807  AM_CONDITIONAL(HAVE_LIBEXTRACTOR, true)
808  AC_DEFINE([HAVE_LIBEXTRACTOR],[1],[Have libextractor])
809 fi
810
811
812 if test "$taler_only" != yes
813 then
814
815 # Check for libltdl header (#2999)
816 ltdl=0
817 AC_MSG_CHECKING(for libltdl)
818 AC_ARG_WITH(ltdl,
819    [  --with-ltdl=PFX    base of libltdl installation],
820    [AC_MSG_RESULT([$with_ltdl])
821     case $with_ltdl in
822       no)
823         ;;
824       yes)
825         AC_CHECK_HEADERS(ltdl.h,
826           AC_CHECK_LIB([ltdl], [lt_dlopenext],
827             ltdl=1))
828         ;;
829       *)
830         LDFLAGS="-L$with_ltdl/lib $LDFLAGS"
831         CPPFLAGS="-I$with_ltdl/include $CPPFLAGS"
832         AC_CHECK_HEADERS(ltdl.h,
833           AC_CHECK_LIB([ltdl], [lt_dlopenext],
834             EXT_LIB_PATH="-L$with_ltdl/lib $EXT_LIB_PATH"
835             ltdl=1))
836         ;;
837     esac
838    ],
839    [AC_MSG_RESULT([--with-ltdl not specified])
840     AC_CHECK_HEADERS(ltdl.h,
841      AC_CHECK_LIB([ltdl], [lt_dlopenext],
842       ltdl=1))])
843 if test x$ltdl = x1
844 then
845  AC_MSG_RESULT([libltdl found])
846 else
847  AC_MSG_ERROR([GNUnet requires libltdl (from GNU libtool), try installing libltdl-dev])
848 fi
849 # restore LIBS
850 LIBS=$SAVE_LIBS
851
852 # libidn and libidn2. The ideal goal is this:
853 # check for libidn2, if it doesn't exist check for libidn
854 # if both exist, prefer libidn2
855 # if none exist, fail and message that libidn or libidn2
856 # is required with a preference for libidn2.
857 # TODO: What we have right here can probably be improved.
858 my_with_libidn=1
859 AC_ARG_WITH(libidn,
860             AS_HELP_STRING([--with-libidn=pathname],
861                            [Support IDN (needs libidn)]),
862             [],
863             [withval="yes"])
864 AS_IF([test x_$withval = x_yes],
865       [AC_CHECK_HEADERS([idna.h],
866           AC_MSG_NOTICE([Found idna.h]),
867           AC_CHECK_HEADERS([idn/idna.h],
868                AC_MSG_NOTICE([Found idn/idna.h]),
869                my_with_libidn=0))],
870       [AS_IF([test x_$withval != x_no],
871              [CFLAGS="$CFLAGS -I$withval/include"
872               LDFLAGS="$LDFLAGS -L$withval/lib"
873               AC_CHECK_HEADERS([idna.h],
874                 AC_MSG_NOTICE([Found idna.h]),
875                 [AC_MSG_NOTICE([Failed to find idna.h])
876                  my_with_libidn=0])],
877              [my_with_libidn=0])])
878
879 my_with_libidn2=1
880 AC_ARG_WITH(libidn2,
881             AS_HELP_STRING([--with-libidn2=pathname],
882                            [Support IDN (needs libidn2)]),
883             [],
884             [withval="yes"])
885 AS_IF([test x_$withval = x_yes],
886       [AC_CHECK_HEADERS([idn2.h],
887        AC_MSG_NOTICE([Found idn2.h]),
888        AC_CHECK_HEADERS([idn2/idn2.h],
889           AC_MSG_NOTICE([Found idn2/idn2.h]),
890           [AC_MSG_NOTICE([Failed to find idn2.h])
891            my_with_libidn2=0]))],
892       [AS_IF([test x_$withval != x_no],
893              [CFLAGS="$CFLAGS -I$withval/include"
894               LDFLAGS="$LDFLAGS -L$withval/lib"],
895              [my_with_libidn2=0])])
896
897 AC_MSG_CHECKING([if libidn can be used])
898 # Check for LIBIDNs
899 there_can_only_be_one=1
900
901 working_libidn1=0
902 working_libidn2=0
903 AS_IF([test x$my_with_libidn2 = x1],
904       [AC_MSG_NOTICE([Checking for libidn2])
905        AC_CHECK_LIB([idn2],
906                     [idn2_to_unicode_8z8z],
907                     [working_libidn2=1
908                     LIBS="-lidn2 $LIBS"
909                     AC_DEFINE_UNQUOTED([HAVE_LIBIDN2],
910                                        [1],
911                                         [Define to 1 if you have 'libidn2' (-lidn).])],
912                      [MISSING_DEPS="${MISSING_DEPS}${MISSING_SEP}libidn2"
913                      MISSING_SEP=", "])])
914 AM_CONDITIONAL(HAVE_LIBIDN2, test x$working_libidn2 = x1)
915 AS_IF([test x$working_libidn2 = x0],
916       [AS_IF([test x$my_with_libidn = x1],
917              [AC_MSG_NOTICE([Checking for libidn])
918               AC_CHECK_LIB([idn],
919                            [idna_to_ascii_8z],
920                            [working_libidn1=1
921                            LIBS="-lidn $LIBS"
922                              AC_DEFINE_UNQUOTED([HAVE_LIBIDN],
923                                                 [1],
924                                                 [Define to 1 if you have 'libidn' (-lidn).])],
925                              [there_can_only_be_one=0])],
926              [AS_IF([test x$my_with_libidn2 = x1],
927                     [there_can_only_be_one=0
928                      AC_MSG_FAILURE([* There can only be one libidn.
929                                      * Provide either libidn >= 1.13
930                                      * or
931                                      * libidn2 to the configure
932                                      * script via
933                                      * --with-libidn2
934                                      * --with-libidn])])])])
935 AM_CONDITIONAL(HAVE_LIBIDN, test x$working_libidn1 = x1)
936
937 AS_IF([test x$there_can_only_be_one = x0],
938       [AC_MSG_FAILURE([Missing dependencies: $MISSING_DEPS])])
939
940 # test for zlib
941 SAVE_LDFLAGS=$LDFLAGS
942 SAVE_CPPFLAGS=$CPPFLAGS
943 AC_ARG_WITH(zlib,
944             [  --with-zlib[[=DIR]]       use libz in DIR],
945             [AS_IF([test "$withval" = "no"],
946                    [AC_MSG_ERROR([GNUnet requires zlib])],
947                    [test "$withval" != "yes"],
948                    [
949                      Z_DIR=$withval
950                      CPPFLAGS="${CPPFLAGS} -I$withval/include"
951                      LDFLAGS="${LDFLAGS} -L$withval/lib"
952                    ])
953             ])
954 AC_CHECK_HEADER(zlib.h,
955                 [],
956                 [AC_MSG_ERROR([GNUnet requires zlib])])
957 AC_CHECK_LIB(z, compress2,
958              [
959               AC_DEFINE([HAVE_ZLIB], [], [Have compression library])
960               if test "x${Z_DIR}" != "x"; then
961                       Z_CFLAGS="-I${Z_DIR}/include"
962                       Z_LIBS="-L${Z_DIR}/lib -lz"
963               else
964                       Z_LIBS="-lz"
965               fi],
966               [AC_MSG_ERROR([GNUnet requires zlib])])
967 AC_SUBST(Z_CFLAGS)
968 AC_SUBST(Z_LIBS)
969
970 if test "$enable_shared" = "no"
971 then
972  AC_MSG_ERROR([GNUnet only works with shared libraries. Sorry.])
973 fi
974
975
976
977 # restore LIBS
978 LIBS=$SAVE_LIBS
979
980
981 fi
982
983 # check for iconv
984 AM_ICONV
985
986 # test for libunistring
987 gl_LIBUNISTRING
988 if test $HAVE_LIBUNISTRING != yes; then
989  AC_MSG_ERROR([GNUnet requires libunistring])
990 fi
991 # under emscripten, $gl_libunistring_hexversion is undefined
992 if test "$taler_only" != yes; then
993 if test "x$gl_libunistring_hexversion" = "x" || test "$gl_libunistring_hexversion" -le 2305; then
994  AC_MSG_ERROR([GNUnet requires libunistring >= 0.9.1.1])
995 fi
996 fi
997 AC_CHECK_HEADERS([unistr.h],,AC_MSG_ERROR([Compiling GNUnet requires unistr.h (from libunistring) to be installed]))
998
999 # restore LIBS
1000 LIBS=$SAVE_LIBS
1001
1002
1003
1004 # Checks for standard header files.
1005 AC_HEADER_DIRENT
1006 AC_HEADER_STDC
1007
1008 # Check for headers that are ALWAYS required
1009 AC_CHECK_HEADERS([fcntl.h math.h errno.h ctype.h limits.h stdio.h stdlib.h string.h unistd.h stdarg.h signal.h locale.h sys/stat.h sys/types.h],,AC_MSG_ERROR([Compiling GNUnet requires standard UNIX headers files]))
1010
1011
1012
1013 # Checks for headers that are only required on some systems or opional (and where we do NOT abort if they are not there)
1014 AC_CHECK_HEADERS([malloc.h malloc/malloc.h malloc/malloc_np.h langinfo.h sys/param.h sys/mount.h sys/statvfs.h sys/select.h sockLib.h sys/mman.h sys/msg.h sys/vfs.h arpa/inet.h fcntl.h libintl.h netdb.h netinet/in.h sys/ioctl.h sys/socket.h sys/time.h unistd.h kstat.h sys/sysinfo.h kvm.h sys/file.h sys/resource.h ifaddrs.h mach/mach.h stddef.h sys/timeb.h terminos.h argz.h ucred.h sys/ucred.h endian.h sys/endian.h execinfo.h byteswap.h])
1015
1016 # FreeBSD requires something more funky for netinet/in_systm.h and netinet/ip.h...
1017 AC_CHECK_HEADERS([sys/types.h netinet/in_systm.h netinet/in.h netinet/ip.h],,,
1018 [#ifdef HAVE_SYS_TYPES_H
1019 #include <sys/types.h>
1020 #endif
1021 #ifdef HAVE_NETINET_IN_SYSTM_H
1022 #include <netinet/in_systm.h>
1023 #endif
1024 #ifdef HAVE_NETINET_IN_H
1025 #include <netinet/in.h>
1026 #endif
1027 ])
1028
1029 SAVE_LDFLAGS=$LDFLAGS
1030 SAVE_CPPFLAGS=$CPPFLAGS
1031
1032 # test for sqlite
1033 sqlite=false
1034 AC_MSG_CHECKING(for SQLite)
1035 AC_ARG_WITH(sqlite,
1036   [  --with-sqlite=PFX       base of SQLite installation],
1037   [AC_MSG_RESULT("$with_sqlite")
1038    case $with_sqlite in
1039    no)
1040      ;;
1041    yes)
1042     AC_CHECK_HEADERS(sqlite3.h,
1043      sqlite=true)
1044      ;;
1045    *)
1046     LDFLAGS="-L$with_sqlite/lib $LDFLAGS"
1047     CPPFLAGS="-I$with_sqlite/include $CPPFLAGS"
1048     AC_CHECK_HEADERS(sqlite3.h,
1049      EXT_LIB_PATH="-L$with_sqlite/lib $EXT_LIB_PATH"
1050      SQLITE_LDFLAGS="-L$with_sqlite/lib"
1051      SQLITE_CPPFLAGS="-I$with_sqlite/include"
1052      sqlite=true)
1053     LDFLAGS=$SAVE_LDFLAGS
1054     CPPFLAGS=$SAVE_CPPFLAGS
1055     ;;
1056    esac
1057   ],
1058   [AC_MSG_RESULT([--with-sqlite not specified])
1059     AC_CHECK_HEADERS(sqlite3.h, sqlite=true)])
1060 AM_CONDITIONAL(HAVE_SQLITE, test x$sqlite = xtrue)
1061 AC_SUBST(SQLITE_CPPFLAGS)
1062 AC_SUBST(SQLITE_LDFLAGS)
1063
1064 LDFLAGS=$SAVE_LDFLAGS
1065 CPPFLAGS=$SAVE_CPPFLAGS
1066
1067 # test for postgres
1068 postgres=false
1069 # even running the check for postgres breaks emscripten ...
1070 AS_IF([test "$taler_only" != yes],
1071       [AX_LIB_POSTGRESQL([9.5],
1072         [CPPFLAGS="$CPPFLAGS $POSTGRESQL_CPPFLAGS"
1073          AC_CHECK_HEADERS([libpq-fe.h],
1074          postgres=true)
1075         ])])
1076 AM_CONDITIONAL(HAVE_POSTGRESQL, test x$postgres = xtrue)
1077
1078
1079 LDFLAGS=$SAVE_LDFLAGS
1080 CPPFLAGS=$SAVE_CPPFLAGS
1081
1082 # mysql & windows
1083 AC_CHECK_TYPES([sigset_t, off_t], [], [], [#include <sys/types.h>])
1084 AC_CHECK_TYPES([size_t], [], [], [#include <stdio.h>])
1085
1086 if test "$build_target" = "mingw"
1087 then
1088   CYGWIN_MYSQL_MAGIC="#include <mysql/my_global.h>"
1089 fi
1090
1091 # test for mysql
1092 mysql=false
1093 mysqlfail=false
1094 SAVE_LDFLAGS=$LDFLAGS
1095 SAVE_CPPFLAGS=$CPPFLAGS
1096 AC_MSG_CHECKING(for mysql)
1097 AC_ARG_WITH(mysql,
1098   [  --with-mysql=PFX        base of MySQL installation],
1099   [AC_MSG_RESULT([$with_mysql])
1100    case $with_mysql in
1101    no)
1102       ;;
1103    yes|"")
1104       AC_CHECK_HEADERS(mysql/mysql.h,
1105        AC_CHECK_LIB(mysqlclient, mysql_init,
1106
1107        mysql=true), [], [$CYGWIN_MYSQL_MAGIC])
1108       ;;
1109    *)
1110       LDFLAGS="-L$with_mysql/lib -L$with_mysql/lib/mysql $LDFLAGS $ZLIBS"
1111       CPPFLAGS="-I$with_mysql/include $CPPFLAGS"
1112       AC_CHECK_HEADERS(mysql/mysql.h,
1113        AC_CHECK_LIB(mysqlclient, mysql_init,
1114         MYSQL_LDFLAGS="-L$with_mysql/lib -L$with_mysql/lib/mysql"
1115         MYSQL_CPPFLAGS="-I$with_mysql/include"
1116
1117         mysql=true), [], [$CYGWIN_MYSQL_MAGIC])
1118       ;;
1119    esac
1120   ],
1121   [AC_MSG_RESULT([--with-mysql not specified])
1122    if test -d "/usr/lib64/mysql"; then
1123     MYSQL_LIBDIR="/usr/lib64/mysql"
1124    elif test -d "/usr/lib/mysql"; then
1125     MYSQL_LIBDIR="/usr/lib/mysql"
1126    else
1127     MYSQL_LIBDIR="/usr/lib"
1128    fi
1129    LDFLAGS="-L$MYSQL_LIBDIR $LDFLAGS $ZLIBS"
1130    AC_CHECK_LIB(mysqlclient, mysql_init,
1131     [AC_CHECK_HEADERS(mysql/mysql.h,
1132       MYSQL_LDFLAGS="-L$MYSQL_LIBDIR"
1133       mysql=true
1134
1135      , [], [$CYGWIN_MYSQL_MAGIC])])
1136   ])
1137
1138 AC_SUBST(MYSQL_LDFLAGS)
1139 AC_SUBST(MYSQL_CPPFLAGS)
1140
1141 # additional version check for mysql
1142 AC_ARG_ENABLE(mysql-version-check, [  --disable-mysql-version-check  do not check MySQL version],, enable_mysql_version_check=yes)
1143 if test "$mysql" = "true" -a "x$enable_mysql_version_check" = "xyes"
1144 then
1145   AC_MSG_CHECKING(mysql version)
1146   AC_COMPILE_IFELSE([AC_LANG_PROGRAM(
1147     [[$CYGWIN_MYSQL_MAGIC
1148       #include <mysql/mysql.h>]],
1149     [[
1150       #if (MYSQL_VERSION_ID < 40100)
1151       #error needs at least version >= 4.1
1152       #endif
1153       int main () { return 0; }
1154     ]])
1155     ],mysql=true,mysql=false)
1156   if test "$mysql" = "false"
1157   then
1158     mysqlfail=true
1159     AC_MSG_RESULT([fail, >= 4.1 required])
1160   else
1161     AC_MSG_RESULT(ok)
1162   fi
1163 fi
1164 AM_CONDITIONAL(HAVE_MYSQL, test x$mysql = xtrue)
1165 AM_CONDITIONAL(HAVE_MYSQLE, false)
1166 # restore LIBS
1167 LIBS=$SAVE_LIBS
1168 LDFLAGS=$SAVE_LDFLAGS
1169 CPPFLAGS=$SAVE_CPPFLAGS
1170
1171 if test "$sqlite" = 0 -a "$mysql" = 0
1172 then
1173  AC_MSG_ERROR([GNUnet requires SQLite or MySQL])
1174 fi
1175
1176 # libmicrohttpd
1177 lmhd=0
1178 AC_MSG_CHECKING([for libmicrohttpd])
1179 AC_ARG_WITH(microhttpd,
1180    [  --with-microhttpd=PFX   base of libmicrohttpd installation],
1181    [AC_MSG_RESULT([$with_microhttpd])
1182     case $with_microhttpd in
1183       no)
1184         ;;
1185       yes|"")
1186         AC_CHECK_HEADERS([microhttpd.h],
1187           AC_CHECK_DECL(MHD_OPTION_PER_IP_CONNECTION_LIMIT,
1188             AC_CHECK_LIB([microhttpd], [MHD_get_fdset2],
1189               [AC_MSG_CHECKING([for libmicrohttpd >= 0.9.42])
1190               AC_COMPILE_IFELSE([AC_LANG_SOURCE([
1191                 #include "$native_srcdir/src/include/platform.h"
1192                 #include <microhttpd.h>
1193                 #if (MHD_VERSION < 0x0094200)
1194                 #error needs at least version 0.9.42
1195                 #endif
1196                 int main () { return 0; }
1197                ])],
1198                [AC_MSG_RESULT(ok)
1199                 lmhd=1],
1200                [AC_MSG_RESULT(failed)])]),
1201             [],[#include "$native_srcdir/src/include/platform.h"
1202                 #include <microhttpd.h>]),,
1203             [#include "$native_srcdir/src/include/platform.h"])
1204         ;;
1205       *)
1206         LDFLAGS="-L$with_microhttpd/lib $LDFLAGS"
1207         CPPFLAGS="-I$with_microhttpd/include $CPPFLAGS"
1208         AC_CHECK_HEADERS(microhttpd.h,
1209           AC_CHECK_DECL(MHD_OPTION_PER_IP_CONNECTION_LIMIT,
1210             AC_CHECK_LIB([microhttpd], [MHD_get_fdset2],
1211               EXT_LIB_PATH="-L$with_microhttpd/lib $EXT_LIB_PATH"
1212               [AC_MSG_CHECKING([for libmicrohttpd >= 0.9.42])
1213                AC_COMPILE_IFELSE([AC_LANG_SOURCE([
1214                 #include "$native_srcdir/src/include/platform.h"
1215                 #include <microhttpd.h>
1216                 #if (MHD_VERSION < 0x0094200)
1217                 #error needs at least version 0.9.42
1218                 #endif
1219                 int main () { return 0; }
1220                ])],
1221                [AC_MSG_RESULT(ok)
1222                 lmhd=1],
1223                [AC_MSG_RESULT(failed)])]),
1224             [],[#include "$native_srcdir/src/include/platform.h"
1225                 #include <microhttpd.h>]),,
1226             [#include "$native_srcdir/src/include/platform.h"])
1227         ;;
1228     esac
1229    ],
1230    [AC_MSG_RESULT([--with-microhttpd not specified])
1231     AC_CHECK_HEADERS([microhttpd.h],
1232       AC_CHECK_DECL(MHD_OPTION_PER_IP_CONNECTION_LIMIT,
1233         AC_CHECK_LIB([microhttpd], [MHD_get_fdset2],
1234           [AC_MSG_CHECKING([for libmicrohttpd >= 0.9.42])
1235               AC_COMPILE_IFELSE([AC_LANG_SOURCE([
1236                 #include "$native_srcdir/src/include/platform.h"
1237                 #include <microhttpd.h>
1238                 #if (MHD_VERSION < 0x0094200)
1239                 #error needs at least version 0.9.42
1240                 #endif
1241                ])],
1242                [AC_MSG_RESULT(ok)
1243                 lmhd=1],
1244                [AC_MSG_RESULT(failed)])]),
1245         [],[#include "$native_srcdir/src/include/platform.h"
1246             #include <microhttpd.h>]),,
1247        [#include "$native_srcdir/src/include/platform.h"])])
1248 AM_CONDITIONAL(HAVE_MHD, test x$lmhd = x1)
1249 AC_DEFINE_UNQUOTED([HAVE_MHD], $lmhd, [We have libmicrohttpd])
1250
1251 AM_CONDITIONAL(HAVE_JSON, [test x$jansson = x1])
1252
1253 # restore LIBS
1254 LIBS=$SAVE_LIBS
1255
1256 # check for python & pexpect (used for some testcases only)
1257 AM_PATH_PYTHON([2.6],, [:])
1258 AM_CONDITIONAL([HAVE_PYTHON], [test "$PYTHON" != :])
1259
1260 # check for gettext
1261 AM_GNU_GETTEXT([external])
1262 AM_GNU_GETTEXT_VERSION([0.18.1])
1263
1264 # Checks for standard typedefs, structures, and compiler characteristics.
1265 AC_TYPE_PID_T
1266 AC_TYPE_SIZE_T
1267 AC_TYPE_MODE_T
1268 AC_HEADER_TIME
1269 AC_HEADER_STAT
1270 AC_HEADER_STDBOOL
1271 AC_STRUCT_TM
1272
1273 AC_CHECK_MEMBER([struct sockaddr_in.sin_len],
1274    [ AC_DEFINE(HAVE_SOCKADDR_IN_SIN_LEN, 1, [Do we have sockaddr_in.sin_len?])
1275    ],
1276    [],
1277    [
1278       #include <sys/types.h>
1279       #include <sys/socket.h>
1280       #include <netinet/in.h>
1281    ])
1282
1283 AC_CHECK_MEMBER([struct sockaddr_un.sun_len],
1284    [ AC_DEFINE(HAVE_SOCKADDR_UN_SUN_LEN, 1, [Do we have sockaddr_un.sun_len?])
1285    ],
1286    [],
1287    [
1288       #include <sys/types.h>
1289       #include <sys/socket.h>
1290       #include <sys/un.h>
1291    ])
1292
1293
1294
1295 # Checks for library functions.
1296 AC_FUNC_CLOSEDIR_VOID
1297 AC_FUNC_FORK
1298 AC_PROG_GCC_TRADITIONAL
1299 AC_FUNC_MEMCMP
1300 AC_FUNC_SELECT_ARGTYPES
1301 AC_FUNC_CHOWN
1302
1303 AC_TYPE_SIGNAL
1304 AC_FUNC_STAT
1305 AC_FUNC_STRFTIME
1306 AC_FUNC_VPRINTF
1307 AC_HEADER_SYS_WAIT
1308 AC_TYPE_OFF_T
1309 AC_TYPE_UID_T
1310 AC_CHECK_FUNCS([atoll stat64 strnlen mremap getrlimit setrlimit sysconf initgroups strndup gethostbyname2 getpeerucred getpeereid setresuid $funcstocheck getifaddrs freeifaddrs getresgid mallinfo malloc_size malloc_usable_size getrusage random srandom stat statfs statvfs wait4])
1311
1312 # restore LIBS
1313 LIBS=$SAVE_LIBS
1314
1315 GN_INTLINCL=""
1316 GN_LIBINTL="$LTLIBINTL"
1317 AC_ARG_ENABLE(framework, [  --enable-framework      enable Mac OS X framework build helpers],enable_framework_build=$enableval)
1318 AM_CONDITIONAL(WANT_FRAMEWORK, test x$enable_framework_build = xyes)
1319 if test x$enable_framework_build = xyes
1320 then
1321   AC_DEFINE([FRAMEWORK_BUILD], 1, [Build a Mac OS X Framework])
1322   GN_INTLINCL='-I$(top_srcdir)/src/intlemu'
1323   GN_LIBINTL='$(top_builddir)/src/intlemu/libintlemu.la -framework CoreFoundation'
1324   AC_LIB_APPENDTOVAR([CPPFLAGS], [$GN_INTLINCL])
1325 fi
1326
1327 GN_LIB_LDFLAGS="-export-dynamic -no-undefined"
1328 GN_PLUGIN_LDFLAGS="-export-dynamic -avoid-version -module -no-undefined"
1329
1330 AC_SUBST(GN_LIB_LDFLAGS)
1331 AC_SUBST(GN_PLUGIN_LDFLAGS)
1332 AC_SUBST(GN_INTLINCL)
1333 AC_SUBST(GN_LIBINTL)
1334
1335 AC_SUBST(CPPFLAGS)
1336 AC_SUBST(LIBS)
1337 AC_SUBST(LDFLAGS)
1338 AC_SUBST(EXT_LIB_PATH)
1339 AC_SUBST(EXT_LIBS)
1340
1341 AC_SUBST(LIBPREFIX)
1342 AC_SUBST(DLLDIR)
1343 AC_SUBST(EXT_LIB_PATH)
1344
1345
1346 # test for sudo
1347 AC_MSG_CHECKING(for sudo)
1348 AC_ARG_WITH(sudo,
1349   [  --with-sudo=PATH       path to sudo binary (or just yes)],
1350   [AC_MSG_RESULT("$with_sudo")
1351    case $with_sudo in
1352    no)
1353      SUDO_BINARY=
1354      ;;
1355    yes)
1356      SUDO_BINARY=sudo
1357      ;;
1358    *)
1359      SUDO_BINARY=$with_sudo
1360     ;;
1361    esac
1362   ],
1363   [AC_MSG_RESULT([no])])
1364 AC_SUBST(SUDO_BINARY)
1365 AM_CONDITIONAL([HAVE_SUDO], [test "x$SUDO_BINARY" != "x" -o -w /])
1366
1367
1368 # test for gnunetdns group name
1369 GNUNETDNS_GROUP=gnunetdns
1370 AC_MSG_CHECKING(for gnunetdns group name)
1371 AC_ARG_WITH(gnunetdns,
1372   [  --with-gnunetdns=GRPNAME       name for gnunetdns group],
1373   [AC_MSG_RESULT("$with_gnunetdns")
1374    case $with_gnunetdns in
1375    no)
1376      GNUNETDNS_GROUP=gnunet
1377      ;;
1378    yes)
1379      GNUNETDNS_GROUP=gnunetdns
1380      ;;
1381    *)
1382      GNUNETDNS_GROUP=$with_gnunetdns
1383     ;;
1384    esac
1385   ],
1386   [AC_MSG_RESULT([gnunetdns])])
1387 AC_SUBST(GNUNETDNS_GROUP)
1388
1389
1390
1391 # gnutls
1392 gnutls=0
1393 gnutls_dane=0
1394 AC_MSG_CHECKING(for gnutls)
1395 AC_ARG_WITH(gnutls,
1396    [  --with-gnutls=PFX   base of gnutls installation],
1397    [AC_MSG_RESULT([$with_gnutls])
1398     case $with_gnutls in
1399       no)
1400         ;;
1401       yes)
1402         AC_CHECK_HEADERS([gnutls/abstract.h],
1403             AC_CHECK_LIB([gnutls], [gnutls_priority_set],
1404              gnutls=true))
1405         AC_CHECK_HEADERS([gnutls/dane.h],
1406             AC_CHECK_LIB([gnutls-dane], [dane_verify_crt_raw],
1407               gnutls_dane=1))
1408         ;;
1409       *)
1410         LDFLAGS="-L$with_gnutls/lib $LDFLAGS"
1411         CPPFLAGS="-I$with_gnutls/include $CPPFLAGS"
1412         AC_CHECK_HEADERS([gnutls/abstract.h],
1413             AC_CHECK_LIB([gnutls], [gnutls_priority_set],
1414               EXT_LIB_PATH="-L$with_gnutls/lib $EXT_LIB_PATH"
1415               gnutls=true))
1416         AC_CHECK_HEADERS([gnutls/dane.h],
1417             AC_CHECK_LIB([gnutls-dane], [dane_verify_crt_raw],
1418               gnutls_dane=1))
1419         ;;
1420     esac
1421    ],
1422    [AC_MSG_RESULT([--with-gnutls not specified])
1423     AC_CHECK_HEADERS([gnutls/abstract.h],
1424         AC_CHECK_LIB([gnutls], [gnutls_priority_set],
1425           gnutls=true))
1426     AC_CHECK_HEADERS([gnutls/dane.h],
1427         AC_CHECK_LIB([gnutls-dane], [dane_verify_crt_raw],
1428                      gnutls_dane=1))
1429    ])
1430 AM_CONDITIONAL(HAVE_GNUTLS, test x$gnutls = xtrue)
1431 AC_DEFINE_UNQUOTED([HAVE_GNUTLS], $gnutls, [We have GnuTLS])
1432 AM_CONDITIONAL(HAVE_GNUTLS_DANE, test x$gnutls_dane = x1)
1433 AC_DEFINE_UNQUOTED([HAVE_GNUTLS_DANE], $gnutls_dane, [We have GnuTLS with DANE support])
1434
1435
1436 # Test if we are building for superMUC
1437 AC_MSG_CHECKING(if GNUnet is being configured to run on the SuperMUC)
1438 AC_ARG_ENABLE([supermuc],
1439     [AS_HELP_STRING([--enable-supermuc],
1440        [build GNUnet with support to run on the SuperMUC (default is NO)])],
1441     [if test "x$enable_supermuc" = "xno"
1442      then
1443        supermuc=0
1444      else
1445        supermuc=1
1446      fi],
1447     [supermuc=0
1448      enable_supermuc=no])
1449 AC_MSG_RESULT($enable_SUPERMUC)
1450 AM_CONDITIONAL([ENABLE_SUPERMUC], [test "x$supermuc" = "x1"])
1451 AC_DEFINE_UNQUOTED([ENABLE_SUPERMUC], [$supermuc], [Build with support for SuperMUC])
1452
1453 # Check if NSE has to send timestamp information to testbed logger for
1454 # generating histogram of messages received
1455 AC_MSG_CHECKING(if NSE has to send timestamp information to testbed logger)
1456 AC_ARG_ENABLE([nse-histogram],
1457     [AS_HELP_STRING([--enable-nse-histogram],
1458        [have NSE send timestamp information to testbed logger for generating
1459        histogram of received messages.  NOT useful for production (default is
1460        NO)])],
1461     [if test "x$enableval" = "xno"
1462      then
1463        nse_histogram=0
1464      else
1465        nse_histogram=1
1466      fi],
1467     [nse_histogram=0
1468      enable_nse_histogram=no])
1469 AC_MSG_RESULT($enable_nse_histogram)
1470 AM_CONDITIONAL([ENABLE_NSE_HISTOGRAM], [test "x$nse_histogram" = "x1"])
1471 AC_DEFINE_UNQUOTED([ENABLE_NSE_HISTOGRAM], [$nse_histogram],
1472                    [have NSE send timestamp information to testbed logger])
1473
1474 # should 'make check' run tests?
1475 AC_MSG_CHECKING(whether to run tests)
1476 AC_ARG_ENABLE([testruns],
1477    [AS_HELP_STRING([--disable-testruns], [disable running tests on make check (default is YES)])],
1478    [enable_tests_run=${enableval}],
1479    [enable_tests_run=yes])
1480 AC_MSG_RESULT($enable_test_run)
1481 AM_CONDITIONAL([ENABLE_TEST_RUN], [test "x$enable_tests_run" = "xyes"])
1482
1483
1484 # should monkey be used when running (certain) services?
1485 AC_MSG_CHECKING(whether to run with monkey)
1486 AC_ARG_ENABLE([monkey],
1487    [AS_HELP_STRING([--enable-monkey], [enable running with monkey])],
1488    [enable_monkey=${enableval}],
1489    [enable_monkey=no])
1490 AC_MSG_RESULT($enable_monkey)
1491 AM_CONDITIONAL([ENABLE_MONKEY], [test "x$enable_monkey" = "xyes"])
1492 if test "x$enable_monkey" = "xyes"
1493 then
1494   MONKEYPREFIX="pathologist -d $(eval echo ${datarootdir}/gnunet/gnunet.sqlite) -p 30 --"
1495 else
1496   MONKEYPREFIX=""
1497 fi
1498 AC_SUBST(MONKEYPREFIX)
1499
1500
1501 AC_MSG_CHECKING([whether to compile in benchmarks (currently for http and crypto)])
1502 AC_ARG_ENABLE([benchmark],
1503    [AS_HELP_STRING([--enable-benchmark], [enable benchmarking])],
1504    [enable_benchmark=${enableval}],
1505    [enable_benchmark=no])
1506 AC_MSG_RESULT($enable_benchmark)
1507 AS_IF([test "x$enable_benchmark" = "xyes"],
1508       [AC_DEFINE_UNQUOTED(ENABLE_BENCHMARK,1,[Benchmarks are enabled])])
1509 AM_CONDITIONAL([ENABLE_BENCHMARK], [test "x$enable_benchmark" = "xyes"])
1510
1511
1512 # should expensive tests be run?
1513 AC_MSG_CHECKING(whether to run expensive tests)
1514 AC_ARG_ENABLE([expensivetests],
1515    [AS_HELP_STRING([--enable-expensivetests], [enable running expensive testcases])],
1516    [enable_expensive=${enableval}],
1517    [enable_expensive=no])
1518 AC_MSG_RESULT($enable_expensive)
1519 AM_CONDITIONAL([HAVE_EXPENSIVE_TESTS], [test "x$enable_expensive" = "xyes"])
1520
1521 # should ports be open for Java services?
1522 AC_MSG_CHECKING(whether to enable ports for gnunet-java)
1523 AC_ARG_ENABLE([javaports],
1524    [AS_HELP_STRING([--enable-javaports], [use non-zero ports for services with Java bindings (default is NO)])],
1525    [enable_java_ports=${enableval}],
1526    [enable_java_ports=no])
1527 AC_MSG_RESULT($enable_java_ports)
1528 if test "x$enable_java_ports" = "xyes"
1529 then
1530   JAVAPORT=""
1531 else
1532   JAVAPORT="$UNIXONLY"
1533 fi
1534 AC_SUBST(JAVAPORT)
1535
1536 # should benchmarks be run?
1537 AC_MSG_CHECKING(whether to run benchmarks during make check)
1538 AC_ARG_ENABLE([benchmarks],
1539    [AS_HELP_STRING([--enable-benchmarks], [enable running benchmarks during make check])],
1540    [enable_benchmarks=${enableval}],
1541    [enable_benchmarks=no])
1542 AC_MSG_RESULT($enable_benchmarks)
1543 AM_CONDITIONAL([HAVE_BENCHMARKS], [test "x$enable_benchmarks" = "xyes"])
1544
1545 # should gnunet-testing be compiled
1546 AC_MSG_CHECKING(wether to compile gnunet-testing)
1547 AC_ARG_ENABLE([testing],
1548    [AS_HELP_STRING([--disable-testing], [do not build gnunet-testing])],
1549    [enable_testing=${enableval}],
1550    [enable_testing=yes])
1551 AC_MSG_RESULT($enable_testing)
1552 AM_CONDITIONAL([HAVE_TESTING], [test "x$enable_testing" = "xyes"])
1553
1554 # should experimental code be compiled (code that may not yet compile)?
1555 AC_MSG_CHECKING(whether to compile experimental code)
1556 AC_ARG_ENABLE([experimental],
1557    [AS_HELP_STRING([--enable-experimental], [enable compiling experimental code])],
1558    [enable_experimental=${enableval}],
1559    [enable_experimental=no])
1560 AC_MSG_RESULT($enable_experimental)
1561 AM_CONDITIONAL([HAVE_EXPERIMENTAL], [test "x$enable_experimental" = "xyes"])
1562
1563 # should malicious code be compiled (should only be used for testing)?
1564 AC_MSG_CHECKING(whether to compile malicious code)
1565 AC_ARG_ENABLE([malicious],
1566    [AS_HELP_STRING([--enable-malicious], [enable compiling malicious code])],
1567    [if test "x$enableval" = "xno"
1568      then
1569        malicious=0
1570      else
1571        malicious=1
1572      fi],
1573    [malicious=0
1574     enable_malicious=no])
1575 AC_MSG_RESULT($enable_malicious)
1576 AM_CONDITIONAL([ENABLE_MALICIOUS], [test 1=$malicious])
1577 AC_DEFINE_UNQUOTED([ENABLE_MALICIOUS], [$malicious],
1578                    [enable compilation of malicious code])
1579
1580 # should services be started on demand when needed?  Some services may choose to
1581 # never start by default and it is up to the service/module developer to decide
1582 # by having "START_ON_DEMAND = NO" instead of "START_ON_DEMAND = @START_ON_DEMAND@"
1583 # in the service/module's conf.in file.
1584 # See also IMMEDIATE_START for an unconditional immediate start.
1585 START_ON_DEMAND="YES"
1586 AC_MSG_CHECKING(whether to start peer's services on demand by default)
1587 AC_ARG_ENABLE([autostart],
1588    [AS_HELP_STRING([--disable-autostart], [do not start peer's services by default])],
1589    [enable_autostart=${enableval}
1590     if test "x$enable_autostart" == "xno"
1591     then
1592         START_ON_DEMAND="NO"
1593     fi
1594    ],
1595    [enable_autostart=yes])
1596 AC_MSG_RESULT($enable_autostart)
1597 #AM_CONDITIONAL([HAVE_START_ON_DEMAND], [test "x$enable_autostart" = "xyes"])
1598 AC_SUBST(START_ON_DEMAND)
1599
1600 # should memory statistics be kept (very expensive CPU-wise!)
1601 AC_MSG_CHECKING(whether to create expensive statistics on memory use)
1602 AC_ARG_ENABLE([heapstats],
1603    [AS_HELP_STRING([--enable-heapstats], [enable expensive heap statistics])],
1604    [enable_heapstats=1],
1605    [enable_heapstats=0])
1606 AC_MSG_RESULT($enable_heapstats)
1607 AC_DEFINE_UNQUOTED([ENABLE_HEAP_STATISTICS],$enable_heapstats,[enable expensive heap statistics])
1608
1609 # should code be enabled that works around missing OS functionality on Windows?
1610 # used for test cases
1611 if test $build_target = "mingw"
1612 then
1613         workarounds=1
1614
1615 AC_LINK_IFELSE(
1616  [AC_LANG_PROGRAM(
1617   [#include <ws2tcpip.h>
1618   ],[
1619   int s = socket (0, 0, 0);])
1620  ],[
1621   AC_DEFINE_UNQUOTED([HAVE_SOCKET],1,[Define this if socket() is available])
1622  ],[
1623   AC_DEFINE_UNQUOTED([HAVE_SOCKET],0,[Define this if socket() is available])
1624  ])
1625
1626 AC_LINK_IFELSE(
1627  [AC_LANG_PROGRAM(
1628   [#include <ws2tcpip.h>
1629   ],[
1630   int s = select (0, NULL, NULL, NULL, NULL);])
1631  ],[
1632   AC_DEFINE_UNQUOTED([HAVE_SELECT],1,[Define this if select() is available])
1633  ],[
1634   AC_DEFINE_UNQUOTED([HAVE_SELECT],0,[Define this if select() is available])
1635  ])
1636
1637 AC_LINK_IFELSE(
1638  [AC_LANG_PROGRAM(
1639   [#include <ws2tcpip.h>
1640   ],[
1641   struct in_addr i;
1642   char *s = inet_ntoa (i);])
1643  ],[
1644   AC_DEFINE_UNQUOTED([HAVE_INET_NTOA],1,[Define this if inet_ntoa() is available])
1645  ],[
1646   AC_DEFINE_UNQUOTED([HAVE_INET_NTOA],0,[Define this if inet_ntoa() is available])
1647  ])
1648
1649 AC_LINK_IFELSE(
1650  [AC_LANG_PROGRAM(
1651   [#include <ws2tcpip.h>
1652   ],[
1653   int s = getnameinfo (NULL, 0, NULL, 0, NULL, 0, 0);])
1654  ],[
1655   AC_DEFINE_UNQUOTED([HAVE_GETNAMEINFO],1,[Define this if getnameinfo() is available])
1656  ],[
1657   AC_DEFINE_UNQUOTED([HAVE_GETNAMEINFO],0,[Define this if getnameinfo() is available])
1658  ])
1659
1660 AC_LINK_IFELSE(
1661  [AC_LANG_PROGRAM(
1662   [#include <ws2tcpip.h>
1663   ],[
1664   int s = gethostname (NULL, 0);])
1665  ],[
1666   AC_DEFINE_UNQUOTED([HAVE_GETHOSTNAME],1,[Define this if gethostname() is available])
1667  ],[
1668   AC_DEFINE_UNQUOTED([HAVE_GETHOSTNAME],0,[Define this if gethostname() is available])
1669  ])
1670
1671 AC_LINK_IFELSE(
1672  [AC_LANG_PROGRAM(
1673   [#include <ws2tcpip.h>
1674   ],[
1675   void *s = gethostbyname (NULL);])
1676  ],[
1677   AC_DEFINE_UNQUOTED([HAVE_GETHOSTBYNAME],1,[Define this if gethostbyname() is available])
1678  ],[
1679   AC_DEFINE_UNQUOTED([HAVE_GETHOSTBYNAME],0,[Define this if gethostbyname() is available])
1680  ])
1681
1682 AC_LINK_IFELSE(
1683  [AC_LANG_PROGRAM(
1684   [#include <ws2tcpip.h>
1685   ],[
1686   void *s = gethostbyaddr (NULL, 0, 0);])
1687  ],[
1688   AC_DEFINE_UNQUOTED([HAVE_GETHOSTBYADDR],1,[Define this if gethostbyaddr() is available])
1689  ],[
1690   AC_DEFINE_UNQUOTED([HAVE_GETHOSTBYADDR],0,[Define this if gethostbyaddr() is available])
1691  ])
1692
1693 AC_LINK_IFELSE(
1694  [AC_LANG_PROGRAM(
1695   [#include <ws2tcpip.h>
1696   ],[
1697   int s = getaddrinfo (NULL, NULL, NULL, NULL);])
1698  ],[
1699   AC_DEFINE_UNQUOTED([HAVE_GETADDRINFO],1,[Define this if getaddrinfo() is available])
1700  ],[
1701   AC_DEFINE_UNQUOTED([HAVE_GETADDRINFO],0,[Define this if getaddrinfo() is available])
1702  ])
1703
1704 else
1705   AC_MSG_CHECKING(whether to enable windows workarounds)
1706   AC_ARG_ENABLE([windows_workarounds],
1707      [AS_HELP_STRING([--enable-windows_workarounds], [enable workarounds used on Windows (only useful for test cases)])],
1708      [enable_workarounds=${enableval}],
1709      [enable_workarounds=no])
1710   AC_MSG_RESULT($enable_workarounds)
1711   if test x$enable_windows_workarounds = "xyes"
1712   then
1713      workarounds=1
1714   else
1715      workarounds=0
1716    fi
1717 fi
1718 AC_DEFINE_UNQUOTED([ENABLE_WINDOWS_WORKAROUNDS], $workarounds, [enable workarounds used on Windows (only useful for test cases)])
1719
1720 # gcov compilation
1721 AC_MSG_CHECKING(whether to compile with support for code coverage analysis)
1722 AC_ARG_ENABLE([coverage],
1723               AS_HELP_STRING([--enable-coverage],
1724                              [compile the library with code coverage support]),
1725               [use_gcov=${enableval}],
1726               [use_gcov=no])
1727 AC_MSG_RESULT($use_gcov)
1728 AM_CONDITIONAL([USE_COVERAGE], [test "x$use_gcov" = "xyes"])
1729
1730
1731 # version info
1732 # TODO: git blame says this predates our switch to git. git-svn should be adjusted to simply git, or
1733 # an external script that does the job.
1734 AC_PATH_PROG(svnversioncommand, svnversion)
1735 AC_PATH_PROG(gitcommand, git)
1736 AC_MSG_CHECKING(for source being under a VCS)
1737
1738
1739 # version info
1740 AC_PATH_PROG(gitcommand, git)
1741 AC_MSG_CHECKING(for source being under a VCS)
1742 git_version=
1743 AS_IF([test ! "X$gitcommand" = "X"],
1744 [
1745   git_version=$(cd $srcdir ; git rev-list --full-history --all --abbrev-commit | head -n 1 2>/dev/null)
1746 ])
1747 AS_IF([test "X$git_version" = "X"],
1748   [
1749     vcs_name="no"
1750     vcs_version="\"release\""
1751   ],
1752   [
1753     vcs_name="yes, git-svn"
1754     vcs_version="\"git-$git_version\""
1755   ])
1756 AC_MSG_RESULT($vcs_name)
1757
1758 AC_MSG_CHECKING(VCS version)
1759 AC_MSG_RESULT($vcs_version)
1760 AC_DEFINE_UNQUOTED(VCS_VERSION, [$vcs_version], [VCS revision/hash or tarball version])
1761
1762 AC_CONFIG_FILES([
1763 Makefile
1764 contrib/Makefile
1765 doc/Makefile
1766 doc/man/Makefile
1767 doc/doxygen/Makefile
1768 doc/handbook/Makefile
1769 doc/tutorial/Makefile
1770 m4/Makefile
1771 po/Makefile.in
1772 src/Makefile
1773 src/arm/Makefile
1774 src/arm/arm.conf
1775 src/ats/Makefile
1776 src/ats/ats.conf
1777 src/ats-tool/Makefile
1778 src/ats-tests/Makefile
1779 src/auction/Makefile
1780 src/block/Makefile
1781 src/cadet/Makefile
1782 src/cadet/cadet.conf
1783 src/core/Makefile
1784 src/core/core.conf
1785 src/consensus/Makefile
1786 src/consensus/consensus.conf
1787 src/conversation/Makefile
1788 src/conversation/conversation.conf
1789 src/curl/Makefile
1790 src/datacache/Makefile
1791 src/datastore/Makefile
1792 src/datastore/datastore.conf
1793 src/dht/Makefile
1794 src/dht/dht.conf
1795 src/dns/Makefile
1796 src/dns/dns.conf
1797 src/exit/Makefile
1798 src/fragmentation/Makefile
1799 src/fs/Makefile
1800 src/fs/fs.conf
1801 src/gns/Makefile
1802 src/gns/gns.conf
1803 src/gns/nss/Makefile
1804 src/gnsrecord/Makefile
1805 src/hello/Makefile
1806 src/identity/Makefile
1807 src/identity/identity.conf
1808 src/credential/Makefile
1809 src/credential/credential.conf
1810 src/include/Makefile
1811 src/integration-tests/Makefile
1812 src/json/Makefile
1813 src/hostlist/Makefile
1814 src/multicast/Makefile
1815 src/multicast/multicast.conf
1816 src/my/Makefile
1817 src/mysql/Makefile
1818 src/namecache/Makefile
1819 src/namecache/namecache.conf
1820 src/namestore/Makefile
1821 src/namestore/namestore.conf
1822 src/nat/Makefile
1823 src/nat/nat.conf
1824 src/nat-auto/Makefile
1825 src/nat-auto/nat-auto.conf
1826 src/nse/Makefile
1827 src/nse/nse.conf
1828 src/peerinfo/Makefile
1829 src/peerinfo/peerinfo.conf
1830 src/peerinfo-tool/Makefile
1831 src/peerstore/Makefile
1832 src/peerstore/peerstore.conf
1833 src/pq/Makefile
1834 src/psycutil/Makefile
1835 src/psyc/Makefile
1836 src/psyc/psyc.conf
1837 src/psycstore/Makefile
1838 src/psycstore/psycstore.conf
1839 src/pt/Makefile
1840 src/regex/Makefile
1841 src/regex/regex.conf
1842 src/revocation/Makefile
1843 src/revocation/revocation.conf
1844 src/rps/Makefile
1845 src/rps/rps.conf
1846 src/secretsharing/Makefile
1847 src/secretsharing/secretsharing.conf
1848 src/scalarproduct/Makefile
1849 src/scalarproduct/scalarproduct.conf
1850 src/set/Makefile
1851 src/set/set.conf
1852 src/social/Makefile
1853 src/social/social.conf
1854 src/sq/Makefile
1855 src/statistics/Makefile
1856 src/statistics/statistics.conf
1857 src/template/Makefile
1858 src/testbed/Makefile
1859 src/testbed/testbed.conf
1860 src/testbed-logger/Makefile
1861 src/testbed-logger/testbed-logger.conf
1862 src/testing/Makefile
1863 src/topology/Makefile
1864 src/transport/Makefile
1865 src/transport/transport.conf
1866 src/util/Makefile
1867 src/util/resolver.conf
1868 src/vpn/Makefile
1869 src/vpn/vpn.conf
1870 src/zonemaster/Makefile
1871 src/zonemaster/zonemaster.conf
1872 src/rest/Makefile
1873 src/rest-plugins/Makefile
1874 src/abe/Makefile
1875 src/reclaim-attribute/Makefile
1876 src/reclaim/Makefile
1877 pkgconfig/Makefile
1878 pkgconfig/gnunetarm.pc
1879 pkgconfig/gnunetats.pc
1880 pkgconfig/gnunetblock.pc
1881 pkgconfig/gnunetcadet.pc
1882 pkgconfig/gnunetconsensus.pc
1883 pkgconfig/gnunetconversation.pc
1884 pkgconfig/gnunetcore.pc
1885 pkgconfig/gnunetdatacache.pc
1886 pkgconfig/gnunetdatastore.pc
1887 pkgconfig/gnunetdht.pc
1888 pkgconfig/gnunetdns.pc
1889 pkgconfig/gnunetdv.pc
1890 pkgconfig/gnunetenv.pc
1891 pkgconfig/gnunetfragmentation.pc
1892 pkgconfig/gnunetfs.pc
1893 pkgconfig/gnunetgns.pc
1894 pkgconfig/gnunethello.pc
1895 pkgconfig/gnunetidentity.pc
1896 pkgconfig/gnunetmicrophone.pc
1897 pkgconfig/gnunetmulticast.pc
1898 pkgconfig/gnunetmysql.pc
1899 pkgconfig/gnunetnamestore.pc
1900 pkgconfig/gnunetnat.pc
1901 pkgconfig/gnunetnse.pc
1902 pkgconfig/gnunetpeerinfo.pc
1903 pkgconfig/gnunetpq.pc
1904 pkgconfig/gnunetpsyc.pc
1905 pkgconfig/gnunetpsycstore.pc
1906 pkgconfig/gnunetregex.pc
1907 pkgconfig/gnunetrevocation.pc
1908 pkgconfig/gnunetrps.pc
1909 pkgconfig/gnunetscalarproduct.pc
1910 pkgconfig/gnunetset.pc
1911 pkgconfig/gnunetsocial.pc
1912 pkgconfig/gnunetspeaker.pc
1913 pkgconfig/gnunetstatistics.pc
1914 pkgconfig/gnunettestbed.pc
1915 pkgconfig/gnunettesting.pc
1916 pkgconfig/gnunettransport.pc
1917 pkgconfig/gnunetutil.pc
1918 pkgconfig/gnunetvpn.pc
1919 ])
1920 AC_OUTPUT
1921
1922 # Finally: summary!
1923
1924 # warn user if mysql found but not used due to version
1925 AS_IF([test "$mysqlfail" = "true"]
1926       [AC_MSG_NOTICE([WARNING: optional MySQL not found (or too old)])])
1927
1928 # sqlite
1929 AS_IF([test "x$sqlite" = "x0"],
1930       [AC_MSG_ERROR([ERROR: sqlite3 not found, but sqlite3 is required.])])
1931
1932 # libgnurl
1933 AS_IF([test "$gnurl" = "0"],
1934   [AS_IF([test "x$curl" = "xfalse"],
1935     [AC_MSG_NOTICE([WARNING: libgnurl not found.  http client support will not be compiled.])
1936      AC_MSG_WARN([ERROR: libgnurl not found.  hostlist daemon will not be compiled, and you probably WANT the hostlist daemon])],
1937     [AC_MSG_NOTICE([WARNING: libgnurl not found, trying to use libcurl-gnutls instead.])])])
1938
1939 # bluetooth
1940 AS_IF([test "x$bluetooth" = "x0"],
1941       [AC_MSG_NOTICE([WARNING: optional bluetooth library not found.])])
1942
1943
1944 # jansson
1945 AS_IF([test "x$jansson" = "x0"],
1946       [AC_MSG_NOTICE([WARNING: optional jansson library not found.])])
1947
1948 #
1949 # FIXME: `some modules' -> be more specific which exact modules.
1950 #
1951
1952 # warn user if iptables is not found
1953 AS_IF([test "$VAR_IPTABLES_BINARY" = "false"],
1954  [AC_MSG_NOTICE([WARNING: optional iptables not found])])
1955
1956 # warn user if ifconfig is not found
1957 AS_IF([test "$VAR_IFCONFIG_BINARY" = "false"],
1958  [AC_MSG_NOTICE([WARNING: optional ifconfig not found])])
1959
1960 # warn user if upnpc binary is not found
1961 AS_IF([test "$VAR_UPNPC_BINARY" = "false"],
1962   [AC_MSG_NOTICE([WARNING: optional upnpc binary not found])])
1963
1964 #gnutls
1965 AS_IF([test x$gnutls != xtrue],
1966  [AC_MSG_NOTICE([WARNING: GnuTLS not found, gnunet-gns-proxy will not be built])],
1967  [AS_IF([test "x$gnutls_dane" != "x1"],
1968   [AC_MSG_NOTICE([WARNING: GnuTLS has no DANE support, DANE validation will not be possible])])])
1969
1970 # java ports
1971 AS_IF([test "x$enable_java_ports" = "xyes"],
1972       [AC_MSG_NOTICE([NOTICE: Opening ports for gnunet-java bindings by default.])])
1973
1974 # MHD
1975 AS_IF([test "x$lmhd" != "x1"],
1976       [AC_MSG_NOTICE([WARNING: optional libmicrohttpd not found])])
1977
1978 # conversation
1979 AS_IF([test "x$conversation_backend" = "xnone"],
1980  [AS_IF([test "x$pulse" != "x1"],
1981    [AC_MSG_NOTICE([WARNING: libpulse(audio) not found, conversation will not be built.])])
1982   AS_IF([test "x$opus" != "x1"],
1983    [AC_MSG_NOTICE([WARNING: libopus not found, conversation will not be built.])])
1984   AS_IF([test "x$gst" != "x1"],
1985    [AC_MSG_NOTICE([WARNING: GStreamer not found, conversation will not be built.])])])
1986
1987 AS_IF([test "$extractor" != 1],
1988       [AC_MSG_WARN([ERROR: libextractor not found, but various file-sharing functions require it])])
1989
1990 AS_IF([test "x$working_libidn2" = x1],
1991       [AC_MSG_NOTICE([INFO: Using libidn2])])
1992 AS_IF([test "x$working_libidn1" = x1],
1993       [AC_MSG_NOTICE([INFO: Using libidn1])])
1994
1995 AC_MSG_NOTICE([NOTICE: Database support is set to MySQL: $mysql, SQLite: $sqlite, Postgres: $postgres])
1996
1997 AS_IF([test "$enable_framework_build" = "yes"],
1998       [AC_MSG_NOTICE([Mac OS X framework build enabled.])])
1999
2000 AC_MSG_NOTICE([********************************************
2001 Please make sure NOW that you have created a user and group 'gnunet'
2002 and additionally a group 'gnunetdns'. On Debian and Ubuntu GNU/Linux, type:
2003         addgroup gnunetdns
2004         adduser --system --group --disabled-login --home /var/lib/gnunet gnunet
2005
2006 Make sure that '/var/lib/gnunet' is owned (and writable) by user
2007 'gnunet'.  Then, you can compile GNUnet with
2008         make
2009
2010 After that, run (if necessary as 'root')
2011         make install
2012 to install everything.
2013
2014 Each GNUnet user should be added to the 'gnunet' group (may
2015 require fresh login to come into effect):
2016         adduser USERNAME gnunet
2017 (run the above command as root once for each of your users, replacing
2018 "USERNAME" with the respective login names).  If you have a global IP
2019 address, no further configuration is required.
2020
2021 For more detailed setup instructions, see https://gnunet.org/installation
2022
2023 Optionally, download and compile gnunet-gtk to get a GUI for
2024 file-sharing and configuration.  This is particularly recommended
2025 if your network setup is non-trivial, as gnunet-setup can be
2026 used to test in the GUI if your network configuration is working.
2027 gnunet-setup should be run as the "gnunet" user under X.  As it
2028 does very little with the network, running it as "root" is likely
2029 also harmless.  You can also run it as a normal user, but then
2030 you have to copy ~/.gnunet/gnunet.conf" over to the "gnunet" user's
2031 home directory in the end.
2032
2033 Once you have configured your peer, run (as the 'gnunet' user)
2034         gnunet-arm -s
2035 to start the peer.  You can then run the various GNUnet-tools as
2036 your "normal" user (who should only be in the group 'gnunet').
2037 ********************************************])