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