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