X-Git-Url: https://git.saurik.com/bison.git/blobdiff_plain/25d810906cecc2ac321e2893b1ad38b376f3d313..b8a204c09bbe14a804d42f9ca774e9f3881ac6f1:/tests/atlocal.in diff --git a/tests/atlocal.in b/tests/atlocal.in index 19c09262..ac647c0e 100644 --- a/tests/atlocal.in +++ b/tests/atlocal.in @@ -1,10 +1,27 @@ # @configure_input@ -*- shell-script -*- # Configurable variable values for Bison test suite. -# Copyright 2000, 2001 Free Software Foundation, Inc. +# Copyright (C) 2000, 2001, 2002, 2003 Free Software Foundation, Inc. # We need a C compiler. CC='@CC@' -CFLAGS='@CFLAGS@ @WARNING_CFLAGS@' + +# We want no optimization. +CFLAGS='@O0CFLAGS@ @WARNING_CFLAGS@ @WERROR_CFLAGS@' # We need `config.h'. -CPPFLAGS="-I$abs_top_builddir @CPPFLAGS@" +CPPFLAGS="-DHAVE_CONFIG_H=1 -I$abs_top_builddir @CPPFLAGS@" + +# Is the compiler GCC? +GCC='@GCC@' + +# The GCC C++ compiler. +CXX='@CXX@' + +# We want no optimization with C++, too. +CXXFLAGS='@O0CFLAGS@ @WARNING_CXXFLAGS@ @WERROR_CFLAGS@' + +# Are special link options needed? +LDFLAGS='@LDFLAGS@' + +# Are special libraries needed? +LIBS='@LIBS@'