Changeset 24d6572 for configure.ac
- Timestamp:
- Jun 12, 2023, 2:45:32 PM (3 years ago)
- Branches:
- ast-experimental, master, stuck-waitfor-destruct
- Children:
- 62d62db
- Parents:
- 34b4268 (diff), 251ce80 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)links above to see all the changes relative to each parent. - File:
-
- 1 edited
-
configure.ac (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
configure.ac
r34b4268 r24d6572 47 47 48 48 #============================================================================== 49 # HACK to be able to use condition nals inside makefiles49 # HACK to be able to use conditionals inside makefiles 50 50 DOifskipcompile='ifeq ($(skipcompile),yes) 51 51 else' … … 226 226 AC_PROG_YACC 227 227 if test "${YACC}" = "yacc" ; then echo "Error: bison required." ; exit 1 ; fi 228 AC_PROG_LEX 228 AC_PROG_LEX(yywrap) 229 229 if test "${LEX}" = "lex" ; then echo "Error: flex required." ; exit 1 ; fi 230 AC_PROG_LIBTOOL 230 LT_INIT 231 231 AC_PROG_INSTALL 232 232 … … 284 284 tools/Makefile 285 285 tools/prettyprinter/Makefile 286 benchmark/Cargo.toml 286 287 ]) 287 288 AC_OUTPUT(benchmark/Cargo.toml)289 288 ]) 290 289 291 290 AC_CONFIG_LINKS([tests/test.py:tests/test.py]) 292 293 AC_OUTPUT(tests/config.py) 291 AC_CONFIG_FILES([tests/config.py]) 292 293 AC_OUTPUT 294 294 295 295 # Final text
Note:
See TracChangeset
for help on using the changeset viewer.