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