]> git.ipfire.org Git - thirdparty/bird.git/blob - configure.in
Merge branch 'int-new' of gitlab.labs.nic.cz:labs/bird into int-new
[thirdparty/bird.git] / configure.in
1 dnl ** This is a configure script template for BIRD
2 dnl ** Process it with autoconf to get ./configure
3 dnl ** (c) 1999--2000 Martin Mares <mj@ucw.cz>
4
5 AC_REVISION($Id$)
6 AC_INIT(conf/confbase.Y)
7 AC_CONFIG_AUX_DIR(tools)
8
9 AC_ARG_ENABLE(debug, [ --enable-debug enable internal debugging routines (default: disabled)],,enable_debug=no)
10 AC_ARG_ENABLE(memcheck, [ --enable-memcheck check memory allocations when debugging (default: enabled)],,enable_memcheck=yes)
11 AC_ARG_ENABLE(client, [ --enable-client enable building of BIRD client (default: enabled)],,enable_client=yes)
12 AC_ARG_ENABLE(pthreads, [ --enable-pthreads enable POSIX threads support (default: detect)],,enable_pthreads=try)
13 AC_ARG_WITH(sysconfig, [ --with-sysconfig=FILE use specified BIRD system configuration file])
14 AC_ARG_WITH(protocols, [ --with-protocols=LIST include specified routing protocols (default: all)],,[with_protocols="all"])
15 AC_ARG_WITH(sysinclude, [ --with-sysinclude=PATH search for system includes on specified place])
16 AC_ARG_WITH(runtimedir, [ --with-runtimedir=PATH path for runtime files (default: $(localstatedir)/run)],[runtimedir="$with_runtimedir"],[runtimedir="\$(localstatedir)/run"])
17 AC_ARG_WITH(iproutedir, [ --with-iproutedir=PATH path to iproute2 config files (default: /etc/iproute2)],[given_iproutedir="yes"])
18 AC_ARG_VAR([FLEX], [location of the Flex program])
19 AC_ARG_VAR([BISON], [location of the Bison program])
20 AC_ARG_VAR([M4], [location of the M4 program])
21
22
23 if test "$srcdir" = . ; then
24 # Building in current directory => create obj directory holding all objects
25 objdir=obj
26 else
27 # Building in separate directory
28 objdir=.
29 fi
30
31 exedir=.
32
33 AC_SUBST(objdir)
34 AC_SUBST(exedir)
35 AC_SUBST(srcdir)
36 AC_SUBST(runtimedir)
37
38
39 if test "$enable_debug" = yes ; then
40 CONFIG_FILE="bird.conf"
41 CONTROL_SOCKET="bird.ctl"
42 else
43 CONFIG_FILE="\$(sysconfdir)/bird.conf"
44 CONTROL_SOCKET="$runtimedir/bird.ctl"
45 fi
46 AC_SUBST(CONFIG_FILE)
47 AC_SUBST(CONTROL_SOCKET)
48
49 AC_SEARCH_LIBS(clock_gettime, [c rt posix4], ,
50 AC_MSG_ERROR([[Function clock_gettime not available.]]))
51
52 AC_CANONICAL_HOST
53
54 # Store this value because ac_test_CFLAGS is overwritten by AC_PROG_CC
55 if test "$ac_test_CFLAGS" != set ; then
56 bird_cflags_default=yes
57 fi
58
59 AC_PROG_CC
60 if test -z "$GCC" ; then
61 AC_MSG_ERROR([This program requires the GNU C Compiler.])
62 fi
63
64 # Enable threads by default just in Linux and FreeBSD
65 #if test "$enable_pthreads" = try ; then
66 # case "$host_os" in
67 # (linux* | freebsd* | openbsd* | netbsd* ) enable_pthreads=try ;;
68 # (*) enable_pthreads=no ;;
69 # esac
70 #fi
71
72 if test "$enable_pthreads" != no ; then
73 BIRD_CHECK_PTHREADS
74
75 if test "$bird_cv_lib_pthreads" = yes ; then
76 AC_DEFINE(USE_PTHREADS)
77 CFLAGS="$CFLAGS -pthread"
78 LDFLAGS="$LDFLAGS -pthread"
79 proto_bfd=bfd
80 elif test "$enable_pthreads" = yes ; then
81 AC_MSG_ERROR([POSIX threads not available.])
82 fi
83
84 if test "$enable_pthreads" = try ; then
85 enable_pthreads="$bird_cv_lib_pthreads"
86 fi
87 fi
88
89 if test "$bird_cflags_default" = yes ; then
90 BIRD_CHECK_GCC_OPTION(bird_cv_c_option_wno_pointer_sign, -Wno-pointer-sign, -Wall)
91 BIRD_CHECK_GCC_OPTION(bird_cv_c_option_fno_strict_aliasing, -fno-strict-aliasing)
92 BIRD_CHECK_GCC_OPTION(bird_cv_c_option_fno_strict_overflow, -fno-strict-overflow)
93
94 CFLAGS="$CFLAGS -Wall -Wstrict-prototypes -Wno-parentheses"
95 BIRD_ADD_GCC_OPTION(bird_cv_c_option_wno_pointer_sign, -Wno-pointer-sign)
96 BIRD_ADD_GCC_OPTION(bird_cv_c_option_fno_strict_aliasing, -fno-strict-aliasing)
97 BIRD_ADD_GCC_OPTION(bird_cv_c_option_fno_strict_overflow, -fno-strict-overflow)
98 fi
99 AC_MSG_CHECKING([CFLAGS])
100 AC_MSG_RESULT($CFLAGS)
101
102
103 AC_PROG_CPP
104 AC_PROG_INSTALL
105 AC_PROG_RANLIB
106 AC_CHECK_PROG(FLEX, flex, flex)
107 AC_CHECK_PROG(BISON, bison, bison)
108 AC_CHECK_PROGS(M4, gm4 m4)
109
110 test -z "$FLEX" && AC_MSG_ERROR([Flex is missing.])
111 test -z "$BISON" && AC_MSG_ERROR([Bison is missing.])
112 test -z "$M4" && AC_MSG_ERROR([M4 is missing.])
113 BIRD_CHECK_PROG_FLAVOR_GNU([$M4], , [AC_MSG_ERROR([Provided M4 is not GNU M4.])])
114
115 if test -n "$with_sysconfig" -a "$with_sysconfig" != no ; then
116 if test -f $with_sysconfig ; then
117 sysdesc=$with_sysconfig
118 else
119 sysdesc=$srcdir/sysdep/cf/$with_sysconfig
120 if ! test -f $sysdesc ; then
121 sysdesc=$sysdesc.h
122 fi
123 fi
124 elif test -f sysconfig.h ; then
125 sysdesc=sysconfig
126 else
127 case "$host_os" in
128 linux*) sysdesc=linux
129 default_iproutedir="/etc/iproute2"
130 ;;
131 freebsd*) sysdesc=bsd
132 ;;
133 kfreebsd*) sysdesc=bsd
134 ;;
135 netbsd*) sysdesc=bsd
136 CPPFLAGS="$CPPFLAGS -I/usr/pkg/include"
137 LDFLAGS="$LDFLAGS -L/usr/pkg/lib -R/usr/pkg/lib"
138 ;;
139 openbsd*) sysdesc=bsd
140 ;;
141 dragonfly*) sysdesc=bsd
142 ;;
143 *) AC_MSG_ERROR([Cannot determine correct system configuration. Please use --with-sysconfig to set it manually.])
144 ;;
145 esac
146 sysdesc=$srcdir/sysdep/cf/$sysdesc.h
147 fi
148 AC_MSG_CHECKING([which OS configuration should we use])
149 AC_MSG_RESULT($sysdesc)
150 if ! test -f $sysdesc ; then
151 AC_MSG_ERROR([The system configuration file is missing.])
152 fi
153 sysname=`echo $sysdesc | sed 's/\.h$//'`
154 AC_DEFINE_UNQUOTED(SYSCONF_INCLUDE, "$sysdesc")
155
156 AC_MSG_CHECKING([system-dependent directories])
157 sysdep_dirs="`sed <$sysdesc '/^Link: /!d;s/^Link: \(.*\)$/\1/' | tr '\012' ' '`"
158 AC_MSG_RESULT($sysdep_dirs)
159 AC_SUBST(sysdep_dirs)
160
161 if test "$with_iproutedir" = no ; then with_iproutedir= ; fi
162
163 if test -n "$given_iproutedir"
164 then iproutedir=$with_iproutedir
165 else iproutedir=$default_iproutedir
166 fi
167
168 AC_SUBST(iproutedir)
169
170 # all_protocols="$proto_bfd babel bgp ospf pipe radv rip static"
171 all_protocols="$proto_bfd ospf pipe radv rip static"
172
173 all_protocols=`echo $all_protocols | sed 's/ /,/g'`
174
175 if test "$with_protocols" = all ; then
176 with_protocols="$all_protocols"
177 fi
178
179 AC_MSG_CHECKING([protocols])
180 protocols=`echo "$with_protocols" | sed 's/,/ /g'`
181 if test "$protocols" = no ; then protocols= ; fi
182 for a in $protocols ; do
183 if ! test -f $srcdir/proto/$a/Makefile ; then
184 AC_MSG_RESULT(failed)
185 AC_MSG_ERROR([Requested protocol $a not found.])
186 fi
187 AC_DEFINE_UNQUOTED(CONFIG_`echo $a | tr 'a-z' 'A-Z'`)
188 done
189 AC_MSG_RESULT(ok)
190 AC_SUBST(protocols)
191
192 case $sysdesc in
193 */linux*)
194 AC_CHECK_HEADER(linux/rtnetlink.h,,[AC_MSG_ERROR([Appropriate version of Linux kernel headers not found.])],[
195 #include <asm/types.h>
196 #include <sys/socket.h>
197 ])
198 ;;
199 esac
200
201 AC_CHECK_HEADER(syslog.h, [AC_DEFINE(HAVE_SYSLOG)])
202 AC_CHECK_HEADER(alloca.h, [AC_DEFINE(HAVE_ALLOCA_H)])
203 AC_MSG_CHECKING(whether 'struct sockaddr' has sa_len)
204 AC_TRY_COMPILE([#include <sys/types.h>
205 #include <sys/socket.h>
206 ], [static struct sockaddr sa; int i = sizeof(sa.sa_len);],
207 [AC_MSG_RESULT(yes)
208 AC_DEFINE(HAVE_SIN_LEN,,sin_len)],
209 AC_MSG_RESULT(no))
210
211 AC_C_BIGENDIAN([AC_DEFINE(CPU_BIG_ENDIAN)], [AC_DEFINE(CPU_LITTLE_ENDIAN)],
212 [AC_MSG_ERROR([Cannot determine CPU endianity.])])
213
214 BIRD_CHECK_INTEGERS
215 BIRD_CHECK_STRUCT_ALIGN
216 BIRD_CHECK_TIME_T
217 BIRD_CHECK_STRUCT_IP_MREQN
218
219 if test "$enable_debug" = yes ; then
220 AC_DEFINE(DEBUGGING)
221 if test "$enable_memcheck" = yes ; then
222 AC_CHECK_LIB(dmalloc, dmalloc_debug)
223 if test $ac_cv_lib_dmalloc_dmalloc_debug != yes ; then
224 AC_CHECK_LIB(efence, malloc)
225 fi
226 fi
227 fi
228
229 CLIENT=birdcl
230 CLIENT_LIBS=
231 if test "$enable_client" = yes ; then
232 CLIENT="$CLIENT birdc"
233 AC_CHECK_LIB(history, add_history, CLIENT_LIBS="-lhistory")
234 AC_CHECK_LIB(ncurses, tgetent, USE_TERMCAP_LIB=-lncurses,
235 AC_CHECK_LIB(curses, tgetent, USE_TERMCAP_LIB=-lcurses,
236 AC_CHECK_LIB(tinfow, tgetent, USE_TERMCAP_LIB=-ltinfow,
237 AC_CHECK_LIB(tinfo, tgetent, USE_TERMCAP_LIB=-ltinfo,
238 AC_CHECK_LIB(termcap, tgetent, USE_TERMCAP_LIB=-ltermcap,
239 AC_MSG_ERROR([[The client requires ncurses library. Either install the library or use --disable-client to compile without the client.]]))))))
240 AC_CHECK_LIB(readline, rl_callback_read_char, CLIENT_LIBS="-lreadline $CLIENT_LIBS $USE_TERMCAP_LIB",
241 AC_MSG_ERROR([[The client requires GNU readline library 2.1 or newer. Either install the library or use --disable-client to compile without the client.]]), $USE_TERMCAP_LIB)
242 AC_CHECK_LIB(readline, rl_crlf, AC_DEFINE(HAVE_RL_CRLF),,$USE_TERMCAP_LIB)
243 AC_CHECK_LIB(readline, rl_ding, AC_DEFINE(HAVE_RL_DING),,$USE_TERMCAP_LIB)
244 fi
245 AC_SUBST(CLIENT)
246 AC_SUBST(CLIENT_LIBS)
247
248 mkdir -p $objdir/sysdep
249 AC_CONFIG_HEADERS([$objdir/sysdep/autoconf.h:sysdep/autoconf.h.in])
250 AC_CONFIG_FILES(Makefile:Makefile.in)
251 AC_OUTPUT
252
253 cat >&AC_FD_MSG <<EOF
254
255 BIRD was configured with the following options:
256 Source directory: $srcdir
257 Object directory: $objdir
258 Iproute2 directory: $iproutedir
259 System configuration: $sysdesc
260 Debugging: $enable_debug
261 POSIX threads: $enable_pthreads
262 Routing protocols: $protocols
263 Client: $enable_client
264 EOF
265 rm -f $objdir/.*-stamp