diff mbox series

src: fix build with older glibc

Message ID 381eaa40735385a1a60e5ab0a7daf4bb847fc2ab.1518180590.git.baruch@tkos.co.il
State Accepted
Delegated to: Pablo Neira
Headers show
Series src: fix build with older glibc | expand

Commit Message

Baruch Siach Feb. 9, 2018, 12:49 p.m. UTC
glibc before 2.19 missed the definition of IPPROTO_MH. This leads to
build failure:

parser_bison.y: In function 'nft_parse':
parser_bison.y:3793:21: error: 'IPPROTO_MH' undeclared (first use in this function)
    | MH { $$ = IPPROTO_MH; }
                     ^

Since we have a local definition of IPPROTO_MH in headers.h use that to
fix the build.

Signed-off-by: Baruch Siach <baruch@tkos.co.il>
---
 src/parser_bison.y | 1 +
 1 file changed, 1 insertion(+)
diff mbox series

Patch

diff --git a/src/parser_bison.y b/src/parser_bison.y
index 2e79109f4da3..578bfdc10429 100644
--- a/src/parser_bison.y
+++ b/src/parser_bison.y
@@ -29,6 +29,7 @@ 
 #include <rule.h>
 #include <statement.h>
 #include <expression.h>
+#include <headers.h>
 #include <utils.h>
 #include <parser.h>
 #include <erec.h>