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