]>
Commit | Line | Data |
---|---|---|
342b8b6e AD |
1 | # @configure_input@ -*- shell-script -*- |
2 | # Configurable variable values for Bison test suite. | |
3b2942e6 | 3 | |
74553c98 AD |
4 | # Copyright (C) 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, |
5 | # 2009 Free Software Foundation, Inc. | |
342b8b6e AD |
6 | |
7 | # We need a C compiler. | |
74553c98 | 8 | : ${CC='@CC@'} |
f377f69f AD |
9 | |
10 | # We want no optimization. | |
905f0697 | 11 | CFLAGS='@O0CFLAGS@ @WARN_CFLAGS@ @WERROR_CFLAGS@' |
342b8b6e AD |
12 | |
13 | # We need `config.h'. | |
231ed89a | 14 | CPPFLAGS="-I$abs_top_builddir/lib @CPPFLAGS@" |
642cb8f8 AD |
15 | |
16 | # Is the compiler GCC? | |
17 | GCC='@GCC@' | |
7548fed2 | 18 | |
209ea708 | 19 | # The C++ compiler. |
74553c98 | 20 | : ${CXX='@CXX@'} |
9d56d294 | 21 | |
209ea708 PE |
22 | # If 'exit 77'; skip all C++ tests; otherwise ':'. |
23 | BISON_CXX_WORKS='@BISON_CXX_WORKS@' | |
24 | ||
713535c2 | 25 | # We want no optimization with C++, too. |
905f0697 | 26 | CXXFLAGS='@O0CXXFLAGS@ @WARN_CXXFLAGS@ @WERROR_CFLAGS@' |
713535c2 | 27 | |
9d56d294 PE |
28 | # Are special link options needed? |
29 | LDFLAGS='@LDFLAGS@' | |
30 | ||
31 | # Are special libraries needed? | |
e2586f82 | 32 | LIBS='@LIBS@ @INTLLIBS@' |
8405b70c PB |
33 | |
34 | # Empty if no javac was found | |
35 | CONF_JAVAC='@CONF_JAVAC@' | |
36 | ||
37 | # Empty if no Java VM was found | |
38 | CONF_JAVA='@CONF_JAVA@' | |
da730230 JD |
39 | |
40 | # Empty if no xsltproc was found | |
74553c98 AD |
41 | : ${XSLTPROC='@XSLTPROC@'} |
42 | ||
43 | # We need egrep. | |
44 | : ${EGREP='@EGREP@'} | |
43aabb70 JD |
45 | |
46 | abs_top_srcdir='@abs_top_srcdir@' |