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