]> git.ipfire.org Git - thirdparty/lldpd.git/blame - configure.ac
lib: fix memory leak when handling MED location data
[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
8AC_PREREQ([2.64])
4593c0dc 9
4593c0dc 10AC_INIT([lldpd],
a888bea6 11 [m4_esyscmd_s([./get-version])],
493b0d42
VB
12 [https://github.com/vincentbernat/lldpd/issues],
13 [lldpd],
14 [http://vincentbernat.github.io/lldpd/])
4593c0dc 15
4b292b55 16AC_CONFIG_SRCDIR([src/log.c])
43c02e7b 17AC_CONFIG_HEADER([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
84b41218 30AM_INIT_AUTOMAKE([foreign subdir-objects -Wall -Werror])
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
6c586123 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
223227c8 51AC_PROG_CXX
d38eae28 52AM_PROG_CC_C_O
f5bc67ee 53AC_PROG_LIBTOOL
fe80711e 54AC_PROG_LN_S
7ba4a183 55AC_PROG_EGREP
140e34f0 56AC_PROG_AWK
2acc1418 57
4b292b55
VB
58# Doxygen
59DX_HTML_FEATURE(ON)
60DX_DOT_FEATURE(OFF)
61DX_CHM_FEATURE(OFF)
62DX_CHI_FEATURE(OFF)
63DX_MAN_FEATURE(OFF)
64DX_RTF_FEATURE(OFF)
65DX_XML_FEATURE(OFF)
66DX_PDF_FEATURE(ON)
67DX_PS_FEATURE(OFF)
68DX_INIT_DOXYGEN([lldpd], [doxygen.cfg], [doxygen])
69
45e89c8c 70# Check some compiler flags
f42b8214 71AX_CFLAGS_GCC_OPTION([-Wunknown-warning-option], [LLDP_CFLAGS])
8d92800b
VB
72AX_CFLAGS_GCC_OPTION([-fdiagnostics-show-option], [LLDP_CFLAGS])
73AX_CFLAGS_GCC_OPTION([-fdiagnostics-color=auto], [LLDP_CFLAGS])
74AX_CFLAGS_GCC_OPTION([-pipe], [LLDP_CFLAGS])
75AX_CFLAGS_GCC_OPTION([-Wall], [LLDP_CFLAGS])
76AX_CFLAGS_GCC_OPTION([-W], [LLDP_CFLAGS])
77AX_CFLAGS_GCC_OPTION([-Wextra], [LLDP_CFLAGS])
78AX_CFLAGS_GCC_OPTION([-Wformat], [LLDP_CFLAGS])
79AX_CFLAGS_GCC_OPTION([-Wformat-security], [LLDP_CFLAGS])
80AX_CFLAGS_GCC_OPTION([-Wfatal-errors], [LLDP_CFLAGS])
81AX_CFLAGS_GCC_OPTION([-Wcast-align], [LLDP_CFLAGS])
09f0af1d
ALG
82AX_CFLAGS_GCC_OPTION([-Wheader-guard], [LLDP_CFLAGS])
83AX_CFLAGS_GCC_OPTION([-Wdocumentation], [LLDP_CFLAGS])
8d92800b 84AX_CFLAGS_GCC_OPTION([-Winline], [LLDP_CFLAGS])
8d92800b 85AX_CFLAGS_GCC_OPTION([-fno-omit-frame-pointer], [LLDP_CFLAGS])
8d92800b
VB
86AX_CFLAGS_GCC_OPTION([-Wno-unused-parameter], [LLDP_CFLAGS])
87AX_CFLAGS_GCC_OPTION([-Wno-missing-field-initializers], [LLDP_CFLAGS])
88AX_CFLAGS_GCC_OPTION([-Wno-sign-compare], [LLDP_CFLAGS]) dnl Should be fixed later
89AX_LDFLAGS_OPTION([-Wl,-z,relro], [LLDP_LDFLAGS])
90AX_LDFLAGS_OPTION([-Wl,-z,now], [LLDP_LDFLAGS])
45e89c8c 91
56663327
VB
92# Hardening
93AC_ARG_ENABLE([hardening],
94 [AS_HELP_STRING([--enable-hardening],
d2a01934 95 [Enable compiler and linker options to frustrate memory corruption exploits @<:@default=yes@:>@])],
56663327
VB
96 [hardening="$enableval"],
97 [hardening="yes"])
98
99if test x"$hardening" != x"no"; then
100 AX_CFLAGS_GCC_OPTION([-fstack-protector], [LLDP_CFLAGS])
101 AX_CFLAGS_GCC_OPTION([-fstack-protector-all], [LLDP_CFLAGS])
102 AX_CFLAGS_GCC_OPTION([-fstack-protector-strong], [LLDP_CFLAGS])
103 AX_CFLAGS_GCC_OPTION([-D_FORTIFY_SOURCE=2], [LLDP_CPPFLAGS])
104 AX_CFLAGS_GCC_OPTION([-fPIE], [LLDP_CFLAGS])
f42b8214
VB
105 AX_LDFLAGS_OPTION([-fPIE -pie], [LLDP_BIN_LDFLAGS],
106 [AX_LDFLAGS_OPTION([-fPIE -Wl,-pie], [LLDP_BIN_LDFLAGS])])
56663327
VB
107fi
108
e12c2365
VB
109# OS
110lldp_CHECK_OS
3dc1eb8c 111lldp_CFLAGS_OS
24b8d79f 112
8e4b9031
VB
113AC_CACHE_SAVE
114
d38eae28
VB
115# Checks for header files.
116AC_HEADER_RESOLV
396cfdfe 117AC_CHECK_HEADERS([valgrind/valgrind.h])
c3e340b6 118lldp_CHECK_STDINT
43c02e7b 119
8e4b9031
VB
120AC_CACHE_SAVE
121
43c02e7b 122# Checks for typedefs, structures, and compiler characteristics.
6bb9c4e0 123lldp_CHECK___PROGNAME
dd1d33cf 124lldp_CHECK_ALIGNOF
43c02e7b
VB
125
126# Checks for library functions.
4b292b55 127AC_CONFIG_LIBOBJ_DIR([src/compat])
d38eae28
VB
128AC_FUNC_MALLOC
129AC_FUNC_REALLOC
45bf0bd0 130AC_FUNC_FORK
554d650d 131# setproctitle (maybe through libbsd)
66879d46 132AC_SEARCH_LIBS([setproctitle], [util bsd])
1e0d651f
VB
133AC_REPLACE_FUNCS([setproctitle])
134AC_CHECK_FUNCS([setproctitle_init])
554d650d
VB
135# Other functions
136AC_REPLACE_FUNCS([strlcpy
137 strnlen
138 strndup
139 fgetln
140 asprintf
141 vsyslog
142 daemon])
143# Optional functions
8dab5698 144AC_CHECK_FUNCS([setresuid setresgid])
e66b7f34 145
66879d46
VB
146case " $LIBS " in
147 *\ -lbsd\ *)
148 AC_DEFINE(HAVE_LIBBSD, 1, [Define if libbsd is used])
149 ;;
150esac
151
d0a03372
VB
152# Check for res_init. On OSX, res_init is a symbol in libsystem_info
153# and a macro in resolv.h. We need to ensure we test with resolv.h.
154m4_pushdef([AC_LANG_CALL(C)], [
155 AC_LANG_PROGRAM([$1
156@%:@include <resolv.h>], [return $2 ();])])
157AC_SEARCH_LIBS([res_init], resolv bind,
158 AC_DEFINE([HAVE_RES_INIT], 1,
159 [Define to indicate that res_init() exists]))
160m4_popdef([AC_LANG_CALL(C)])
e66b7f34 161
8e4b9031
VB
162AC_CACHE_SAVE
163
d38eae28
VB
164## Unit tests wich check
165PKG_CHECK_MODULES([CHECK], [check >= 0.9.4], [have_check=yes], [have_check=no])
43c02e7b 166
e5c94652 167# Libevent
c461e5da 168lldp_CHECK_LIBEVENT
e5c94652 169
135ff0f7
VB
170# Compatibility with pkg.m4 < 0.27
171m4_ifdef([PKG_INSTALLDIR], [PKG_INSTALLDIR],
172 [AC_ARG_WITH([pkgconfigdir],
173 [AS_HELP_STRING([--with-pkgconfigdir],
174 [install directory for *.pc pkg-config file])],
175 [],[with_pkgconfigdir='$(libdir)/pkgconfig'])
176 AC_SUBST([pkgconfigdir], [${with_pkgconfigdir}])])
177
d38eae28
VB
178#######################
179### Options
43c02e7b 180
35f6f4fb
VB
181# Readline
182AC_ARG_WITH([readline],
183 AS_HELP_STRING(
184 [--with-readline],
fa9b12c5 185 [Enable the use of readline-like library @<:@default=auto@:>@]),
35f6f4fb 186 [],
fa9b12c5 187 [with_readline=auto])
35f6f4fb
VB
188if test x"$with_readline" != x"no"; then
189 AX_LIB_READLINE
fa9b12c5 190 if test x"$with_readline" != x"check" -a x"$with_readline" != x"auto"; then
35f6f4fb
VB
191 if test x"$ax_cv_lib_readline" = x"no"; then
192 AC_MSG_FAILURE([*** no readline support found])
193 fi
194 fi
195else
196 ax_cv_lib_readline="no"
197fi
198
d38eae28
VB
199# SNMP
200AC_ARG_WITH([snmp],
201 AS_HELP_STRING(
202 [--with-snmp],
fa9b12c5
VB
203 [Enable the use of SNMP @<:@default=no@:>@]),
204 [],
205 [with_snmp=no])
206lldp_CHECK_SNMP
315587ef 207
8beb9a73 208# XML
1480ce74 209AC_ARG_WITH([xml],
00e40dba 210 AS_HELP_STRING(
1480ce74 211 [--with-xml],
dd8c9fe3 212 [Enable XML output via libxml2 @<:@default=auto@:>@]),
fa9b12c5 213 [],
dd8c9fe3 214 [with_xml=auto])
fa9b12c5 215lldp_CHECK_XML2
1480ce74 216
8b7150e4
VB
217# JSON
218AC_ARG_WITH([json],
00e40dba 219 AS_HELP_STRING(
8b7150e4 220 [--with-json],
dd8c9fe3 221 [Enable JSON output via janson or json-c @<:@default=auto@:>@]),
fa9b12c5 222 [],
dd8c9fe3 223 [with_json=auto])
fa9b12c5
VB
224if test x"$with_json" = x"yes" -o x"$with_json" = x"auto"; then
225 _with_json="$with_json"
226 with_json=auto
227 lldp_CHECK_JANSSON
228 if test x"$with_json" = x"no"; then
229 with_json=auto
230 lldp_CHECK_JSONC
231 fi
232 if test x"$with_json" = x"no" -a x"$_with_json" = x"yes"; then
233 AC_MSG_FAILURE([*** no JSON support found])
234 fi
235else
8b7150e4 236 lldp_CHECK_JANSSON
8ff14a6d 237 lldp_CHECK_JSONC
8b7150e4
VB
238fi
239
00e40dba
VB
240# Seccomp
241AC_ARG_WITH([seccomp],
242 AS_HELP_STRING(
243 [--with-seccomp],
244 [Enable seccomp support (with libseccomp) @<:@default=no@:>@]),
245 [],
246 [with_seccomp=no])
247lldp_CHECK_SECCOMP
248
c3f85560 249# OS X launchd support
4dfe31fd
VB
250lldp_ARG_WITH([launchddaemonsdir], [Directory for launchd configuration file (OSX)],
251 [/Library/LaunchDaemons])
252AC_SUBST([launchddaemonsdir], [$with_launchddaemonsdir])
253AM_CONDITIONAL(HAVE_LAUNCHDDAEMONSDIR,
254 [test -n "$with_launchddaemonsdir" -a "x$with_launchddaemonsdir" != xno ])
9d1524b7
VB
255
256# Systemd
257lldp_ARG_WITH([systemdsystemunitdir], [Directory for systemd service files],
29760896 258 [$($PKG_CONFIG --variable=systemdsystemunitdir systemd 2> /dev/null)])
4dfe31fd
VB
259AC_SUBST([systemdsystemunitdir], [$with_systemdsystemunitdir])
260AM_CONDITIONAL(HAVE_SYSTEMDSYSTEMUNITDIR,
261 [test -n "$with_systemdsystemunitdir" -a "x$with_systemdsystemunitdir" != xno ])
c3f85560 262
a9f77488
VB
263# sysusers
264lldp_ARG_WITH([sysusersdir], [Directory for sysusers files],
265 [$($PKG_CONFIG --variable=sysusersdir systemd 2> /dev/null)])
266AC_SUBST([sysusersdir], [$with_sysusersdir])
267AM_CONDITIONAL(HAVE_SYSUSERSDIR,
268 [test -n "$with_sysusersdir" -a "x$with_sysusersdir" != xno ])
269
bdfe4193
VB
270# Systemtap/DTrace
271lldp_SYSTEMTAP
272
d38eae28 273# Privsep settings
71a7dbb3 274lldp_ARG_ENABLE([privsep], [Privilege separation], [yes])
d38eae28
VB
275lldp_ARG_WITH([privsep-user], [Which user to use for privilege separation], [_lldpd])
276lldp_ARG_WITH([privsep-group], [Which group to use for privilege separation], [_lldpd])
9a4ed64a
VB
277
278# Directories
279dnl On autoconf 2.69 and before, runstatedir is not configurable, let be able to use it anyway
280if test "x$runstatedir" = x; then
281 AC_SUBST([runstatedir], ['${localstatedir}/run'])
282fi
283lldp_ARG_WITH([privsep-chroot], [Which directory to use to chroot lldpd], [${runstatedir}/lldpd])
3a3a3623 284lldp_ARG_WITH([lldpd-ctl-socket], [Path to socket for communication with lldpd], [${runstatedir}/lldpd.socket])
5133ce2f 285lldp_ARG_WITH([lldpd-pid-file], [Path to lldpd PID file], [${runstatedir}/lldpd.pid])
89840df0 286
d38eae28
VB
287# CDP/FDP/EDP/SONMP
288lldp_ARG_ENABLE([cdp], [Cisco Discovery Protocol], [yes])
289lldp_ARG_ENABLE([fdp], [Foundry Discovery Protocol], [yes])
290lldp_ARG_ENABLE([edp], [Extreme Discovery Protocol], [yes])
291lldp_ARG_ENABLE([sonmp], [SynOptics Network Management Protocol], [yes])
a1347cd8 292
d38eae28
VB
293# LLDPMED/Dot1/Dot3
294lldp_ARG_ENABLE([lldpmed], [LLDP-MED extension], [yes])
295lldp_ARG_ENABLE([dot1], [Dot1 extension (VLAN stuff)], [yes])
296lldp_ARG_ENABLE([dot3], [Dot3 extension (PHY stuff)], [yes])
fb1b78bb 297lldp_ARG_ENABLE([custom], [Custom TLV support], [yes])
a1347cd8 298
184bd199 299# Oldies
fda729fd 300lldp_ARG_ENABLE([oldies], [compatibility with Linux kernel older than 2.6.18], [no])
184bd199 301
d38eae28
VB
302#######################
303# Output results
8d92800b
VB
304AC_SUBST([LLDP_CFLAGS])
305AC_SUBST([LLDP_CPPFLAGS])
306AC_SUBST([LLDP_LDFLAGS])
f42b8214 307AC_SUBST([LLDP_BIN_LDFLAGS])
d38eae28
VB
308AM_CONDITIONAL([HAVE_CHECK], [test x"$have_check" = x"yes"])
309AM_CONDITIONAL([USE_SNMP], [test x"$with_snmp" = x"yes"])
1480ce74 310AM_CONDITIONAL([USE_XML], [test x"$with_xml" = x"yes"])
8ff14a6d
MS
311AM_CONDITIONAL([USE_JSON], [test x"$with_json" = x"json-c" || test -x"$with_json" = x"jansson"])
312AM_CONDITIONAL([USE_JANSSON], [test x"$with_json" = x"jansson"])
313AM_CONDITIONAL([USE_JSONC], [test x"$with_json" = x"json-c"])
00e40dba 314AM_CONDITIONAL([USE_SECCOMP], [test x"$with_seccomp" = x"yes"])
43c02e7b 315AC_OUTPUT
d38eae28 316
4c1a8c61 317if test x"$LIBEVENT_EMBEDDED" = x; then
e5c94652
VB
318 libevent=system
319else
320 libevent=embedded
321fi
322
d38eae28
VB
323cat <<EOF
324
325------------------ Summary ------------------
326 $PACKAGE_NAME version $PACKAGE_VERSION
91e0280a 327 OS.............: $os
d38eae28 328 Prefix.........: $prefix
8d92800b 329 C Compiler.....: $CC $LLDP_CFLAGS $LLDP_CPPFLAGS $CFLAGS $CPPFLAGS
f42b8214 330 Linker.........: $LD $LLDP_LDFLAGS $LLDP_BIN_LDFLAGS $LDFLAGS $LIBS
e5c94652 331 Libevent.......: $libevent
35f6f4fb 332 Readline.......: ${ax_cv_lib_readline}
d38eae28
VB
333 Optional features:
334 SNMP support...: ${with_snmp-no}
335 CDP............: $enable_cdp
336 FDP............: $enable_fdp
337 EDP............: $enable_edp
338 SONMP..........: $enable_sonmp
339 LLDPMED........: $enable_lldpmed
340 DOT1...........: $enable_dot1
341 DOT3...........: $enable_dot3
fb1b78bb 342 CUSTOM.........: $enable_custom
1480ce74 343 XML output.....: ${with_xml-no}
8b7150e4 344 JSON output....: ${with_json-no}
184bd199 345 Oldies support.: $enable_oldies
00e40dba 346 seccomp........: ${with_seccomp-no}
71a7dbb3
VB
347 Privilege separation:
348 Enabled........: $enable_privsep
08841844
VB
349 User/group.....: ${with_privsep_user}/${with_privsep_group}
350 Chroot.........: ${with_privsep_chroot}
d38eae28
VB
351---------------------------------------------
352
353Check the above options and compile with:
354 ${MAKE-make}
355
356EOF