Remove unnecessary stuff from configure.in.
[oweals/tinc.git] / configure.in
1 dnl Process this file with autoconf to produce a configure script.
2
3 dnl $Id$
4
5 AC_PREREQ(2.59)
6 AC_INIT
7 AC_CONFIG_SRCDIR([src/tincd.c])
8 AM_INIT_AUTOMAKE(tinc, 1.0-cvs)
9 AC_CONFIG_HEADERS([config.h])
10 AM_MAINTAINER_MODE
11
12 AM_GNU_GETTEXT([external])
13 AM_GNU_GETTEXT_VERSION(0.12.1)
14
15 # Enable GNU extensions.
16 # Define this here, not in acconfig's @TOP@ section, since definitions
17 # in the latter don't make it into the configure-time tests.
18 AC_DEFINE([_GNU_SOURCE], 1, [Enable GNU extenstions])
19 AC_DEFINE([__USE_BSD], 1, [Enable BSD extensions])
20
21 ALL_LINGUAS="nl"
22
23 dnl Checks for programs.
24 AC_PROG_CC
25 AC_PROG_CPP
26 AC_PROG_INSTALL
27 AC_PROG_LN_S
28 AC_PROG_RANLIB
29
30 AC_ISC_POSIX
31
32 dnl Check and set OS
33
34 #AC_CANONICAL_HOST
35
36 case $host_os in
37   *linux*)
38     AC_DEFINE(HAVE_LINUX, 1, [Linux])
39     [ rm -f src/device.c; ln -sf linux/device.c src/device.c ]
40   ;;
41   *freebsd*)
42     AC_DEFINE(HAVE_FREEBSD, 1, [FreeBSD])
43     [ rm -f src/device.c; ln -sf bsd/device.c src/device.c ]
44   ;;
45   *darwin*)
46     AC_DEFINE(HAVE_DARWIN, 1, [Darwin (MacOS/X)])
47     [ rm -f src/device.c; ln -sf bsd/device.c src/device.c ]
48   ;;
49   *solaris*)
50     AC_DEFINE(HAVE_SOLARIS, 1, [Solaris/SunOS])
51     [ rm -f src/device.c; ln -sf solaris/device.c src/device.c ]
52   ;;
53   *openbsd*)
54     AC_DEFINE(HAVE_OPENBSD, 1, [OpenBSD])
55     [ rm -f src/device.c; ln -sf bsd/device.c src/device.c ]
56   ;;
57   *netbsd*)
58     AC_DEFINE(HAVE_NETBSD, 1, [NetBSD])
59     [ rm -f src/device.c; ln -sf bsd/device.c src/device.c ]
60   ;;
61   *bsd*)
62     AC_MSG_WARN("Unknown BSD variant, tinc might not compile or work!")
63     AC_DEFINE(HAVE_BSD, 1, [Unknown BSD variant])
64     [ rm -f src/device.c; ln -sf bsd/device.c src/device.c ]
65   ;;
66   *cygwin*)
67     AC_DEFINE(HAVE_CYGWIN, 1, [Cygwin])
68     [ rm -f src/device.c; ln -sf cygwin/device.c src/device.c ]
69   ;;
70   *mingw*)
71     AC_DEFINE(HAVE_MINGW, 1, [MinGW])
72     [ rm -f src/device.c; cp -f src/mingw/device.c src/device.c ]
73     LIBS="$LIBS -lws2_32"
74   ;;
75   *)
76     AC_MSG_ERROR("Unknown operating system.")
77   ;;
78 esac
79
80 AC_CACHE_SAVE
81
82 if test -d /sw/include ; then
83   CPPFLAGS="$CPPFLAGS -I/sw/include"
84 fi
85 if test -d /sw/lib ; then
86   LIBS="$LIBS -L/sw/lib"
87 fi
88
89 dnl Checks for libraries.
90
91 dnl Checks for header files.
92 dnl We do this in multiple stages, because unlike Linux all the other operating systems really suck and don't include their own dependencies.
93
94 AC_HEADER_STDC
95 AC_CHECK_HEADERS([stdbool.h syslog.h sys/file.h sys/ioctl.h sys/mman.h sys/param.h sys/socket.h sys/time.h sys/uio.h sys/wait.h netdb.h arpa/inet.h])
96 AC_CHECK_HEADERS([net/if.h net/if_types.h net/if_tun.h net/if_tap.h net/ethernet.h net/if_arp.h netinet/in_systm.h netinet/in.h netinet/in6.h],
97   [], [], [#include "have.h"]
98 )
99 AC_CHECK_HEADERS([netinet/if_ether.h netinet/ip.h netinet/ip6.h],
100   [], [], [#include "have.h"]
101 )
102 AC_CHECK_HEADERS([netinet/tcp.h netinet/ip_icmp.h netinet/icmp6.h],
103   [], [], [#include "have.h"]
104 )
105
106 dnl Checks for typedefs, structures, and compiler characteristics.
107 AC_C_CONST
108 AC_C_VOLATILE
109 AC_TYPE_PID_T
110 AC_TYPE_SIZE_T
111 AC_HEADER_TIME
112 AC_STRUCT_TM
113
114 tinc_ATTRIBUTE(__malloc__)
115
116 AC_CHECK_TYPES([socklen_t, struct ether_header, struct arphdr, struct ether_arp, struct in_addr, struct addrinfo, struct ip, struct icmp, struct in6_addr, struct sockaddr_in6, struct ip6_hdr, struct icmp6_hdr, struct nd_neighbor_solicit, struct nd_opt_hdr], , ,
117   [#include "have.h"]
118 )
119
120 dnl Checks for library functions.
121 AC_FUNC_MEMCMP
122 AC_FUNC_ALLOCA
123 AC_TYPE_SIGNAL
124 AC_CHECK_FUNCS([asprintf daemon fchmod flock ftime fork get_current_dir_name gettimeofday mlockall putenv random select strdup strerror strsignal strtol system unsetenv vsyslog writev],
125   [], [], [#include "have.h"]
126 )
127 jm_FUNC_MALLOC
128 jm_FUNC_REALLOC
129
130 dnl Support for SunOS
131
132 AC_CHECK_FUNC(socket, [], [
133   AC_CHECK_LIB(socket, connect)
134 ])
135 AC_CHECK_FUNC(gethostbyname, [], [
136   AC_CHECK_LIB(nsl, gethostbyname)
137 ])
138
139 AC_CHECK_FUNCS([freeaddrinfo gai_strerror getaddrinfo getnameinfo inet_aton],
140   [], [], [#include "have.h"]
141 )
142
143 AC_CACHE_SAVE
144
145 dnl These are defined in files in m4/
146
147 case $host_os in
148   *linux*)
149     tinc_TUNTAP
150   ;;
151 esac
152
153 tinc_OPENSSL
154 tinc_ZLIB
155 tinc_LZO
156
157 dnl Check if support for jumbograms is requested 
158 AC_ARG_ENABLE(jumbograms,
159   AS_HELP_STRING([--enable-jumbograms], [enable support for jumbograms (packets up to 9000 bytes)]),
160   [ AC_DEFINE(ENABLE_JUMBOGRAMS, 1, [Support for jumbograms (packets up to 9000 bytes)]) ]
161 )
162
163 dnl Check if checkpoint tracing has to be enabled
164 AC_ARG_ENABLE(tracing,
165   AS_HELP_STRING([--enable-tracing], [enable checkpoint tracing (debugging only)]),
166   [ AC_DEFINE(ENABLE_TRACING, 1, [Checkpoint tracing]) ]
167 )
168
169 AC_SUBST(INCLUDES)
170
171 AC_CONFIG_FILES([Makefile src/Makefile doc/Makefile lib/Makefile po/Makefile.in m4/Makefile])
172
173 AC_OUTPUT