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