changeset 27534:f70d7a9ee3fd

include ENABLE_COMMAND_LINE_PUSH_PARSER in build info struct * toplev.cc (F__octave_config_info__): Add ENABLE_COMMAND_LINE_PUSH_PARSER to struct.
author John W. Eaton <jwe@octave.org>
date Fri, 18 Oct 2019 16:45:56 -0400
parents 0abe70896e34
children 303df1e804d4
files libinterp/corefcn/toplev.cc
diffstat 1 files changed, 6 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/libinterp/corefcn/toplev.cc	Fri Oct 18 16:44:14 2019 -0400
+++ b/libinterp/corefcn/toplev.cc	Fri Oct 18 16:45:56 2019 -0400
@@ -364,6 +364,12 @@
            { "ENABLE_64", false },
 #endif
 
+#if defined (OCTAVE_ENABLE_COMMAND_LINE_PUSH_PARSER)
+           { "ENABLE_COMMAND_LINE_PUSH_PARSER", true },
+#else
+           { "ENABLE_COMMAND_LINE_PUSH_PARSER", false },
+#endif
+
 #if defined (ENABLE_DOCS)
            { "ENABLE_DOCS", true },
 #else