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