diff options
author | Donald Sharp <sharpd@cumulusnetworks.com> | 2017-05-04 16:24:25 +0200 |
---|---|---|
committer | Donald Sharp <sharpd@cumulusnetworks.com> | 2017-05-04 16:32:41 +0200 |
commit | 704ef00bb5ccd6f389ee938ebc6819ce40161384 (patch) | |
tree | 888be4caef6d9d4ebfcdbf195cb966ba82949160 /configure.ac | |
parent | Merge pull request #451 from opensourcerouting/ospfd-fix-cmdstr (diff) | |
download | frr-704ef00bb5ccd6f389ee938ebc6819ce40161384.tar.xz frr-704ef00bb5ccd6f389ee938ebc6819ce40161384.zip |
lib: Rename HAVE_POLL to prevent conflicting #defines
Rename HAVE_POLL to HAVE_POLL_CALL, when compiling with
snmp and poll enabled this was causing issues.
Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
Diffstat (limited to 'configure.ac')
-rwxr-xr-x | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 96052c6f6..d9bed28c9 100755 --- a/configure.ac +++ b/configure.ac @@ -334,7 +334,7 @@ if test "${enable_rr_semantics}" != "no" ; then fi if test "${enable_poll}" = "yes" ; then - AC_DEFINE(HAVE_POLL,,Compile systemd support in) + AC_DEFINE(HAVE_POLL_CALL,,Compile systemd support in) fi dnl ---------- |