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