From 3974aaba691cfc3681b71667ddd5c65a3d7e74ac Mon Sep 17 00:00:00 2001 From: Roger Meier Date: Mon, 14 Jul 2014 20:22:12 +0200 Subject: [PATCH] THRIFT-2602 Fix missing dist files - set bison to 2.5 - include "config.h" within thriftl.ll Patch: Roger Meier --- compiler/cpp/src/thriftl.ll | 2 ++ configure.ac | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/compiler/cpp/src/thriftl.ll b/compiler/cpp/src/thriftl.ll index 5afc6011..1fe6b2ef 100644 --- a/compiler/cpp/src/thriftl.ll +++ b/compiler/cpp/src/thriftl.ll @@ -52,6 +52,8 @@ #ifdef _MSC_VER #include "windows/config.h" +#else +#include "config.h" #endif #include "main.h" #include "globals.h" diff --git a/configure.ac b/configure.ac index 065ac68c..5af20de5 100755 --- a/configure.ac +++ b/configure.ac @@ -88,7 +88,7 @@ AC_PROG_CXX AC_PROG_INSTALL AC_PROG_LIBTOOL AC_PROG_MAKE_SET -AC_PROG_BISON +AC_PROG_BISON(2.5) AC_PROG_YACC AC_PROG_LEX AM_PROG_LEX -- 2.17.1