From: Ondrej Zajicek (work) Date: Tue, 30 May 2017 12:43:49 +0000 (+0200) Subject: Workaround for older bisons X-Git-Tag: v2.0.0~68^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4fec43067e27c7a6c20a6ef9909bef0238984a64;p=thirdparty%2Fbird.git Workaround for older bisons --- diff --git a/conf/cf-lex.l b/conf/cf-lex.l index 620c119c8..66be38113 100644 --- a/conf/cf-lex.l +++ b/conf/cf-lex.l @@ -58,6 +58,11 @@ struct keyword { #include "conf/keywords.h" +/* Could be defined by Bison in cf-parse.tab.h, inteferes with SYM hash */ +#ifdef SYM +#undef SYM +#endif + static uint cf_hash(byte *c);