finishing gnunet-nat-server
[oweals/gnunet.git] / configure.ac
1 # This file is part of GNUnet.
2 # (C) 2001--2010 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 2, 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.9.0pre3],[bug-gnunet@gnu.org])
26
27 AC_CANONICAL_TARGET
28 AC_CANONICAL_HOST
29 AC_CANONICAL_SYSTEM
30
31 AM_INIT_AUTOMAKE([gnunet], [0.9.0pre3])
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
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 LTDL_INIT
47 AC_SUBST(LTDLINCL)
48 AC_SUBST(LIBLTDL)
49 AC_SUBST(MKDIR_P)
50
51 # large file support
52 AC_SYS_LARGEFILE
53 AC_FUNC_FSEEKO
54
55
56 if test "$enable_shared" = "no"
57 then
58  AC_MSG_ERROR([GNUnet only works with shared libraries. Sorry.])
59 fi
60
61 CFLAGS="-Wall $CFLAGS"
62 # use '-fno-strict-aliasing', but only if the compiler can take it
63 if gcc -fno-strict-aliasing -S -o /dev/null -xc /dev/null >/dev/null 2>&1;
64 then
65  CFLAGS="-fno-strict-aliasing $CFLAGS"
66 fi
67
68 # Use Linux interface name unless the OS has a different preference
69 DEFAULT_INTERFACE="\"eth0\""
70
71 # Check system type
72 case "$host_os" in
73 *darwin* | *rhapsody* | *macosx*)
74      AC_DEFINE_UNQUOTED(DARWIN,1,[This is an Apple Darwin system])
75      CPPFLAGS="-D_APPLE_C_SOURCE $CPPFLAGS"
76      CFLAGS="-no-cpp-precomp -fno-common $CFLAGS"
77      AC_MSG_WARN([The VPN application cannot be compiled on your OS])
78      build_target="darwin"
79      DEFAULT_INTERFACE="\"en0\""
80      LIBPREFIX=
81      DLLDIR=lib
82      ;;
83 linux*)
84      AC_DEFINE_UNQUOTED(LINUX,1,[This is a Linux system])
85      build_target="linux"
86      LIBPREFIX=
87      DLLDIR=lib
88      AC_PATH_XTRA
89      ;;
90 freebsd*)
91      AC_DEFINE_UNQUOTED(SOMEBSD,1,[This is a BSD system])
92      AC_DEFINE_UNQUOTED(FREEBSD,1,[This is a FreeBSD system])
93      CFLAGS="-D_THREAD_SAFE $CFLAGS"
94      build_target="freebsd"
95      LIBPREFIX=
96      DLLDIR=lib
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      ;;
106 netbsd*)
107      AC_DEFINE_UNQUOTED(SOMEBSD,1,[This is a BSD system])
108      AC_DEFINE_UNQUOTED(NETBSD,1,[This is a NetBSD system])
109      LIBPREFIX=
110      DLLDIR=lib
111      ;;
112 *solaris*)
113      AC_DEFINE_UNQUOTED(SOLARIS,1,[This is a Solaris system])
114      AC_DEFINE_UNQUOTED(_REENTRANT,1,[Need with solaris or errno doesnt work])
115      AC_CHECK_LIB(resolv, res_init)
116      AC_CHECK_LIB(rt, nanosleep)
117      build_target="solaris"
118      LIBPREFIX=
119      DLLDIR=lib
120      ;;
121 *arm-linux*)
122      AC_DEFINE_UNQUOTED(LINUX,1,[This is a Linux system])
123      CFLAGS="-D_REENTRANT -fPIC -pipe $CFLAGS"
124      build_target="linux"
125      LIBPREFIX=
126      DLLDIR=lib
127      ;;
128 *cygwin*)
129      AC_DEFINE_UNQUOTED(CYGWIN,1,[This is a Cygwin system])
130      AC_DEFINE_UNQUOTED(WINDOWS,1,[This is a Windows system])
131      AC_CHECK_LIB(intl, gettext)
132      LDFLAGS="$LDFLAGS -no-undefined"
133      CFLAGS="-mms-bitfields $CFLAGS"
134      build_target="cygwin"
135      LIBPREFIX=lib
136      DLLDIR=bin
137      AC_PROG_CXX
138      ;;
139 *mingw*)
140      AC_DEFINE_UNQUOTED(MINGW,1,[This is a MinGW system])
141      AC_DEFINE_UNQUOTED(WINDOWS,1,[This is a Windows system])
142      AC_DEFINE_UNQUOTED(_WIN32,1,[This is a Windows system])
143      AC_CHECK_LIB(intl, gettext)
144      LDFLAGS="$LDFLAGS -no-undefined -Wl,--export-all-symbols"
145      LIBS="$LIBS -lws2_32 -lplibc"
146      CFLAGS="-mms-bitfields $CFLAGS"
147      CPPFLAGS="-D_WIN32_WINNT=0x0501 $CPPFLAGS"
148      build_target="mingw"
149      AC_PROG_CXX
150      LIBPREFIX=lib
151      DLLDIR=bin
152      ;;
153 *)
154      AC_MSG_RESULT(Unrecognised OS $host_os)
155      AC_DEFINE_UNQUOTED(OTHEROS,1,[Some strange OS])
156 ;;
157 esac
158 AC_DEFINE_UNQUOTED([GNUNET_DEFAULT_INTERFACE], $DEFAULT_INTERFACE, [This should be the default choice for the name of the first network interface])
159 AC_SUBST(DEFAULT_INTERFACE)
160
161 AC_MSG_CHECKING([for build target])
162 AM_CONDITIONAL(DARWIN,  test "$build_target" = "darwin")
163 AM_CONDITIONAL(CYGWIN,  test "$build_target" = "cygwin")
164 AM_CONDITIONAL(MINGW,   test "$build_target" = "mingw")
165 AM_CONDITIONAL(SOLARIS, test "$build_target" = "solaris")
166 AM_CONDITIONAL(XFREEBSD, test "$build_target" = "freebsd")
167 AM_CONDITIONAL(OPENBSD, test "$build_target" = "openbsd")
168 AM_CONDITIONAL(LINUX, test "$build_target" = "linux")
169
170 AC_MSG_RESULT([$build_target])
171 AC_SUBST(build_target)
172 AM_CONDITIONAL([am__fastdepOBJC], false)
173 AC_UNALIGNED_64_ACCESS
174
175 # some other checks for standard libs
176 AC_SEARCH_LIBS([gethostbyname], [nsl ws2_32])
177 AC_CHECK_LIB(socket, socket)
178 AC_CHECK_LIB(m, log)
179 AC_CHECK_LIB(c, getloadavg, AC_DEFINE(HAVE_GETLOADAVG,1,[getloadavg supported]))
180
181 # 'save' libs; only those libs found so far will be
182 # linked against _everywhere_.  For the others, we
183 # will be more selective!
184 SAVE_LIBS=$LIBS
185
186 # libgcrypt
187 gcrypt=0
188 AM_PATH_LIBGCRYPT(1.2.0, gcrypt=1)
189 AC_CHECK_DECLS([gcry_mpi_lshift], [], [], [[#include <gcrypt.h>]])
190
191 if test $gcrypt = 0
192 then
193   AC_MSG_ERROR([GNUnet needs libgcrypt])
194 fi
195
196 if test $build = $target
197 then
198 AC_MSG_CHECKING([for working HMAC])
199 AC_LANG_PUSH(C)
200 LIBS="$LIBS $LIBGCRYPT_LIBS"
201 CFLAGS="$CFLAGS $LIBGCRYPT_CFLAGS"
202 AC_RUN_IFELSE(
203   [AC_LANG_PROGRAM([#include <gcrypt.h>], [[
204         gcry_md_hd_t mac;
205       
206         unsigned char data[] = { 0xbf, 0x16, 0x6e, 0x46, 0x3a, 0x6c, 0xf3, 0x93, 0xa7, 0x72,
207             0x11, 0xa1, 0xdc, 0x0b, 0x07, 0xdb, 0x1a, 0x5e, 0xd9, 0xb9, 0x81, 0xbe,
208             0xea, 0xe4, 0x31, 0x5f, 0x24, 0xff, 0xfe, 0x50, 0x8a, 0xde };
209         unsigned char key[] = { 0xfc, 0x62, 0x76, 0x35 };
210         unsigned char result[] = {0xa2, 0xb, 0x1, 0xd9, 0xc0, 0x8b, 0x5a, 0x12, 0x80,
211             0xd5, 0x50, 0x12, 0x8e, 0xd0, 0x5b, 0xb6, 0x5c, 0x87, 0x24, 0xe2, 0xd0,
212             0xd2, 0xaf, 0x63, 0xae, 0xd1, 0xd6, 0x64, 0x14, 0xe3, 0x6e, 0x61, 0x5b,
213             0xd, 0xba, 0x17, 0x7d, 0xd3, 0x10, 0xb1, 0x37, 0x41, 0x91, 0x7d, 0xeb,
214             0x1, 0x4d, 0x71, 0xe8, 0x59, 0x71, 0x42, 0x8e, 0xd6, 0xf3, 0x29, 0x3b,
215             0x90, 0xf2, 0xd1, 0xaf, 0x65, 0x1e, 0xb3};
216       
217         if (!gcry_check_version (GCRYPT_VERSION))
218           return 1;
219   
220         gcry_control (GCRYCTL_DISABLE_SECMEM, 0);
221         gcry_control (GCRYCTL_INITIALIZATION_FINISHED, 0);
222   
223         if (gcry_md_open(&mac, GCRY_MD_SHA512, GCRY_MD_FLAG_HMAC) != GPG_ERR_NO_ERROR)
224           return 2;
225   
226         gcry_md_setkey (mac, key, sizeof (key));
227         gcry_md_write (mac, data, sizeof (data));
228   
229         if (memcmp(gcry_md_read (mac, 0), result, gcry_md_get_algo_dlen (gcry_md_get_algo (mac))) != 0)
230           return 3;
231   
232         gcry_md_close (mac);
233   
234         return 0;
235     ]])],
236   [AC_MSG_RESULT([yes])],
237   [
238    if test $? = 3
239    then
240      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.])
241    else
242      AC_MSG_FAILURE([HMAC test failed])
243    fi
244   ])
245 AC_LANG_POP(C)
246 fi      # $build = $target
247
248 # libcurl
249 LIBCURL_CHECK_CONFIG(,7.20.1,,AC_MSG_ERROR([GNUnet requires libcurl >= 7.20.1]))
250 # restore LIBS
251 LIBS=$SAVE_LIBS
252
253 USE_ATS=false
254
255 if test x$USE_ATS = xtrue
256 then
257         glpk=true
258         AC_MSG_WARN([ATS enabled])
259         AC_CHECK_HEADERS(glpk.h, ,[gplk=false])
260         AC_CHECK_LIB([glpk],[glp_create_prob], , [gplk=false])
261         # GLPK must support atm MLP presolving, version >= 4.32
262         AC_CHECK_MEMBERS(glp_iocp.presolve, ,[gplk=false],[[#include <glpk.h>]])
263         if test x$gplk = xfalse
264         then
265                 AM_CONDITIONAL(HAVE_GLPK, [test x$gplk = xtrue])
266                 AM_CONDITIONAL(HAVE_LIBGLPK, [test x$gplk != x$gplk])
267                 AC_MSG_WARN([GNUnet requires GLPK  >= 4.32])
268         else
269                 AM_CONDITIONAL(HAVE_GLPK, [test x$gplk = xtrue])
270                 AM_CONDITIONAL(HAVE_LIBGLPK, [test x$gplk = x$gplk])
271         fi
272 else
273         AC_MSG_WARN([ATS disabled])
274         AM_CONDITIONAL(HAVE_GLPK, false)
275         AM_CONDITIONAL(HAVE_LIBGLPK, false)
276 fi
277
278 # test for kvm and kstat (for CPU stats under BSD/Solaris)
279 AC_CHECK_LIB([kvm],[kvm_open])
280 AC_CHECK_LIB([kstat],[kstat_open])
281
282 # test for libextractor
283 extractor=0
284 AC_MSG_CHECKING(for libextractor)
285 AC_ARG_WITH(extractor,
286    [  --with-extractor=PFX    base of libextractor installation],
287    [AC_MSG_RESULT([$with_extractor])
288     case $with_extractor in
289       no)
290         ;;
291       yes)
292         AC_CHECK_HEADERS(extractor.h,
293           AC_CHECK_LIB([extractor], [EXTRACTOR_plugin_add_defaults],
294             extractor=1))
295         ;;
296       *)
297         LDFLAGS="-L$with_extractor/lib $LDFLAGS"
298         CPPFLAGS="-I$with_extractor/include $CPPFLAGS"
299         AC_CHECK_HEADERS(extractor.h,
300           AC_CHECK_LIB([extractor], [EXTRACTOR_plugin_add_defaults],
301             EXT_LIB_PATH="-L$with_extractor/lib $EXT_LIB_PATH"
302             extractor=1))
303         ;;
304     esac
305    ],
306    [AC_MSG_RESULT([--with-extractor not specified])
307     AC_CHECK_HEADERS(extractor.h,
308      AC_CHECK_LIB([extractor], [EXTRACTOR_plugin_add_defaults],
309       extractor=1))])
310 if test "$extractor" != 1
311 then
312  AC_MSG_ERROR([GNUnet requires libextractor])
313 fi
314 # restore LIBS
315 LIBS=$SAVE_LIBS
316
317
318 # Checks for standard header files.
319 AC_HEADER_DIRENT
320 AC_HEADER_STDC
321
322 # Check for headers that are ALWAYS required
323 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]))
324
325 # Checks for headers that are only required on some systems or opional (and where we do NOT abort if they are not there)
326 AC_CHECK_HEADERS([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 netinet/in_systm.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 endian.h sys/endian.h])
327
328 SAVE_LDFLAGS=$LDFLAGS
329 SAVE_CPPFLAGS=$CPPFLAGS
330
331 # test for sqlite
332 sqlite=false
333 AC_MSG_CHECKING(for SQLite)
334 AC_ARG_WITH(sqlite,
335   [  --with-sqlite=PFX       base of SQLite installation],
336   [AC_MSG_RESULT("$with_sqlite")
337    case $with_sqlite in
338    no)
339      ;;
340    yes)
341     AC_CHECK_HEADERS(sqlite3.h,
342      sqlite=true)
343      ;;
344    *)
345     LDFLAGS="-L$with_sqlite/lib $LDFLAGS"
346     CPPFLAGS="-I$with_sqlite/include $CPPFLAGS"
347     AC_CHECK_HEADERS(sqlite3.h,
348      EXT_LIB_PATH="-L$with_sqlite/lib $EXT_LIB_PATH"
349      SQLITE_LDFLAGS="-L$with_sqlite/lib"
350      SQLITE_CPPFLAGS="-I$with_sqlite/include"
351      sqlite=true)
352     LDFLAGS=$SAVE_LDFLAGS
353     CPPFLAGS=$SAVE_CPPFLAGS
354     ;;
355    esac
356   ],
357   [AC_MSG_RESULT([--with-sqlite not specified])
358     AC_CHECK_HEADERS(sqlite3.h, sqlite=true)])
359 AM_CONDITIONAL(HAVE_SQLITE, test x$sqlite = xtrue)
360 AC_SUBST(SQLITE_CPPFLAGS)
361 AC_SUBST(SQLITE_LDFLAGS)
362
363 # test for postgres
364 postgres=false
365 AC_MSG_CHECKING(for postgres)
366 AC_ARG_WITH(postgres,
367   [  --with-postgres=PFX       base of postgres installation],
368   [AC_MSG_RESULT("$with_postgres")
369    case $with_postgres in
370    no)
371      ;;
372    yes)
373     AC_CHECK_HEADERS(postgresql/libpq-fe.h,
374      postgres=true)
375      ;;
376    *)
377     LDFLAGS="-L$with_postgres/lib $LDFLAGS"
378     CPPFLAGS="-I$with_postgres/include $CPPFLAGS"
379     AC_CHECK_HEADERS(postgresql/libpq-fe.h,
380      EXT_LIB_PATH="-L$with_postgres/lib $EXT_LIB_PATH"
381      POSTGRES_LDFLAGS="-L$with_postgres/lib"
382      POSTGRES_CPPFLAGS="-I$with_postgres/include"
383      postgres=true)
384     LDFLAGS=$SAVE_LDFLAGS
385     CPPFLAGS=$SAVE_CPPFLAGS
386     ;;
387    esac
388   ],
389   [AC_MSG_RESULT([--with-postgres not specified])
390     AC_CHECK_HEADERS(postgresql/libpq-fe.h, postgres=true)])
391 AM_CONDITIONAL(HAVE_POSTGRES, test x$postgres = xtrue)
392 AC_SUBST(POSTGRES_CPPFLAGS)
393 AC_SUBST(POSTGRES_LDFLAGS)
394
395 # test for libz (maybe required for linking mysql)
396 zlib=1
397 AC_CHECK_LIB(z, compress,,zlib=0)
398 AM_CONDITIONAL(HAVE_ZLIB, test x$zlib = x1)
399 if test "$zlib" != 1
400 then
401  AC_MSG_ERROR([GNUnet requires zlib])
402 fi
403
404 # mysql & windows
405 AC_CHECK_TYPES([sigset_t, off_t], [], [], [#include <sys/types.h>])
406 AC_CHECK_TYPES([size_t], [], [], [#include <stdio.h>])
407
408 if test "$build_target" = "mingw"
409 then
410   CYGWIN_MYSQL_MAGIC="#include <mysql/my_global.h>"
411 fi
412
413 # test for mysql
414 mysql=false
415 mysqlfail=false
416 SAVE_LDFLAGS=$LDFLAGS
417 SAVE_CPPFLAGS=$CPPFLAGS
418 AC_MSG_CHECKING(for mysql)
419 AC_ARG_WITH(mysql,
420   [  --with-mysql=PFX        base of MySQL installation],
421   [AC_MSG_RESULT("$with_mysql")
422    if test "$with_mysql" != "no"
423    then
424     if test "$with_mysql" != "yes"
425     then
426       LDFLAGS="-L$with_mysql/lib -L$with_mysql/lib/mysql $LDFLAGS $ZLIBS"
427       CPPFLAGS="-I$with_mysql/include $CPPFLAGS"
428     fi
429     AC_CHECK_HEADERS(mysql/mysql.h,
430      AC_CHECK_LIB(mysqlclient, mysql_init,
431       MYSQL_LDFLAGS="-L$with_mysql/lib -L$with_mysql/lib/mysql"
432       MYSQL_CPPFLAGS="-I$with_mysql/include"
433
434       mysql=true), [], [$CYGWIN_MYSQL_MAGIC])
435    fi
436   ],
437   [AC_MSG_RESULT([--with-mysql not specified])
438    LDFLAGS="-L/usr/lib/mysql $LDFLAGS $ZLIBS"
439    AC_CHECK_LIB(mysqlclient, mysql_init,
440     [AC_CHECK_HEADERS(mysql/mysql.h,
441       MYSQL_LDFLAGS="-L/usr/lib/mysql"
442       mysql=true
443
444      , [], [$CYGWIN_MYSQL_MAGIC])])
445   ])
446
447 AC_SUBST(MYSQL_LDFLAGS)
448 AC_SUBST(MYSQL_CPPFLAGS)
449
450 # additional version check for mysql
451 AC_ARG_ENABLE(mysql-version-check, [  --disable-mysql-version-check  do not check MySQL version],, enable_mysql_version_check=yes)
452 if test "$mysql" = "true" -a "x$enable_mysql_version_check" = "xyes"
453 then
454   AC_MSG_CHECKING(mysql version)
455   AC_RUN_IFELSE([AC_LANG_PROGRAM(
456     [[$CYGWIN_MYSQL_MAGIC
457       #include <mysql/mysql.h>]],
458     [[if (MYSQL_VERSION_ID < 40100)
459         return(-1);
460       else
461         return(0);
462     ]])
463     ],mysql=true,mysql=false)
464   if test "$mysql" = "false"
465   then
466     mysqlfail=true
467     AC_MSG_RESULT([fail, >= 4.1 required])
468   else
469     AC_MSG_RESULT(ok)
470   fi
471 fi
472 AM_CONDITIONAL(HAVE_MYSQL, test x$mysql = xtrue)
473 AM_CONDITIONAL(HAVE_MYSQLE, test "0" = "1")
474 # restore LIBS
475 LIBS=$SAVE_LIBS
476 LDFLAGS=$SAVE_LDFLAGS
477 CPPFLAGS=$SAVE_CPPFLAGS
478
479 if test "$sqlite" = 0 -a "$mysql" = 0
480 then
481  AC_MSG_ERROR([GNUnet requires SQLite or MySQL])
482 fi
483
484 # libmicrohttpd
485 lmhd=0
486 AC_MSG_CHECKING([for libmicrohttpd])
487 AC_ARG_WITH(microhttpd,
488    [  --with-microhttpd=PFX   base of libmicrohttpd installation],
489    [AC_MSG_RESULT([$with_microhttpd])
490     case $with_microhttpd in
491       no)
492         ;;
493       yes)
494         AC_CHECK_HEADERS([microhttpd.h],
495           AC_CHECK_DECL(MHD_OPTION_PER_IP_CONNECTION_LIMIT,
496             AC_CHECK_LIB([microhttpd], [MHD_start_daemon],
497               lmhd=1),
498             [],[#include "src/include/platform.h"
499                 #include <microhttpd.h>]),,
500             [#include "src/include/platform.h"])
501         ;;
502       *)
503         LDFLAGS="-L$with_microhttpd/lib $LDFLAGS"
504         CPPFLAGS="-I$with_microhttpd/include $CPPFLAGS"
505         AC_CHECK_HEADERS(microhttpd.h,
506           AC_CHECK_DECL(MHD_OPTION_PER_IP_CONNECTION_LIMIT,
507             AC_CHECK_LIB([microhttpd], [MHD_start_daemon],
508               EXT_LIB_PATH="-L$with_microhttpd/lib $EXT_LIB_PATH"
509               lmhd=1),
510             [],[#include "src/include/platform.h"
511                 #include <microhttpd.h>]),,
512             [#include "src/include/platform.h"])
513         ;;
514     esac
515    ],
516    [AC_MSG_RESULT([--with-microhttpd not specified])
517     AC_CHECK_HEADERS([microhttpd.h],
518       AC_CHECK_DECL(MHD_OPTION_PER_IP_CONNECTION_LIMIT,
519         AC_CHECK_LIB([microhttpd], [MHD_start_daemon],
520           lmhd=1),
521         [],[#include "src/include/platform.h"
522             #include <microhttpd.h>]),,
523        [#include "src/include/platform.h"])])
524 AM_CONDITIONAL(HAVE_MHD, test x$lmhd = x1)
525 AC_DEFINE_UNQUOTED([HAVE_MHD], $lmhd, [We have libmicrohttpd])
526
527
528 # restore LIBS
529 LIBS=$SAVE_LIBS
530
531 # check for python & pexpect (used for some testcases only)
532 AM_PATH_PYTHON([2.5],, [:])
533 AM_CONDITIONAL([HAVE_PYTHON], [test "$PYTHON" != :])
534
535 if test "$PYTHON" != :
536 then
537   AC_MSG_CHECKING([for pexpect])
538   $PYTHON -c "import pexpect" > /dev/null 2> /dev/null
539   PYEX=$?
540   AM_CONDITIONAL(HAVE_PYTHON_PEXPECT, test $PYEX -eq 0)
541   if test $PYEX -eq 0
542   then
543     AC_MSG_RESULT([yes])
544   else
545     AC_MSG_RESULT([not found])
546   fi
547 else
548   AM_CONDITIONAL(HAVE_PYTHON_PEXPECT, 0)
549 fi
550
551
552 # check for gettext
553 AM_GNU_GETTEXT([external])
554 AM_GNU_GETTEXT_VERSION([0.16.1])
555
556 # check for iconv
557 AM_ICONV
558
559 # Checks for standard typedefs, structures, and compiler characteristics.
560 AC_TYPE_PID_T
561 AC_TYPE_SIZE_T
562 AC_TYPE_MODE_T
563 AC_HEADER_TIME
564 AC_HEADER_STAT
565 AC_HEADER_STDBOOL
566 AC_STRUCT_TM
567
568 AC_CHECK_MEMBER([struct sockaddr_in.sin_len],
569    [ AC_DEFINE(HAVE_SOCKADDR_IN_SIN_LEN, 1, [Do we have sockaddr_in.sin_len?])
570    ],
571    [],
572    [
573       #include <sys/types.h>
574       #include <sys/socket.h>
575       #include <netinet/in.h>
576    ])
577
578
579
580 # Checks for library functions.
581 AC_FUNC_CLOSEDIR_VOID
582 AC_FUNC_FORK
583 AC_FUNC_VFORK
584 AC_PROG_GCC_TRADITIONAL
585 AC_FUNC_MEMCMP
586 AC_FUNC_SELECT_ARGTYPES
587 AC_FUNC_CHOWN
588
589 AC_TYPE_SIGNAL
590 AC_FUNC_STAT
591 AC_FUNC_STRFTIME
592 AC_FUNC_VPRINTF
593 AC_HEADER_SYS_WAIT
594 AC_TYPE_OFF_T
595 AC_TYPE_UID_T
596 AC_CHECK_FUNCS([floor gethostname memmove rmdir strncasecmp strrchr strtol atoll dup2 fdatasync ftruncate gettimeofday memset mkdir mkfifo select socket strcasecmp strchr strdup strerror strstr clock_gettime getrusage rand uname setlocale getcwd mktime gmtime_r gmtime strlcpy strlcat ftruncate stat64 sbrk mmap mremap setrlimit sysconf gethostbyaddr initgroups getifaddrs freeifaddrs getnameinfo getaddrinfo inet_ntoa localtime_r nl_langinfo putenv realpath strndup gethostbyname2 gethostbyname getpeerucred getpeereid])
597
598 # restore LIBS
599 LIBS=$SAVE_LIBS
600
601 gn_user_home_dir="~/.gnunet"
602 AC_ARG_WITH(user-home-dir,
603         AC_HELP_STRING(
604                 [--with-user-home-dir=DIR],
605                 [default user home directory (~/.gnunet)]),
606         [gn_user_home_dir=$withval])
607 AC_SUBST(GN_USER_HOME_DIR, $gn_user_home_dir)
608 gn_daemon_home_dir="/var/lib/gnunet"
609 AC_ARG_WITH(daemon-home-dir,
610         AC_HELP_STRING(
611                 [--with-daemon-home-dir=DIR],
612                 [default daemon home directory (/var/lib/gnunet)]),
613         [gn_daemon_home_dir=$withval])
614 AC_SUBST(GN_DAEMON_HOME_DIR, $gn_daemon_home_dir)
615 gn_daemon_config_dir="/etc"
616 AC_ARG_WITH(daemon-config-dir,
617         AC_HELP_STRING(
618                 [--with-daemon-config-dir=DIR],
619                 [default daemon config directory (/etc)]),
620         [gn_daemon_config_dir=$withval])
621 AC_SUBST(GN_DAEMON_CONFIG_DIR, $gn_daemon_config_dir)
622
623 GN_INTLINCL=""
624 GN_LIBINTL="$LTLIBINTL"
625 AC_ARG_ENABLE(framework, [  --enable-framework      enable Mac OS X framework build helpers],enable_framework_build=$enableval)
626 AM_CONDITIONAL(WANT_FRAMEWORK, test x$enable_framework_build = xyes)
627 if test x$enable_framework_build = xyes
628 then
629   AC_DEFINE([FRAMEWORK_BUILD], 1, [Build a Mac OS X Framework])
630   GN_INTLINCL='-I$(top_srcdir)/src/intlemu'
631   GN_LIBINTL='$(top_builddir)/src/intlemu/libintlemu.la -framework CoreFoundation'
632   AC_LIB_APPENDTOVAR([CPPFLAGS], [$GN_INTLINCL]) 
633 fi
634
635 GN_LIB_LDFLAGS="-export-dynamic -no-undefined"
636 GN_PLUGIN_LDFLAGS="-export-dynamic -avoid-version -module -no-undefined"
637
638 AC_SUBST(GN_LIB_LDFLAGS)
639 AC_SUBST(GN_PLUGIN_LDFLAGS)
640 AC_SUBST(GN_INTLINCL)
641 AC_SUBST(GN_LIBINTL)
642
643 AC_SUBST(CPPFLAGS)
644 AC_SUBST(LIBS)
645 AC_SUBST(LDFLAGS)
646 AC_SUBST(EXT_LIB_PATH)
647 AC_SUBST(EXT_LIBS)
648
649 AC_SUBST(LIBPREFIX)
650 AC_SUBST(DLLDIR)
651 AC_SUBST(EXT_LIB_PATH)
652
653
654 # should 'make check' run tests?
655 AC_MSG_CHECKING(whether to run tests)
656 AC_ARG_ENABLE([testruns],
657    [AS_HELP_STRING([--disable-testruns], [disable running tests on make check (default is YES)])],
658    [enable_tests_run=${enableval}],
659    [enable_tests_run=yes])
660 AC_MSG_RESULT($enable_test_run)
661 AM_CONDITIONAL([ENABLE_TEST_RUN], [test "x$enable_tests_run" = "xyes"])
662
663 # should expensive tests be run?
664 AC_MSG_CHECKING(whether to run expensive tests)
665 AC_ARG_ENABLE([expensivetests],
666    [AS_HELP_STRING([--enable-expensive-tests], [enable running expensive testcases])],
667    [enable_expensive=${enableval}],
668    [enable_expensive=no])
669 AC_MSG_RESULT($enable_expensive)
670 AM_CONDITIONAL([HAVE_EXPENSIVE_TESTS], [test "x$enable_expensive" = "xyes"])
671
672 # should benchmarks be run?
673 AC_MSG_CHECKING(whether to run benchmarks during make check)
674 AC_ARG_ENABLE([benchmarks],
675    [AS_HELP_STRING([--enable-benchmarks], [enable running benchmarks during make check])],
676    [enable_benchmarks=${enableval}],
677    [enable_benchmarks=no])
678 AC_MSG_RESULT($enable_benchmarks)
679 AM_CONDITIONAL([HAVE_BENCHMARKS], [test "x$enable_benchmarks" = "xyes"])
680
681 # should experimental code be compiled (code that may not yet compile)?
682 AC_MSG_CHECKING(whether to compile experimental code)
683 AC_ARG_ENABLE([experimental],
684    [AS_HELP_STRING([--enable-experimental], [enable compiling experimental code])],
685    [enable_experimental=${enableval}],
686    [enable_experimental=no])
687 AC_MSG_RESULT($enable_experimental)
688 AM_CONDITIONAL([HAVE_EXPERIMENTAL], [test "x$enable_experimental" = "xyes"])
689
690 # should malicious code be compiled (code used for testing with malicious peers)
691 AC_MSG_CHECKING(whether to compile malicious code)
692 AC_ARG_ENABLE([malicious],
693    [AS_HELP_STRING([--enable-malicious], [enable compiling malicious code (only for developers for testing)])],
694    [enable_malicious=${enableval}],
695    [enable_malicious=no])
696 AC_MSG_RESULT($enable_malicious)
697 AM_CONDITIONAL([HAVE_MALICIOUS], [test "x$enable_malicious" = "xyes"])
698 if test "$enable_malicious" = "yes"
699 then
700  AC_DEFINE([HAVE_MALICIOUS],[1],[include malicious code])
701 else
702  AC_DEFINE([HAVE_MALICIOUS],[0],[disable malicious code])
703 fi
704
705 # should code be enabled that works around missing OS functionality on Windows?
706 # used for test cases
707 if test $build_target = "mingw"
708 then
709         workarounds=1
710 else
711   AC_MSG_CHECKING(whether to enable windows workarounds)
712   AC_ARG_ENABLE([windows_workarounds], 
713      [AS_HELP_STRING([--enable-windows_workarounds], [enable workarounds used on Windows (only useful for test cases)])],
714      [enable_workarounds=${enableval}],
715      [enable_workarounds=no])
716   AC_MSG_RESULT($enable_workarounds)
717   if test x$enable_windows_workarounds = "xyes"
718   then
719      workarounds=1
720   else
721      workarounds=0
722    fi
723 fi
724 AC_DEFINE_UNQUOTED([ENABLE_WINDOWS_WORKAROUNDS], $workarounds, [enable workarounds used on Windows (only useful for test cases)])
725
726 # gcov compilation
727 AC_MSG_CHECKING(whether to compile with support for code coverage analysis)
728 AC_ARG_ENABLE([coverage], 
729               AS_HELP_STRING([--enable-coverage],
730                              [compile the library with code coverage support]),
731               [use_gcov=${enableval}], 
732               [use_gcov=no])
733 AC_MSG_RESULT($use_gcov)
734 AM_CONDITIONAL([USE_COVERAGE], [test "x$use_gcov" = "xyes"])
735
736
737 AC_CONFIG_FILES([ 
738 Makefile
739 contrib/Makefile
740 doc/Makefile
741 doc/man/Makefile
742 m4/Makefile
743 po/Makefile.in 
744 src/Makefile
745 src/arm/Makefile
746 src/block/Makefile
747 src/core/Makefile
748 src/datacache/Makefile
749 src/datastore/Makefile
750 src/dht/Makefile
751 src/dv/Makefile
752 src/fragmentation/Makefile
753 src/fs/Makefile
754 src/hello/Makefile
755 src/include/Makefile
756 src/include/gnunet_directories.h
757 src/hostlist/Makefile
758 src/mesh/Makefile
759 src/nat/Makefile
760 src/peerinfo/Makefile
761 src/peerinfo-tool/Makefile
762 src/statistics/Makefile
763 src/template/Makefile
764 src/testing/Makefile
765 src/topology/Makefile
766 src/transport/Makefile
767 src/util/Makefile
768 src/vpn/Makefile
769 src/chat/Makefile
770 pkgconfig/Makefile
771 pkgconfig/gnunetarm.pc
772 pkgconfig/gnunetblock.pc
773 pkgconfig/gnunetcore.pc
774 pkgconfig/gnunetdatacache.pc
775 pkgconfig/gnunetdatastore.pc
776 pkgconfig/gnunetdht.pc
777 pkgconfig/gnunetdhtlog.pc
778 pkgconfig/gnunetdv.pc
779 pkgconfig/gnunetfragmentation.pc
780 pkgconfig/gnunetfs.pc
781 pkgconfig/gnunethello.pc
782 pkgconfig/gnunetpeerinfo.pc
783 pkgconfig/gnunetstatistics.pc
784 pkgconfig/gnunettesting.pc
785 pkgconfig/gnunettransport.pc
786 pkgconfig/gnunetutil.pc
787 ])
788 AC_OUTPUT
789
790 # Finally: summary!
791
792 # warn user if mysql found but not used due to version
793 if test "$mysqlfail" = "true"
794 then
795   AC_MSG_NOTICE([NOTICE: MySQL found, but too old. MySQL support will not be compiled.])
796 fi
797
798 # sqlite
799 if test "x$sqlite" = "x0"
800 then
801   AC_MSG_NOTICE([NOTICE: sqlite not found.  sqLite support will not be compiled.])
802 fi
803
804 if test "x$lmhd" != "x1"
805 then
806  AC_MSG_NOTICE([NOTICE: libmicrohttpd not found, http transport will not be installed.])
807 fi
808
809 AC_MSG_NOTICE([NOTICE: Database support is set to MySQL: $mysql, SQLite: $sqlite, Postgres: $postgres])
810
811 if test "$enable_framework_build" = "yes"
812 then
813   AC_MSG_NOTICE([NOTICE: Mac OS X framework build enabled.])
814 fi
815
816 AC_MSG_NOTICE([********************************************
817 You can compile GNUnet with
818         make
819 now. After that, run (if necessary as 'root')
820         make install
821 to install everything. You may want to create a new user account
822 to run the GNUnet service:
823         adduser gnunet
824 You also need to create an configuration file that should
825 specify the path where GNUnet should store data.  For example,
826 you could store in "/etc/gnunet.conf" the following lines:
827
828 [[PATHS]]
829 SERVICEHOME = /var/lib/gnunet
830 DEFAULTCONFIG = /etc/gnunet.conf
831
832 Now, in order to start your peer, run as the 'gnunet' user
833         gnunet-arm -s
834
835 Each GNUnet user should also create an (at least initially) empty
836 configuration file:
837         mkdir $HOME/.gnunet/
838         touch $HOME/.gnunet/gnunet.conf
839         
840 Optionally, download and compile:
841 - gnunet-gtk to get a GUI for file-sharing.
842 - gnunet-setup to get a GUI for configuration.
843 ********************************************])