]> git.ipfire.org Git - thirdparty/bird.git/blame - configure.ac
sysdep/unix/main.c: Remove trailing spaces
[thirdparty/bird.git] / configure.ac
CommitLineData
2f9bcf97
MM
1dnl ** This is a configure script template for BIRD
2dnl ** Process it with autoconf to get ./configure
9fac310d 3dnl ** (c) 1999--2000 Martin Mares <mj@ucw.cz>
2f9bcf97 4
7a855725
OZ
5AC_INIT
6AC_CONFIG_SRCDIR([conf/confbase.Y])
b81a73d1
OZ
7AC_CONFIG_AUX_DIR([tools])
8
9AC_ARG_ENABLE([client],
10 [AS_HELP_STRING([--enable-client], [enable building of BIRD client @<:@yes@:>@])],
11 [],
12 [enable_client=yes]
13)
14
15AC_ARG_ENABLE([debug],
16 [AS_HELP_STRING([--enable-debug], [enable internal debugging routines @<:@no@:>@])],
17 [],
18 [enable_debug=no]
19)
20
b81a73d1
OZ
21AC_ARG_ENABLE([memcheck],
22 [AS_HELP_STRING([--enable-memcheck], [check memory allocations when debugging @<:@yes@:>@])],
23 [],
24 [enable_memcheck=yes]
25)
26
27AC_ARG_ENABLE([pthreads],
28 [AS_HELP_STRING([--enable-pthreads], [enable POSIX threads support @<:@try@:>@])],
29 [],
30 [enable_pthreads=try]
31)
32
1c5b4c5d
OZ
33AC_ARG_ENABLE([libssh],
34 [AS_HELP_STRING([--enable-libssh], [enable LibSSH support together with RPKI @<:@try@:>@])],
35 [],
36 [enable_libssh=try]
37)
38
6b0f5f68
MJM
39AC_ARG_ENABLE([mpls-kernel],
40 [AS_HELP_STRING([--enable-mpls-kernel], [enable MPLS support in kernel protocol @<:@try@:>@])],
41 [],
42 [enable_mpls_kernel=try]
43)
44
b81a73d1
OZ
45AC_ARG_WITH([protocols],
46 [AS_HELP_STRING([--with-protocols=LIST], [include specified routing protocols @<:@all@:>@])],
47 [],
48 [with_protocols="all"]
49)
50
b81a73d1
OZ
51AC_ARG_WITH([sysconfig],
52 [AS_HELP_STRING([--with-sysconfig=FILE], [use specified BIRD system configuration file])],
53 []
54)
55
56AC_ARG_WITH([runtimedir],
57 [AS_HELP_STRING([--with-runtimedir=PATH], [path for runtime files @<:@LOCALSTATEDIR/run@:>@])],
58 [runtimedir="$with_runtimedir"],
59 [runtimedir="\$(localstatedir)/run"]
60)
61
62AC_ARG_WITH([iproutedir],
63 [AS_HELP_STRING([--with-iproutedir=PATH], [path to iproute2 config files @<:@/etc/iproute2@:>@])],
64 [given_iproutedir="yes"]
65)
66
ab188fb7
OZ
67AC_ARG_VAR([FLEX], [location of the Flex program])
68AC_ARG_VAR([BISON], [location of the Bison program])
69AC_ARG_VAR([M4], [location of the M4 program])
70
2f9bcf97 71
49e7e5ee 72if test "$srcdir" = . ; then
b81a73d1
OZ
73 # Building in current directory => create obj directory holding all objects
74 objdir=obj
49e7e5ee 75else
b81a73d1
OZ
76 # Building in separate directory
77 objdir=.
49e7e5ee 78fi
7152e5ef
JMM
79
80exedir=.
81
b81a73d1
OZ
82AC_SUBST([objdir])
83AC_SUBST([exedir])
1c5b4c5d 84AC_SUBST([srcdir])
b81a73d1 85AC_SUBST([runtimedir])
49e7e5ee 86
ab188fb7 87
ab188fb7 88if test "$enable_debug" = yes ; then
1c5b4c5d
OZ
89 CONFIG_FILE="bird.conf"
90 CONTROL_SOCKET="bird.ctl"
ab188fb7 91else
1c5b4c5d
OZ
92 CONFIG_FILE="\$(sysconfdir)/bird.conf"
93 CONTROL_SOCKET="$runtimedir/bird.ctl"
ab188fb7 94fi
b81a73d1
OZ
95AC_SUBST([CONFIG_FILE])
96AC_SUBST([CONTROL_SOCKET])
ab188fb7 97
b81a73d1
OZ
98AC_SEARCH_LIBS([clock_gettime], [rt posix4],
99 [],
100 [AC_MSG_ERROR([Function clock_gettime not available.])]
101)
fd91ae33 102
2f9bcf97 103AC_CANONICAL_HOST
416e3ee4 104
b1c030b0 105# Store this value because ac_test_CFLAGS is overwritten by AC_PROG_CC
416e3ee4 106if test "$ac_test_CFLAGS" != set ; then
b81a73d1 107 bird_cflags_default=yes
416e3ee4 108fi
416e3ee4 109
4e276a89 110AC_PROG_CC
9b0a0ba9 111AC_PROG_CC_C99
e81b440f 112if test -z "$GCC" ; then
b81a73d1 113 AC_MSG_ERROR([This program requires the GNU C Compiler.])
e81b440f
OZ
114fi
115
1ec52253 116if test "$enable_pthreads" != no ; then
b81a73d1
OZ
117 BIRD_CHECK_PTHREADS
118
119 if test "$bird_cv_lib_pthreads" = yes ; then
120 AC_DEFINE([USE_PTHREADS], [1], [Define to 1 if pthreads are enabled])
121 CFLAGS="$CFLAGS -pthread"
122 LDFLAGS="$LDFLAGS -pthread"
123 proto_bfd=bfd
124 elif test "$enable_pthreads" = yes ; then
125 AC_MSG_ERROR([POSIX threads not available.])
126 fi
127
128 if test "$enable_pthreads" = try ; then
129 enable_pthreads="$bird_cv_lib_pthreads"
130 fi
1ec52253
OZ
131fi
132
bed41728 133if test "$bird_cflags_default" = yes ; then
b81a73d1
OZ
134 BIRD_CHECK_GCC_OPTION([bird_cv_c_option_wno_pointer_sign], [-Wno-pointer-sign], [-Wall])
135 BIRD_CHECK_GCC_OPTION([bird_cv_c_option_wno_missing_init], [-Wno-missing-field-initializers], [-Wall -Wextra])
136 BIRD_CHECK_GCC_OPTION([bird_cv_c_option_fno_strict_aliasing], [-fno-strict-aliasing])
137 BIRD_CHECK_GCC_OPTION([bird_cv_c_option_fno_strict_overflow], [-fno-strict-overflow])
138
139 CFLAGS="$CFLAGS -Wall -Wextra -Wstrict-prototypes -Wno-parentheses"
140 BIRD_ADD_GCC_OPTION([bird_cv_c_option_wno_pointer_sign], [-Wno-pointer-sign])
141 BIRD_ADD_GCC_OPTION([bird_cv_c_option_wno_missing_init], [-Wno-missing-field-initializers])
142 BIRD_ADD_GCC_OPTION([bird_cv_c_option_fno_strict_aliasing], [-fno-strict-aliasing])
143 BIRD_ADD_GCC_OPTION([bird_cv_c_option_fno_strict_overflow], [-fno-strict-overflow])
b1c030b0 144fi
efd6d12b 145AC_MSG_CHECKING([CFLAGS])
b81a73d1 146AC_MSG_RESULT([$CFLAGS])
b1c030b0
OZ
147
148
416e3ee4
MM
149AC_PROG_CPP
150AC_PROG_INSTALL
151AC_PROG_RANLIB
b81a73d1
OZ
152AC_CHECK_PROG([FLEX], [flex], [flex])
153AC_CHECK_PROG([BISON], [bison], [bison])
154AC_CHECK_PROGS([M4], [gm4 m4])
8de11deb
OZ
155
156test -z "$FLEX" && AC_MSG_ERROR([Flex is missing.])
157test -z "$BISON" && AC_MSG_ERROR([Bison is missing.])
158test -z "$M4" && AC_MSG_ERROR([M4 is missing.])
b81a73d1
OZ
159
160BIRD_CHECK_PROG_FLAVOR_GNU([$M4],
161 [],
162 [AC_MSG_ERROR([Provided M4 is not GNU M4.])]
163)
416e3ee4 164
2f9bcf97 165if test -n "$with_sysconfig" -a "$with_sysconfig" != no ; then
b81a73d1
OZ
166 if test -f $with_sysconfig ; then
167 sysdesc=$with_sysconfig
168 else
169 sysdesc=$srcdir/sysdep/cf/$with_sysconfig
170 if ! test -f $sysdesc ; then
171 sysdesc=$sysdesc.h
172 fi
173 fi
2f9bcf97 174elif test -f sysconfig.h ; then
b81a73d1 175 sysdesc=sysconfig
2f9bcf97 176else
1c5b4c5d
OZ
177 case "$host_os" in
178 linux*)
b81a73d1
OZ
179 sysdesc=linux
180 default_iproutedir="/etc/iproute2"
181 ;;
1c5b4c5d 182 freebsd*)
b81a73d1 183 sysdesc=bsd
09c1e370
JMM
184 CPPFLAGS="$CPPFLAGS -I/usr/local/include"
185 LDFLAGS="$LDFLAGS -L/usr/local/lib"
b81a73d1 186 ;;
1c5b4c5d 187 kfreebsd*)
b81a73d1
OZ
188 sysdesc=bsd
189 ;;
1c5b4c5d 190 netbsd*)
b81a73d1 191 sysdesc=bsd
1c5b4c5d
OZ
192 CPPFLAGS="$CPPFLAGS -I/usr/pkg/include"
193 LDFLAGS="$LDFLAGS -L/usr/pkg/lib -R/usr/pkg/lib"
b81a73d1 194 ;;
1c5b4c5d 195 openbsd*)
b81a73d1
OZ
196 sysdesc=bsd
197 ;;
1c5b4c5d 198 dragonfly*)
b81a73d1
OZ
199 sysdesc=bsd
200 ;;
201 *)
202 AC_MSG_ERROR([Cannot determine correct system configuration. Please use --with-sysconfig to set it manually.])
203 ;;
1c5b4c5d
OZ
204 esac
205 sysdesc=$srcdir/sysdep/cf/$sysdesc.h
2f9bcf97 206fi
416e3ee4 207AC_MSG_CHECKING([which OS configuration should we use])
b81a73d1 208AC_MSG_RESULT([$sysdesc])
49e7e5ee 209if ! test -f $sysdesc ; then
b81a73d1 210 AC_MSG_ERROR([The system configuration file is missing.])
2f9bcf97 211fi
49e7e5ee 212sysname=`echo $sysdesc | sed 's/\.h$//'`
7a855725 213AC_DEFINE_UNQUOTED([SYSCONF_INCLUDE], ["$sysdesc"], [Which sysdep header to include])
49e7e5ee
MM
214
215AC_MSG_CHECKING([system-dependent directories])
7152e5ef 216sysdep_dirs="`sed <$sysdesc '/^Link: /!d;s/^Link: \(.*\)$/\1/' | tr '\012' ' '`"
b81a73d1
OZ
217AC_MSG_RESULT([$sysdep_dirs])
218AC_SUBST([sysdep_dirs])
2f9bcf97 219
acc93efd
OZ
220if test "$with_iproutedir" = no ; then with_iproutedir= ; fi
221
222if test -n "$given_iproutedir"
223then iproutedir=$with_iproutedir
224else iproutedir=$default_iproutedir
225fi
226
b81a73d1 227AC_SUBST([iproutedir])
acc93efd 228
144c10fa
OZ
229DAEMON_LIBS=
230AC_SUBST(DAEMON_LIBS)
231
232if test "$enable_libssh" != no ; then
7d5e61a6
OZ
233 AC_CHECK_HEADER([libssh/libssh.h], [true], [fail=yes], [ ])
234 AC_CHECK_LIB([ssh], [ssh_connect], [true], [fail=yes])
144c10fa
OZ
235
236 if test "$fail" != yes ; then
237 AC_DEFINE([HAVE_LIBSSH], [1], [Define to 1 if you have the `ssh' library (-lssh).])
238 DAEMON_LIBS="-lssh $DAEMON_LIBS"
239 proto_rpki=rpki
240 enable_libssh=yes
241 else
242 if test "$enable_libssh" = yes ; then
243 AC_MSG_ERROR([LibSSH not available.])
244 else
245 enable_libssh=no
246 fi
247 fi
937e75d8 248fi
144c10fa 249
6b0f5f68
MJM
250if test "$enable_mpls_kernel" != no ; then
251 BIRD_CHECK_MPLS_KERNEL
252
253 if test "$bird_cv_mpls_kernel" = yes ; then
254 AC_DEFINE([HAVE_MPLS_KERNEL], [1], [Define to 1 if kernel is MPLS capable])
255 elif test "$enable_mpls_kernel" = yes ; then
256 AC_MSG_ERROR([Kernel MPLS support not found.])
257 fi
258
259 if test "$enable_mpls_kernel" = try ; then
260 enable_mpls_kernel="$bird_cv_mpls_kernel"
261 fi
262fi
263
5e8df049 264all_protocols="$proto_bfd babel bgp ospf pipe radv rip $proto_rpki static"
d549b83f 265
1ec52253
OZ
266all_protocols=`echo $all_protocols | sed 's/ /,/g'`
267
268if test "$with_protocols" = all ; then
b81a73d1 269 with_protocols="$all_protocols"
1ec52253
OZ
270fi
271
7a855725
OZ
272AH_TEMPLATE([CONFIG_BABEL], [Babel protocol])
273AH_TEMPLATE([CONFIG_BFD], [BFD protocol])
274AH_TEMPLATE([CONFIG_BGP], [BGP protocol])
275AH_TEMPLATE([CONFIG_OSPF], [OSPF protocol])
276AH_TEMPLATE([CONFIG_PIPE], [Pipe protocol])
277AH_TEMPLATE([CONFIG_RADV], [RAdv protocol])
278AH_TEMPLATE([CONFIG_RIP], [RIP protocol])
525a88d8 279AH_TEMPLATE([CONFIG_RPKI], [RPKI protocol])
7a855725
OZ
280AH_TEMPLATE([CONFIG_STATIC], [Static protocol])
281
2f9bcf97
MM
282AC_MSG_CHECKING([protocols])
283protocols=`echo "$with_protocols" | sed 's/,/ /g'`
b296730c 284if test "$protocols" = no ; then protocols= ; fi
2f9bcf97 285for a in $protocols ; do
b81a73d1
OZ
286 if ! test -f $srcdir/proto/$a/Makefile ; then
287 AC_MSG_RESULT([failed])
288 AC_MSG_ERROR([Requested protocol $a not found])
289 fi
290 AC_DEFINE_UNQUOTED([CONFIG_`echo $a | tr 'a-z' 'A-Z'`])
291done
292AC_MSG_RESULT([ok])
293AC_SUBST([protocols])
2f9bcf97 294
a07e9d82 295case $sysdesc in
1c5b4c5d 296 */linux*)
b81a73d1
OZ
297 AC_CHECK_HEADER([linux/rtnetlink.h],
298 [],
299 [AC_MSG_ERROR([Appropriate version of Linux kernel headers not found.])],
81edd3b3
OZ
300 [
301 dnl Some older versions of Linux kernel headers require these includes
302 #include <asm/types.h>
303 #include <sys/socket.h>
304 ]
b81a73d1
OZ
305 )
306 ;;
a07e9d82
MM
307esac
308
5d6dc930 309AC_CHECK_HEADERS_ONCE([alloca.h syslog.h])
71652572 310AC_CHECK_MEMBERS([struct sockaddr.sa_len], [], [], [#include <sys/socket.h>])
7a855725
OZ
311
312AC_C_BIGENDIAN(
313 [AC_DEFINE([CPU_BIG_ENDIAN], [1], [Define to 1 if cpu is big endian])],
314 [AC_DEFINE([CPU_LITTLE_ENDIAN], [1], [Define to 1 if cpu is little endian])],
315 [AC_MSG_ERROR([Cannot determine CPU endianity.])]
316)
e6ff7a08 317
da16b33a
MM
318BIRD_CHECK_ANDROID_GLOB
319if test "$bird_cv_lib_glob" = no ; then
320 AC_MSG_ERROR([glob.h not found.])
321elif test "$bird_cv_lib_glob" != yes ; then
322 LIBS="$LIBS $bird_cv_lib_glob"
323fi
324
325BIRD_CHECK_ANDROID_LOG
326if test "$bird_cv_lib_log" = no ; then
327 AC_MSG_ERROR([don't know how to link syslog.])
328elif test "$bird_cv_lib_log" != yes ; then
329 LIBS="$LIBS $bird_cv_lib_log"
330fi
331
2f9bcf97 332if test "$enable_debug" = yes ; then
b81a73d1 333 AC_DEFINE([DEBUGGING], [1], [Define to 1 if debugging is enabled])
1c5b4c5d
OZ
334 LDFLAGS="$LDFLAGS -rdynamic"
335 CFLAGS="$CFLAGS -O0 -ggdb -g3 -gdwarf-4"
336
337 AC_CHECK_HEADER([execinfo.h],
338 [
339 AC_DEFINE([HAVE_EXECINFO_H], [1], [Define to 1 if you have the <execinfo.h> header file.])
340 AC_SEARCH_LIBS([backtrace], [execinfo],
b4a33e21 341 [],
1c5b4c5d
OZ
342 [AC_MSG_ERROR([Function backtrace not available.])]
343 )
344 ]
345 )
346
b81a73d1
OZ
347 if test "$enable_memcheck" = yes ; then
348 AC_CHECK_LIB([dmalloc], [dmalloc_debug])
349 if test $ac_cv_lib_dmalloc_dmalloc_debug != yes ; then
350 AC_CHECK_LIB([efence], [malloc])
351 fi
352 fi
2f9bcf97
MM
353fi
354
7152e5ef 355CLIENT=birdcl
7211be1c 356CLIENT_LIBS=
9fac310d 357if test "$enable_client" = yes ; then
1c5b4c5d 358 CLIENT="$CLIENT birdc"
a01e951d
OZ
359 BASE_LIBS="$LIBS"
360 LIBS=""
361
362 AC_CHECK_HEADERS([curses.h],
363 [],
364 [AC_MSG_ERROR([The client requires ncurses library. Either install the library or use --disable-client to compile without the client.])],
81edd3b3 365 [AC_INCLUDES_DEFAULT]
b81a73d1
OZ
366 )
367
a01e951d
OZ
368 AC_SEARCH_LIBS([tgetent], [tinfo tinfow ncurses curses termcap],
369 [TINFO_LIBS="$LIBS"; LIBS=""],
370 [AC_MSG_ERROR([The client requires ncurses library. Either install the library or use --disable-client to compile without the client.])],
371 )
372
373 AC_CHECK_HEADERS([readline/readline.h readline/history.h],
374 [],
375 [AC_MSG_ERROR([The client requires GNU Readline library. Either install the library or use --disable-client to compile without the client.])],
81edd3b3 376 [AC_INCLUDES_DEFAULT]
a01e951d
OZ
377 )
378
a01e951d
OZ
379 AC_SEARCH_LIBS([rl_callback_read_char], [readline],
380 [READLINE_LIBS="$LIBS"; LIBS=""],
a01e951d 381 [AC_MSG_ERROR([The client requires GNU Readline library. Either install the library or use --disable-client to compile without the client.])],
a01e951d 382 [$TINFO_LIBS]
a01e951d
OZ
383 )
384
b81a73d1
OZ
385 AC_CHECK_LIB([readline], [rl_crlf],
386 [AC_DEFINE([HAVE_RL_CRLF], [1], [Define to 1 if you have rl_crlf()])],
387 [],
a01e951d 388 [$TINFO_LIBS]
b81a73d1
OZ
389 )
390
391 AC_CHECK_LIB([readline], [rl_ding],
392 [AC_DEFINE([HAVE_RL_DING], [1], [Define to 1 if you have rl_ding()])],
393 [],
a01e951d 394 [$TINFO_LIBS]
b81a73d1 395 )
a01e951d
OZ
396
397 LIBS="$BASE_LIBS"
cce6ba4d 398 CLIENT_LIBS="$READLINE_LIBS $TINFO_LIBS"
9fac310d 399fi
b81a73d1
OZ
400AC_SUBST([CLIENT])
401AC_SUBST([CLIENT_LIBS])
9fac310d 402
54165b13 403mkdir -p $objdir/sysdep
7cb37e6f 404AC_CONFIG_HEADERS([$objdir/sysdep/autoconf.h:sysdep/autoconf.h.in])
1c5b4c5d 405AC_CONFIG_FILES([Makefile:Makefile.in])
22122d4d 406AC_OUTPUT
2f9bcf97 407
7a855725
OZ
408AC_MSG_RESULT()
409AC_MSG_RESULT([BIRD was configured with the following options:])
410AC_MSG_RESULT([ Source directory: $srcdir])
411AC_MSG_RESULT([ Object directory: $objdir])
412AC_MSG_RESULT([ Iproute2 directory: $iproutedir])
413AC_MSG_RESULT([ System configuration: $sysdesc])
414AC_MSG_RESULT([ Debugging: $enable_debug])
415AC_MSG_RESULT([ POSIX threads: $enable_pthreads])
416AC_MSG_RESULT([ Routing protocols: $protocols])
6b0f5f68 417AC_MSG_RESULT([ Kernel MPLS support: $enable_mpls_kernel])
7a855725 418AC_MSG_RESULT([ Client: $enable_client])
525a88d8 419
b296730c 420rm -f $objdir/.*-stamp