forked from acassen/keepalived
-
Notifications
You must be signed in to change notification settings - Fork 1
/
configure.in
332 lines (299 loc) · 9.59 KB
/
configure.in
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
#
# Keepalived OpenSource project.
#
# Configuration template file for keepalived.
# autoconf will generate & check deps for proper compilation
#
# Copyright (C) 2001-2009 Alexandre Cassen, <[email protected]>
dnl ----[ Process this file with autoconf to produce a configure script ]----
AC_INIT(keepalived/core/main.c)
VERSION=`cat VERSION`
VERSION_DATE=`date +%m/%d,20%y`
OUTPUT_TARGET="Makefile genhash/Makefile keepalived/core/Makefile keepalived/include/config.h keepalived.spec"
dnl ----[ Checks for programs ]----
AC_PROG_CC
AC_PROG_INSTALL
AC_CHECK_TOOL(STRIP,strip)
dnl ----[ Keepalived specific configure options ]----
AC_ARG_ENABLE(lvs-syncd,
[ --disable-lvs-syncd do not use LVS synchronization daemon])
AC_ARG_ENABLE(lvs,
[ --disable-lvs do not use the LVS framework])
AC_ARG_ENABLE(vrrp,
[ --disable-vrrp do not use the VRRP framework])
AC_ARG_WITH(kernel-dir,
[ --with-kernel-dir=DIR path to linux kernel source directory],
[kernelinc="$withval/include" kernelpath="$withval"],
[kernelinc="/usr/src/linux/include" kernelpath="/usr/src/linux"])
AC_ARG_WITH(kernel-version,
[ --with-kernel-version=VER forced value for linux kernel version (VER=2.4|2.6)],
[kernelversion="$withval"], [kernelversion=""])
AC_ARG_ENABLE(snmp,
[ --enable-snmp compile with SNMP support])
AC_ARG_ENABLE(debug,
[ --enable-debug compile with debugging flags])
AC_ARG_ENABLE(profile,
[ --enable-profile compile with profiling flags])
dnl ----[ Checks for header files ]----
AC_HEADER_STDC
AC_HEADER_SYS_WAIT
AC_CHECK_HEADERS(fcntl.h syslog.h unistd.h sys/ioctl.h sys/time.h)
dnl [do we really need this ?] AC_CHECK_HEADERS(linux/netlink.h linux/rtnetlink.h)
AC_CHECK_HEADERS(openssl/ssl.h openssl/md5.h openssl/err.h,,AC_MSG_ERROR([
!!! OpenSSL is not properly installed on your system. !!!
!!! Can not include OpenSSL headers files. !!!]))
AC_CHECK_DECL([ETHERTYPE_IPV6],[],[CFLAGS="$CFLAGS -DETHERTYPE_IPV6=0x86dd"],
[[@%:@include <net/ethernet.h>]])
dnl ----[ Checks for libraries ]----
AC_CHECK_LIB(crypto, MD5_Init,,AC_MSG_ERROR([OpenSSL libraries are required]))
AC_CHECK_LIB(ssl, SSL_CTX_new,,AC_MSG_ERROR([OpenSSL libraries are required]))
AC_CHECK_LIB(popt, poptGetContext,,AC_MSG_ERROR([Popt libraries is required]))
AC_CHECK_LIB(nl, nl_socket_modify_cb,
[
USE_NL="LIBIPVS_USE_NL"
LIBS="$LIBS -lnl"
],
[
USE_NL="LIBIPVS_DONTUSE_NL"
AC_MSG_WARN([keepalived will be built without libnl support.])
])
dnl ----[ Kernel version check ]----
CPPFLAGS="$CPPFLAGS -I$kernelinc"
AC_MSG_CHECKING([for kernel version])
AC_TRY_RUN([
#include <stdlib.h>
#include <stdio.h>
#include <linux/version.h>
#if !defined(UTS_RELEASE) && !defined(LINUX_VERSION_CODE)
#include <linux/utsrelease.h>
#endif
int main (void) {
FILE *fp = fopen ("linuxinfo", "w");
if (!fp) return 1;
#if defined(UTS_RELEASE)
fprintf (fp, "%s\n", UTS_RELEASE);
#elif defined(LINUX_VERSION_CODE)
fprintf (fp, "%d.%d.%d\n", LINUX_VERSION_CODE >> 16, (LINUX_VERSION_CODE >> 8) & 0xFF, LINUX_VERSION_CODE & 0xFF);
#else
fprintf (fp, "0.0.0\n"); /* Let's fail gently */
#endif
fclose (fp);
return 0;
}
], [
LINUX_MAJOR=`cat linuxinfo | cut -d'.' -f1`
LINUX_MINOR=`cat linuxinfo | cut -d'.' -f2`
LINUX_PATCH=`cat linuxinfo | cut -d'.' -f3`
], [
LINUX_MAJOR="0"
LINUX_MINOR="0"
LINUX_PATCH="0"
], [
LINUX_MAJOR="0"
LINUX_MINOR="0"
LINUX_PATCH="0"
])
rm -f linuxinfo
if test "$kernelversion" = "2.4"; then
KERN="_KRNL_2_4_"
AC_MSG_RESULT([2.4])
elif test "$kernelversion" = "2.6"; then
KERN="_KRNL_2_6_"
AC_MSG_RESULT([2.6])
else
AC_MSG_RESULT([$LINUX_MAJOR.$LINUX_MINOR.$LINUX_PATCH])
if test "$LINUX_MAJOR" = "2" && test "$LINUX_MINOR" = "6"; then
KERN="_KRNL_2_6_"
elif test "$LINUX_MAJOR" = "2" && test "$LINUX_MINOR" = "4"; then
KERN="_KRNL_2_4_"
else
KERN="_KRNL_2_6_"
fi
if test "$LINUX_MAJOR" = "0" -a "$LINUX_MINOR" = "0" -a "$LINUX_PATCH" = "0"; then
AC_MSG_WARN([Cannot determine Linux Kernel version.])
fi
fi
AC_SUBST(KERN)
dnl ----[ Checks for LVS and VRRP support ]----
IPVS_SUPPORT="_WITHOUT_LVS_"
if test "$enable_lvs" != "no"; then
if test "$KERN" = "_KRNL_2_6_"; then
IPVS_SUPPORT="_WITH_LVS_"
else
AC_CHECK_HEADER([net/ip_vs.h],
[IPVS_SUPPORT="_WITH_LVS_"],
[
IPVS_SUPPORT="_WITHOUT_LVS_"
AC_MSG_WARN([keepalived will be built without LVS support.])
])
fi
fi
if test "$IPVS_SUPPORT" = "_WITHOUT_LVS_" -a "$enable_vrrp" = "no"; then
AC_MSG_ERROR([keepalived MUST be compiled at least with LVS or VRRP framework])
fi
dnl ----[ IPVS syncd support probe ]---
IPVS_SYNCD="_WITHOUT_IPVS_SYNCD_"
if test "$IPVS_SUPPORT" = "_WITH_LVS_"; then
AC_MSG_CHECKING([for IPVS syncd support])
if test "$KERN" = "_KRNL_2_6_"; then
IPVS_SYNCD="_HAVE_IPVS_SYNCD_"
elif test "_KRNL_2_4_"; then
IPVS_SYNCD="_HAVE_IPVS_SYNCD_"
else
IPVS_SYNCD="_WITHOUT_IPVS_SYNCD_"
fi
if test "${IPVS_SUPPORT}" = "_WITHOUT_LVS_" -o "$enable_lvs_syncd" = "no"; then
IPVS_SYNCD="_WITHOUT_IPVS_SYNCD_"
fi
if test "$IPVS_SYNCD" = "_HAVE_IPVS_SYNCD_"; then
AC_MSG_RESULT([yes])
else
AC_MSG_RESULT([no])
fi
fi
AC_SUBST(IPVS_SYNCD)
dnl ----[ Checks for kernel netlink support ]----
VRRP_SUPPORT="_WITHOUT_VRRP_"
if test "$enable_vrrp" != "no"; then
VRRP_SUPPORT="_WITH_VRRP_"
fi
dnl ----[ Checks for kernel VMAC support ]----
CPPFLAGS="$CPPFLAGS -I$kernelinc"
AC_MSG_CHECKING([for kernel macvlan support])
AC_TRY_COMPILE([
#include <bits/sockaddr.h>
#include <linux/if_link.h>
int macvlan;
], [
macvlan = IFLA_MACVLAN_MODE;
macvlan = MACVLAN_MODE_PRIVATE;
], [
MACVLAN_SUPPORT=yes
], []);
if test "$MACVLAN_SUPPORT" = "yes"; then
VRRP_VMAC="_HAVE_VRRP_VMAC_"
AC_MSG_RESULT([yes])
else
VRRP_VMAC="_WITHOUT_VRRP_VMAC_"
AC_MSG_RESULT([no])
fi
AC_SUBST(VRRP_VMAC)
dnl ----[ Checks for SNMP support ]----
SNMP_SUPPORT="_WITHOUT_SNMP_"
if test "$enable_snmp" = "yes"; then
AC_PATH_TOOL([NETSNMP_CONFIG], [net-snmp-config], [no])
if test x"$NETSNMP_CONFIG" = x"no"; then
AC_MSG_ERROR([unable to find net-snmp-config])
fi
NETSNMP_LIBS=`${NETSNMP_CONFIG} --agent-libs`
#NETSNMP_CFLAGS="`${NETSNMP_CONFIG} --base-cflags`"
#CFLAGS="${NETSNMP_CFLAGS} $CFLAGS"
LIBS="${NETSNMP_LIBS} $LIBS"
AC_MSG_CHECKING([whether C compiler supports flag "${NETSNMP_LIBS}" from Net-SNMP])
AC_LINK_IFELSE([AC_LANG_PROGRAM([
int main(void);
],
[
{
return 0;
}
])],[AC_MSG_RESULT(yes)],[
AC_MSG_RESULT(no)
AC_MSG_ERROR([incorrect CFLAGS from net-snmp-config])])
# Do we have a usable <net-snmp/agent/util_funcs.h> header?
AC_CHECK_HEADERS([net-snmp/agent/util_funcs.h],,,[
@%:@include <net-snmp/net-snmp-config.h>
@%:@include <net-snmp/net-snmp-includes.h>
@%:@include <net-snmp/library/snmp_transport.h>
@%:@include <net-snmp/agent/net-snmp-agent-includes.h>
@%:@include <net-snmp/agent/snmp_vars.h>
])
SNMP_SUPPORT="_WITH_SNMP_"
fi
AC_SUBST(SNMP_SUPPORT)
dnl ----[ Debug or not ? ]----
if test "${enable_debug}" = "yes"; then
DFLAGS="-D_DEBUG_"
AC_SUBST(DFLAGS)
fi
dnl ----[ Profiling or not ? ]----
if test "${enable_profile}" = "yes"; then
CFLAGS="$CFLAGS -pg"
fi
AC_SUBST(VERSION)
AC_SUBST(VERSION_DATE)
AC_SUBST(IPVS_SUPPORT)
AC_SUBST(USE_NL)
AC_SUBST(VRRP_SUPPORT)
dnl ----[ Checks for typedefs, structures, and compiler characteristics ]----
AC_C_CONST
AC_TYPE_PID_T
AC_HEADER_TIME
dnl ----[ Checks for library functions ]----
AC_PROG_GCC_TRADITIONAL
AC_FUNC_MEMCMP
AC_TYPE_SIGNAL
AC_CHECK_FUNCS(gettimeofday select socket strerror strtol uname)
dnl ----[ Process output target ]----
OUTPUT_TARGET="$OUTPUT_TARGET keepalived/Makefile lib/Makefile"
if test "${VRRP_SUPPORT}" = "_WITH_VRRP_"; then
OUTPUT_TARGET="$OUTPUT_TARGET keepalived/vrrp/Makefile"
fi
if test "$IPVS_SUPPORT" = "_WITH_LVS_"; then
OUTPUT_TARGET="$OUTPUT_TARGET keepalived/check/Makefile"
if test "$KERN" = "_KRNL_2_6_"; then
OUTPUT_TARGET="$OUTPUT_TARGET keepalived/libipvs-2.6/Makefile"
elif test "$KERN" = "_KRNL_2_4_"; then
OUTPUT_TARGET="$OUTPUT_TARGET keepalived/libipvs-2.4/Makefile"
fi
fi
AC_OUTPUT($OUTPUT_TARGET)
dnl ----[ Display current configuration ]----
cat <<EOF;
Keepalived configuration
------------------------
Keepalived version : ${VERSION}
Compiler : ${CC}
Compiler flags : ${CFLAGS}
EOF
dnl ----[ display optional vars ]----
if test -n "$LIBS"; then
echo "Extra Lib : $LIBS"
fi
if test "${IPVS_SUPPORT}" = "_WITH_LVS_"; then
echo "Use IPVS Framework : Yes"
if test "${IPVS_SYNCD}" = "_HAVE_IPVS_SYNCD_"; then
echo "IPVS sync daemon support : Yes"
elif test "${IPVS_SYNCD}" = "_WITHOUT_IPVS_SYNCD_"; then
echo "IPVS sync daemon support : No"
fi
if test "${USE_NL}" = "LIBIPVS_USE_NL"; then
echo "IPVS use libnl : Yes"
else
echo "IPVS use libnl : No"
fi
else
echo "Use IPVS Framework : No"
echo "IPVS sync daemon support : No"
fi
if test "${VRRP_SUPPORT}" = "_WITH_VRRP_"; then
echo "Use VRRP Framework : Yes"
if test "${VRRP_VMAC}" = "_HAVE_VRRP_VMAC_"; then
echo "Use VRRP VMAC : Yes"
else
echo "Use VRRP VMAC : No"
fi
else
echo "Use VRRP Framework : No"
fi
if test "${SNMP_SUPPORT}" = "_WITH_SNMP_"; then
echo "SNMP support : Yes"
else
echo "SNMP support : No"
fi
if test "${DFLAGS}" = "-D_DEBUG_"; then
echo "Use Debug flags : Yes"
else
echo "Use Debug flags : No"
fi
dnl ----[ end configure ]---