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