]> git.ipfire.org Git - thirdparty/lldpd.git/blame - configure.ac
build: make all char unsigned
[thirdparty/lldpd.git] / configure.ac
CommitLineData
43c02e7b
VB
1# -*- Autoconf -*-
2# Process this file with autoconf to produce a configure script.
3
d38eae28
VB
4#######################
5### Base configuration
6
7# Configure autoconf
f3609abd 8AC_PREREQ([2.69])
4593c0dc 9
4593c0dc 10AC_INIT([lldpd],
a888bea6 11 [m4_esyscmd_s([./get-version])],
fae9dd45 12 [https://github.com/lldpd/lldpd/issues],
493b0d42 13 [lldpd],
9b50cef9 14 [https://lldpd.github.io/])
4593c0dc 15
4b292b55 16AC_CONFIG_SRCDIR([src/log.c])
bc6cf978 17AC_CONFIG_HEADERS([config.h])
95493844
VB
18AC_CONFIG_FILES([Makefile
19 src/Makefile
20 src/compat/Makefile
21 src/daemon/Makefile
22 src/lib/Makefile
23 src/client/Makefile
24 tests/Makefile
25 osx/Makefile])
2acc1418 26AC_CONFIG_MACRO_DIR([m4])
fa71a00c 27AC_SUBST([CONFIGURE_ARGS], [$ac_configure_args])
43c02e7b 28
d38eae28 29# Configure automake
4a0791a4 30AM_INIT_AUTOMAKE([foreign subdir-objects -Wall -Werror tar-ustar])
33aa26d0 31AM_MAINTAINER_MODE
44cd2bed 32m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES(yes)])
d38eae28 33
0339b9a2
VB
34# Automake 1.12...
35m4_pattern_allow([AM_PROG_AR])
36AM_PROG_AR
37
d38eae28 38# Configure libtool
d38eae28 39LT_INIT
f571f2db 40gl_LD_VERSION_SCRIPT
d38eae28
VB
41
42#######################
43### Checks
44
43c02e7b
VB
45# Checks for programs.
46AC_PROG_CC
f3609abd 47AC_PROG_CC_C99
630cc035
VB
48if test x"$ac_cv_prog_cc_c99" = x"no"; then
49 AC_MSG_FAILURE([*** C99 support is mandatory])
50fi
e47df85e 51AC_PROG_CPP
d38eae28 52AM_PROG_CC_C_O
206db033 53LT_INIT
fe80711e 54AC_PROG_LN_S
7ba4a183 55AC_PROG_EGREP
140e34f0 56AC_PROG_AWK
e47df85e 57AC_PROG_SED
2acc1418 58
9dee8dec
VB
59# Check for pkg-config
60m4_ifndef([PKG_CHECK_MODULES], [
61 AC_MSG_ERROR([PKG_CHECK_MODULES not found. Please install pkg-config and re-run autogen.sh])])
62
4b292b55
VB
63# Doxygen
64DX_HTML_FEATURE(ON)
65DX_DOT_FEATURE(OFF)
66DX_CHM_FEATURE(OFF)
67DX_CHI_FEATURE(OFF)
68DX_MAN_FEATURE(OFF)
69DX_RTF_FEATURE(OFF)
70DX_XML_FEATURE(OFF)
71DX_PDF_FEATURE(ON)
72DX_PS_FEATURE(OFF)
73DX_INIT_DOXYGEN([lldpd], [doxygen.cfg], [doxygen])
74
45e89c8c 75# Check some compiler flags
f42b8214 76AX_CFLAGS_GCC_OPTION([-Wunknown-warning-option], [LLDP_CFLAGS])
8d92800b
VB
77AX_CFLAGS_GCC_OPTION([-fdiagnostics-show-option], [LLDP_CFLAGS])
78AX_CFLAGS_GCC_OPTION([-fdiagnostics-color=auto], [LLDP_CFLAGS])
0221be2f
VB
79AX_CFLAGS_GCC_OPTION([-fno-omit-frame-pointer], [LLDP_CFLAGS])
80AX_CFLAGS_GCC_OPTION([-funsigned-char], [LLDP_CFLAGS])
8d92800b
VB
81AX_CFLAGS_GCC_OPTION([-pipe], [LLDP_CFLAGS])
82AX_CFLAGS_GCC_OPTION([-Wall], [LLDP_CFLAGS])
83AX_CFLAGS_GCC_OPTION([-W], [LLDP_CFLAGS])
84AX_CFLAGS_GCC_OPTION([-Wextra], [LLDP_CFLAGS])
85AX_CFLAGS_GCC_OPTION([-Wformat], [LLDP_CFLAGS])
86AX_CFLAGS_GCC_OPTION([-Wformat-security], [LLDP_CFLAGS])
d0058aa6 87AX_CFLAGS_GCC_OPTION([-Wimplicit-fallthrough], [LLDP_CFLAGS])
8d92800b 88AX_CFLAGS_GCC_OPTION([-Wfatal-errors], [LLDP_CFLAGS])
09f0af1d
ALG
89AX_CFLAGS_GCC_OPTION([-Wheader-guard], [LLDP_CFLAGS])
90AX_CFLAGS_GCC_OPTION([-Wdocumentation], [LLDP_CFLAGS])
8d92800b 91AX_CFLAGS_GCC_OPTION([-Winline], [LLDP_CFLAGS])
dff59172 92AX_CFLAGS_GCC_OPTION([-Wpointer-arith], [LLDP_CFLAGS])
9b68a67f 93AX_CFLAGS_GCC_OPTION([-Wno-cast-align], [LLDP_CFLAGS]) dnl clang is bad at this
8d92800b
VB
94AX_CFLAGS_GCC_OPTION([-Wno-unused-parameter], [LLDP_CFLAGS])
95AX_CFLAGS_GCC_OPTION([-Wno-missing-field-initializers], [LLDP_CFLAGS])
96AX_CFLAGS_GCC_OPTION([-Wno-sign-compare], [LLDP_CFLAGS]) dnl Should be fixed later
97AX_LDFLAGS_OPTION([-Wl,-z,relro], [LLDP_LDFLAGS])
98AX_LDFLAGS_OPTION([-Wl,-z,now], [LLDP_LDFLAGS])
19a5c9b6 99
bdc8f796
VB
100AC_C_TYPEOF
101
56663327
VB
102# Hardening
103AC_ARG_ENABLE([hardening],
104 [AS_HELP_STRING([--enable-hardening],
d2a01934 105 [Enable compiler and linker options to frustrate memory corruption exploits @<:@default=yes@:>@])],
56663327
VB
106 [hardening="$enableval"],
107 [hardening="yes"])
a8add742
VB
108AC_ARG_ENABLE([pie],
109 [AS_HELP_STRING([--enable-pie],
110 [Enable PIE (position independant executable) @<:@default=no@:>@])],
111 [pie="$enableval"],
112 [pie="no"])
56663327
VB
113
114if test x"$hardening" != x"no"; then
115 AX_CFLAGS_GCC_OPTION([-fstack-protector], [LLDP_CFLAGS])
116 AX_CFLAGS_GCC_OPTION([-fstack-protector-all], [LLDP_CFLAGS])
117 AX_CFLAGS_GCC_OPTION([-fstack-protector-strong], [LLDP_CFLAGS])
38625a92 118 AX_CFLAGS_GCC_OPTION([-fstack-protector-strong], [LLDP_CFLAGS])
adbb26bc 119 AX_CFLAGS_GCC_OPTION([-fstack-clash-protection], [LLDP_CFLAGS])
56663327 120 AX_CFLAGS_GCC_OPTION([-D_FORTIFY_SOURCE=2], [LLDP_CPPFLAGS])
a8add742
VB
121fi
122if test x"$pie" = x"yes"; then
56663327 123 AX_CFLAGS_GCC_OPTION([-fPIE], [LLDP_CFLAGS])
f42b8214
VB
124 AX_LDFLAGS_OPTION([-fPIE -pie], [LLDP_BIN_LDFLAGS],
125 [AX_LDFLAGS_OPTION([-fPIE -Wl,-pie], [LLDP_BIN_LDFLAGS])])
56663327
VB
126fi
127
33fd6231
VB
128# Sanitizers
129AC_ARG_ENABLE([sanitizers],
28d521e2 130 AS_HELP_STRING([--enable-sanitizers],
33fd6231
VB
131 [Enable code instrumentation with selected sanitizers @<:@default=no@:>@]),
132 [
133case "$enableval" in
134 no) sanitizers= ;;
2315d097 135 yes) sanitizers="-fsanitize=address,undefined" ;;
33fd6231
VB
136 *) sanitizers="-fsanitize=$enableval" ;;
137esac
dc37bc8d
VB
138if test x"$sanitizers" != x; then
139 LLDP_CFLAGS="$LLDP_CFLAGS $sanitizers"
140 LLDP_LDFLAGS="$LLDP_LDFLAGS $sanitizers"
141 AC_DEFINE([HAVE_ADDRESS_SANITIZER], 1, [Define if have both address and leak sanitizer])
2e472cca
VB
142elif test x"$hardening" != x"no"; then
143 AX_LDFLAGS_OPTION([-fsanitize=safe-stack], [LLDP_BIN_LDFLAGS])
144 if test x"$ax_cv_ld_check_flag__fsanitize_safe_stack" != x"no"; then
145 AX_CFLAGS_GCC_OPTION([-fsanitize=safe-stack], [LLDP_CFLAGS])
146 fi
dc37bc8d 147fi
33fd6231
VB
148 ])
149
14d35a08 150#Fuzzer
151AC_ARG_ENABLE([fuzzer],
152 AS_HELP_STRING([--enable-fuzzer],
153 [Enable fuzzing @<:@default=no@:>@]),
154 [
155case "$enableval" in
156 no) fuzzer= ;;
157 yes) fuzzer="-fsanitize=fuzzer" ;;
158 *) fuzzer="$enableval" ;;
159esac
160if test x"$fuzzer" != x; then
161 AC_SUBST([FUZZENGINE], ["$fuzzer"])
162fi
163 ])
164
28d521e2
VB
165# Code coverage
166AC_ARG_ENABLE([gcov],
167 AS_HELP_STRING([--enable-gcov],
168 [Enable coverage instrumentation @<:@default=no@:>@]),
169 [gcov="$enableval"],
170 [gcov="no"])
171if test x"$gcov" != x"no"; then
172 LLDP_CFLAGS="$LLDP_CFLAGS --coverage"
173 LLDP_LDFLAGS="$LLDP_LDFLAGS --coverage"
174fi
175
e12c2365
VB
176# OS
177lldp_CHECK_OS
3dc1eb8c 178lldp_CFLAGS_OS
24b8d79f 179
8e4b9031
VB
180AC_CACHE_SAVE
181
d38eae28
VB
182# Checks for header files.
183AC_HEADER_RESOLV
396cfdfe 184AC_CHECK_HEADERS([valgrind/valgrind.h])
c3e340b6 185lldp_CHECK_STDINT
43c02e7b 186
8e4b9031
VB
187AC_CACHE_SAVE
188
43c02e7b 189# Checks for typedefs, structures, and compiler characteristics.
6bb9c4e0 190lldp_CHECK___PROGNAME
dd1d33cf 191lldp_CHECK_ALIGNOF
43c02e7b
VB
192
193# Checks for library functions.
4b292b55 194AC_CONFIG_LIBOBJ_DIR([src/compat])
d38eae28
VB
195AC_FUNC_MALLOC
196AC_FUNC_REALLOC
45bf0bd0 197AC_FUNC_FORK
47bbc5f3
VB
198
199# Some functions can be in libbsd
ff3dcc4a
VB
200AC_ARG_WITH([libbsd],
201 AS_HELP_STRING(
202 [--with-libbsd],
203 [Use libbsd @<:@default=auto@:>@]),
204 [],
205 [with_libbsd=auto])
206if test x"$with_libbsd" != x"no"; then
207 PKG_CHECK_MODULES([libbsd], [libbsd-overlay], [
208 _save_CFLAGS="$CFLAGS"
209 _save_LIBS="$LIBS"
210 CFLAGS="$CFLAGS $libbsd_CFLAGS"
211 LIBS="$LIBS $libbsd_LIBS"
212 AC_MSG_CHECKING([if libbsd can be linked correctly])
206db033 213 AC_LINK_IFELSE([AC_LANG_PROGRAM([[
ff3dcc4a
VB
214 @%:@include <sys/time.h>
215 @%:@include <sys/types.h>
206db033 216 ]], [[]])],[
ff3dcc4a
VB
217 AC_MSG_RESULT(yes)
218 LLDP_CFLAGS="$LLDP_CFLAGS $libbsd_CFLAGS"
219 LLDP_LDFLAGS="$LLDP_LDFLAGS $libbsd_LIBS"
220 with_libbsd=yes
221 ],[
222 AC_MSG_RESULT(no)
223 CFLAGS="$_save_CFLAGS"
224 LIBS="$_save_LIBS"
225 if test x"$with_libbsd" = x"yes"; then
226 AC_MSG_FAILURE([*** no libbsd support found])
227 fi
228 with_libbsd=no
229 ])
230 ], [
231 if test x"$with_libbsd" = x"yes"; then
232 AC_MSG_FAILURE([*** no libbsd support found])
233 fi
234 with_libbsd=no
235 ])
236fi
e01aeb55 237
47bbc5f3 238# setproctitle may have an _init function
1e0d651f
VB
239AC_REPLACE_FUNCS([setproctitle])
240AC_CHECK_FUNCS([setproctitle_init])
554d650d
VB
241# Other functions
242AC_REPLACE_FUNCS([strlcpy
243 strnlen
244 strndup
8a378b16 245 strtonum
af828c47 246 getline
554d650d
VB
247 asprintf
248 vsyslog
249 daemon])
250# Optional functions
8dab5698 251AC_CHECK_FUNCS([setresuid setresgid])
e66b7f34 252
d0a03372
VB
253# Check for res_init. On OSX, res_init is a symbol in libsystem_info
254# and a macro in resolv.h. We need to ensure we test with resolv.h.
255m4_pushdef([AC_LANG_CALL(C)], [
256 AC_LANG_PROGRAM([$1
257@%:@include <resolv.h>], [return $2 ();])])
258AC_SEARCH_LIBS([res_init], resolv bind,
259 AC_DEFINE([HAVE_RES_INIT], 1,
260 [Define to indicate that res_init() exists]))
261m4_popdef([AC_LANG_CALL(C)])
e66b7f34 262
8e4b9031
VB
263AC_CACHE_SAVE
264
d38eae28 265## Unit tests wich check
a8dd1894 266PKG_CHECK_MODULES([check], [check >= 0.9.4], [have_check=yes], [have_check=no])
43c02e7b 267
13181ede 268# Third-party libraries
c461e5da 269lldp_CHECK_LIBEVENT
3a7923cb 270lldp_CHECK_LIBCAP
e5c94652 271
135ff0f7
VB
272# Compatibility with pkg.m4 < 0.27
273m4_ifdef([PKG_INSTALLDIR], [PKG_INSTALLDIR],
274 [AC_ARG_WITH([pkgconfigdir],
275 [AS_HELP_STRING([--with-pkgconfigdir],
276 [install directory for *.pc pkg-config file])],
277 [],[with_pkgconfigdir='$(libdir)/pkgconfig'])
278 AC_SUBST([pkgconfigdir], [${with_pkgconfigdir}])])
279
d38eae28
VB
280#######################
281### Options
43c02e7b 282
35f6f4fb
VB
283# Readline
284AC_ARG_WITH([readline],
285 AS_HELP_STRING(
286 [--with-readline],
fa9b12c5 287 [Enable the use of readline-like library @<:@default=auto@:>@]),
35f6f4fb 288 [],
fa9b12c5 289 [with_readline=auto])
35f6f4fb 290if test x"$with_readline" != x"no"; then
23509dc0 291 AX_LIB_READLINE_LLDPD
fa9b12c5 292 if test x"$with_readline" != x"check" -a x"$with_readline" != x"auto"; then
35f6f4fb
VB
293 if test x"$ax_cv_lib_readline" = x"no"; then
294 AC_MSG_FAILURE([*** no readline support found])
295 fi
296 fi
297else
298 ax_cv_lib_readline="no"
299fi
300
d38eae28
VB
301# SNMP
302AC_ARG_WITH([snmp],
303 AS_HELP_STRING(
304 [--with-snmp],
fa9b12c5
VB
305 [Enable the use of SNMP @<:@default=no@:>@]),
306 [],
307 [with_snmp=no])
308lldp_CHECK_SNMP
315587ef 309
8beb9a73 310# XML
1480ce74 311AC_ARG_WITH([xml],
00e40dba 312 AS_HELP_STRING(
1480ce74 313 [--with-xml],
dd8c9fe3 314 [Enable XML output via libxml2 @<:@default=auto@:>@]),
fa9b12c5 315 [],
dd8c9fe3 316 [with_xml=auto])
fa9b12c5 317lldp_CHECK_XML2
1480ce74 318
06987a24 319# JSON (built-in)
20edc61c 320lldp_ARG_ENABLE([json0], [use of pre-0.9.2 JSON/json-c format], [no])
8b7150e4 321
00e40dba
VB
322# Seccomp
323AC_ARG_WITH([seccomp],
324 AS_HELP_STRING(
325 [--with-seccomp],
5472ac18 326 [Enable seccomp support (with libseccomp, experimental) @<:@default=no@:>@]),
00e40dba
VB
327 [],
328 [with_seccomp=no])
329lldp_CHECK_SECCOMP
330
c3f85560 331# OS X launchd support
4dfe31fd
VB
332lldp_ARG_WITH([launchddaemonsdir], [Directory for launchd configuration file (OSX)],
333 [/Library/LaunchDaemons])
334AC_SUBST([launchddaemonsdir], [$with_launchddaemonsdir])
335AM_CONDITIONAL(HAVE_LAUNCHDDAEMONSDIR,
336 [test -n "$with_launchddaemonsdir" -a "x$with_launchddaemonsdir" != xno ])
9d1524b7
VB
337
338# Systemd
339lldp_ARG_WITH([systemdsystemunitdir], [Directory for systemd service files],
29760896 340 [$($PKG_CONFIG --variable=systemdsystemunitdir systemd 2> /dev/null)])
4dfe31fd
VB
341AC_SUBST([systemdsystemunitdir], [$with_systemdsystemunitdir])
342AM_CONDITIONAL(HAVE_SYSTEMDSYSTEMUNITDIR,
343 [test -n "$with_systemdsystemunitdir" -a "x$with_systemdsystemunitdir" != xno ])
c3f85560 344
a9f77488
VB
345# sysusers
346lldp_ARG_WITH([sysusersdir], [Directory for sysusers files],
347 [$($PKG_CONFIG --variable=sysusersdir systemd 2> /dev/null)])
348AC_SUBST([sysusersdir], [$with_sysusersdir])
349AM_CONDITIONAL(HAVE_SYSUSERSDIR,
350 [test -n "$with_sysusersdir" -a "x$with_sysusersdir" != xno ])
351
cd7ee899
VB
352# AppArmor
353lldp_ARG_WITH([apparmordir], [Directory for AppArmor profiles (Linux)],
354 [no])
355AC_SUBST([apparmordir], [$with_apparmordir])
356AM_CONDITIONAL(HAVE_APPARMORDIR,
2b70dd95 357 [test -n "$with_apparmordir" -a "x$with_apparmordir" != xno ])
cd7ee899 358
bdfe4193
VB
359# Systemtap/DTrace
360lldp_SYSTEMTAP
361
d38eae28 362# Privsep settings
71a7dbb3 363lldp_ARG_ENABLE([privsep], [Privilege separation], [yes])
d38eae28
VB
364lldp_ARG_WITH([privsep-user], [Which user to use for privilege separation], [_lldpd])
365lldp_ARG_WITH([privsep-group], [Which group to use for privilege separation], [_lldpd])
9a4ed64a
VB
366
367# Directories
368dnl On autoconf 2.69 and before, runstatedir is not configurable, let be able to use it anyway
369if test "x$runstatedir" = x; then
370 AC_SUBST([runstatedir], ['${localstatedir}/run'])
371fi
372lldp_ARG_WITH([privsep-chroot], [Which directory to use to chroot lldpd], [${runstatedir}/lldpd])
3a3a3623 373lldp_ARG_WITH([lldpd-ctl-socket], [Path to socket for communication with lldpd], [${runstatedir}/lldpd.socket])
5133ce2f 374lldp_ARG_WITH([lldpd-pid-file], [Path to lldpd PID file], [${runstatedir}/lldpd.pid])
89840df0 375
568a0d73 376# Netlink
48292d82
VB
377lldp_ARG_WITH_UNQUOTED([netlink-max-receive-bufsize], [Netlink maximum receive buffer size], [1024*1024])
378lldp_ARG_WITH_UNQUOTED([netlink-receive-bufsize], [Netlink initial receive buffer size], [0])
568a0d73
VB
379lldp_ARG_WITH_UNQUOTED([netlink-send-bufsize], [Netlink send buffer size], [0])
380
d38eae28
VB
381# CDP/FDP/EDP/SONMP
382lldp_ARG_ENABLE([cdp], [Cisco Discovery Protocol], [yes])
383lldp_ARG_ENABLE([fdp], [Foundry Discovery Protocol], [yes])
384lldp_ARG_ENABLE([edp], [Extreme Discovery Protocol], [yes])
385lldp_ARG_ENABLE([sonmp], [SynOptics Network Management Protocol], [yes])
a1347cd8 386
d38eae28
VB
387# LLDPMED/Dot1/Dot3
388lldp_ARG_ENABLE([lldpmed], [LLDP-MED extension], [yes])
389lldp_ARG_ENABLE([dot1], [Dot1 extension (VLAN stuff)], [yes])
390lldp_ARG_ENABLE([dot3], [Dot3 extension (PHY stuff)], [yes])
fb1b78bb 391lldp_ARG_ENABLE([custom], [Custom TLV support], [yes])
a1347cd8 392
184bd199 393# Oldies
2472bfda 394MIN_LINUX_KERNEL_VERSION=2.6.39
d9fdc886 395lldp_ARG_ENABLE([oldies], [compatibility with Linux kernel older than 2.6.39], [no])
2472bfda
VB
396if test x"$os" = x"Linux"; then
397 if test x"$enable_oldies" = x"no"; then
398 AC_DEFINE_UNQUOTED(MIN_LINUX_KERNEL_VERSION, "[$MIN_LINUX_KERNEL_VERSION]", [Minimal Linux kernel version required])
399 else
400 AC_DEFINE(MIN_LINUX_KERNEL_VERSION, "2.6.11", [Minimal kernel version required])
401 fi
402fi
184bd199 403
57231d32
VB
404AX_BUILD_DATE_EPOCH(BUILD_DATE, "%FT%TZ", [BUILD_DATE="(unknown)"])
405AC_DEFINE_UNQUOTED(BUILD_DATE, "[$BUILD_DATE]", [Build date and time])
69d92462
OO
406
407dnl per reproducible-builds.org check SOURCE_DATE_EPOCH
408dnl
409if test -z "${SOURCE_DATE_EPOCH+set}" ; then
efa6a7a3
VB
410AC_DEFINE_UNQUOTED(LLDP_CC, "[$CC $LLDP_CFLAGS $LLDP_CPPFLAGS $CFLAGS $CPPFLAGS]", [C compiler command])
411AC_DEFINE_UNQUOTED(LLDP_LD, "[$LD $LLDP_LDFLAGS $LLDP_BIN_LDFLAGS $LDFLAGS $LIBS]", [Linker compiler command])
69d92462
OO
412else
413AC_DEFINE_UNQUOTED(LLDP_CC, "[C compiler command is not available for reproducible builds]", [C compiler command])
414AC_DEFINE_UNQUOTED(LLDP_LD, "[Linker compiler command is not available for reproducible builds]", [Linker compiler command])
415fi
efa6a7a3 416
d38eae28
VB
417#######################
418# Output results
8d92800b
VB
419AC_SUBST([LLDP_CFLAGS])
420AC_SUBST([LLDP_CPPFLAGS])
421AC_SUBST([LLDP_LDFLAGS])
f42b8214 422AC_SUBST([LLDP_BIN_LDFLAGS])
14d35a08 423AM_CONDITIONAL([BUILD_FUZZER], [test x"$fuzzer" != x])
d38eae28
VB
424AM_CONDITIONAL([HAVE_CHECK], [test x"$have_check" = x"yes"])
425AM_CONDITIONAL([USE_SNMP], [test x"$with_snmp" = x"yes"])
1480ce74 426AM_CONDITIONAL([USE_XML], [test x"$with_xml" = x"yes"])
00e40dba 427AM_CONDITIONAL([USE_SECCOMP], [test x"$with_seccomp" = x"yes"])
e320a274
VB
428dnl If old default of AR_FLAGS is otherwise being used (because of older automake),
429dnl replace it with one without 'u'
430if test "x$AR_FLAGS" = "xcru" ; then
431 AR_FLAGS="cr"
432fi
43c02e7b 433AC_OUTPUT
d38eae28 434
4c1a8c61 435if test x"$LIBEVENT_EMBEDDED" = x; then
e5c94652
VB
436 libevent=system
437else
438 libevent=embedded
439fi
440
d38eae28
VB
441cat <<EOF
442
443------------------ Summary ------------------
444 $PACKAGE_NAME version $PACKAGE_VERSION
91e0280a 445 OS.............: $os
d38eae28 446 Prefix.........: $prefix
8d92800b 447 C Compiler.....: $CC $LLDP_CFLAGS $LLDP_CPPFLAGS $CFLAGS $CPPFLAGS
f42b8214 448 Linker.........: $LD $LLDP_LDFLAGS $LLDP_BIN_LDFLAGS $LDFLAGS $LIBS
e5c94652 449 Libevent.......: $libevent
35f6f4fb 450 Readline.......: ${ax_cv_lib_readline}
457d06aa 451
d38eae28
VB
452 Optional features:
453 SNMP support...: ${with_snmp-no}
454 CDP............: $enable_cdp
455 FDP............: $enable_fdp
456 EDP............: $enable_edp
457 SONMP..........: $enable_sonmp
458 LLDPMED........: $enable_lldpmed
459 DOT1...........: $enable_dot1
460 DOT3...........: $enable_dot3
fb1b78bb 461 CUSTOM.........: $enable_custom
1480ce74 462 XML output.....: ${with_xml-no}
184bd199 463 Oldies support.: $enable_oldies
00e40dba 464 seccomp........: ${with_seccomp-no}
ff3dcc4a 465 libbsd.........: ${with_libbsd-no}
457d06aa 466
71a7dbb3
VB
467 Privilege separation:
468 Enabled........: $enable_privsep
08841844
VB
469 User/group.....: ${with_privsep_user}/${with_privsep_group}
470 Chroot.........: ${with_privsep_chroot}
4262ca0c
VB
471
472 Instrumentation (for devs only):
473 Sanitizers.....: ${sanitizers:-none}
474 Coverage.......: ${gcov}
457d06aa
VB
475------------- Compiler version --------------
476$($CC --version || true)
477-------------- Linker version ---------------
478$($LD --version || true)
d38eae28
VB
479---------------------------------------------
480
481Check the above options and compile with:
482 ${MAKE-make}
483
484EOF