summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--config/antlr.m45
-rw-r--r--src/parser/antlr_input.cpp6
-rw-r--r--src/parser/memory_mapped_input_buffer.cpp2
3 files changed, 5 insertions, 8 deletions
diff --git a/config/antlr.m4 b/config/antlr.m4
index b376c0ecc..27e9200e5 100644
--- a/config/antlr.m4
+++ b/config/antlr.m4
@@ -94,7 +94,7 @@ AC_DEFUN([AC_LIB_ANTLR],[
],
[
AC_MSG_RESULT([found it (must be antlr3 3.2 or similar)])
- CVC4_ANTLR3_OLD_INPUT_STREAM=0
+ CVC4CPPFLAGS="${CVC4CPPFLAGS:+$CVC4CPPFLAGS }-DCVC4_ANTLR3_OLD_INPUT_STREAM"
],
[
AC_MSG_RESULT(failed)
@@ -111,7 +111,6 @@ AC_DEFUN([AC_LIB_ANTLR],[
],
[
AC_MSG_RESULT([found it (must be antlr3 3.4 or similar)])
- CVC4_ANTLR3_OLD_INPUT_STREAM=0
],
[
AC_MSG_ERROR([cannot figure out how to create an antlr3 input stream, bailing..])
@@ -120,8 +119,6 @@ AC_DEFUN([AC_LIB_ANTLR],[
]
)
- AC_DEFINE_UNQUOTED(CVC4_ANTLR3_OLD_INPUT_STREAM, [$CVC4_ANTLR3_OLD_INPUT_STREAM], [Defined to 1 if we have libantlr3c v3.2 or equivalent.])
-
# Return the old compile variables and pop the language.
LIBS="$OLD_LIBS"
CPPFLAGS="$OLD_CPPFLAGS"
diff --git a/src/parser/antlr_input.cpp b/src/parser/antlr_input.cpp
index 6ec1c5846..ec3b7077e 100644
--- a/src/parser/antlr_input.cpp
+++ b/src/parser/antlr_input.cpp
@@ -69,7 +69,7 @@ AntlrInputStream::newFileInputStream(const std::string& name,
input = MemoryMappedInputBufferNew(name);
} else {
// libantlr3c v3.2 isn't source-compatible with v3.4
-#if CVC4_ANTLR3_OLD_INPUT_STREAM
+#ifdef CVC4_ANTLR3_OLD_INPUT_STREAM
input = antlr3AsciiFileStreamNew((pANTLR3_UINT8) name.c_str());
#else /* CVC4_ANTLR3_OLD_INPUT_STREAM */
input = antlr3FileStreamNew((pANTLR3_UINT8) name.c_str(), ANTLR3_ENC_8BIT);
@@ -117,7 +117,7 @@ AntlrInputStream::newStreamInputStream(std::istream& input,
}
/* Create an ANTLR input backed by the buffer. */
-#if CVC4_ANTLR3_OLD_INPUT_STREAM
+#ifdef CVC4_ANTLR3_OLD_INPUT_STREAM
pANTLR3_INPUT_STREAM inputStream =
antlr3NewAsciiStringInPlaceStream((pANTLR3_UINT8) basep,
cp - basep,
@@ -143,7 +143,7 @@ AntlrInputStream::newStringInputStream(const std::string& input,
char* inputStr = strdup(input.c_str());
char* nameStr = strdup(name.c_str());
AlwaysAssert( inputStr!=NULL && nameStr!=NULL );
-#if CVC4_ANTLR3_OLD_INPUT_STREAM
+#ifdef CVC4_ANTLR3_OLD_INPUT_STREAM
pANTLR3_INPUT_STREAM inputStream =
antlr3NewAsciiStringInPlaceStream((pANTLR3_UINT8) inputStr,
input.size(),
diff --git a/src/parser/memory_mapped_input_buffer.cpp b/src/parser/memory_mapped_input_buffer.cpp
index 1c0f76e1e..f0b7a9d2c 100644
--- a/src/parser/memory_mapped_input_buffer.cpp
+++ b/src/parser/memory_mapped_input_buffer.cpp
@@ -61,7 +61,7 @@ pANTLR3_INPUT_STREAM MemoryMappedInputBufferNew(const std::string& filename) {
// Call the common 8 bit ASCII input stream handler
// Initializer type thingy doobry function.
//
-#if CVC4_ANTLR3_OLD_INPUT_STREAM
+#ifdef CVC4_ANTLR3_OLD_INPUT_STREAM
antlr3AsciiSetupStream(input, ANTLR3_CHARSTREAM);
#else /* CVC4_ANTLR3_OLD_INPUT_STREAM */
antlr38BitSetupStream(input);
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback