]> git.saurik.com Git - bison.git/blame - configure.ac
maint: run "make update-copyright"
[bison.git] / configure.ac
CommitLineData
342b8b6e
AD
1# Configure template for GNU Bison. -*-Autoconf-*-
2#
e141f4d4 3# Copyright (C) 2001-2010 Free Software Foundation, Inc.
2c8a9dfa 4#
f16b0819 5# This program is free software: you can redistribute it and/or modify
342b8b6e 6# it under the terms of the GNU General Public License as published by
f16b0819 7# the Free Software Foundation, either version 3 of the License, or
342b8b6e
AD
8# (at your option) any later version.
9#
10# This program is distributed in the hope that it will be useful,
11# but WITHOUT ANY WARRANTY; without even the implied warranty of
12# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13# GNU General Public License for more details.
14#
15# You should have received a copy of the GNU General Public License
f16b0819 16# along with this program. If not, see <http://www.gnu.org/licenses/>.
342b8b6e 17
2cd1af95
AD
18# testsuite -C appears in 2.62.
19AC_PREREQ(2.62)
342b8b6e 20
8fa36911
JD
21AC_INIT([GNU Bison],
22 m4_esyscmd([build-aux/git-version-gen .tarball-version]),
23 [bug-bison@gnu.org])
bd02cd5d 24AC_DEFINE([PACKAGE_COPYRIGHT_YEAR], [2008],
a005a9c4 25 [The copyright year for this package])
bd02cd5d 26AC_SUBST([PACKAGE_COPYRIGHT_YEAR], [2008])
a005a9c4 27
c8775f93 28AC_CONFIG_AUX_DIR([build-aux])
1f65350a 29AC_CONFIG_MACRO_DIR([m4])
342b8b6e 30
fd418816 31# We don't have a file m4/Makefile.am, so we need Automake 1.8 or later.
a1e50014
JD
32# We want gnits strictness only when rolling a formal release so that we can,
33# for example, run make dist at other times without being required to add a
34# bogus NEWS entry.
35AM_INIT_AUTOMAKE([1.8 dist-bzip2]
36 m4_bmatch(m4_defn([AC_PACKAGE_VERSION]), [-], [gnu], [gnits]))
3b2942e6 37AC_CONFIG_HEADERS([lib/config.h:lib/config.hin])
1f65350a 38
f377f69f 39# Checks for the compiler.
cf2a5f7c 40AC_PROG_CC_STDC
3b2942e6
PE
41
42# Gnulib (early checks).
43gl_EARLY
44
630f5212
JT
45AC_ARG_ENABLE(gcc-warnings,
46[ --enable-gcc-warnings turn on lots of GCC warnings (not recommended)],
47[case "${enableval}" in
48 yes|no) ;;
49 *) AC_MSG_ERROR([bad value ${enableval} for gcc-warnings option]) ;;
1e24cc5b 50 esac],
727a1401 51 [enableval=no])
630f5212 52if test "${enableval}" = yes; then
905f0697
PB
53 gl_WARN_ADD([-Werror], [WERROR_CFLAGS])
54 AC_SUBST([WERROR_CFLAGS])
55 gl_WARN_ADD([-Wall])
56 gl_WARN_ADD([-Wextra -Wno-sign-compare])
57 gl_WARN_ADD([-Wcast-align])
58 gl_WARN_ADD([-Wcast-qual])
59 gl_WARN_ADD([-Wformat])
60 gl_WARN_ADD([-Wpointer-arith])
61 gl_WARN_ADD([-Wwrite-strings])
62 AC_SUBST([WARN_CXXFLAGS], [$WARN_CFLAGS])
504f20f7 63 # The following warnings are not suitable for C++.
905f0697
PB
64 gl_WARN_ADD([-Wbad-function-cast])
65 gl_WARN_ADD([-Wmissing-declarations])
66 gl_WARN_ADD([-Wmissing-prototypes])
67 gl_WARN_ADD([-Wshadow])
68 gl_WARN_ADD([-Wstrict-prototypes])
69 AC_SUBST([WARN_CFLAGS])
a603c6e0
JD
70 # Warnings for the test suite only.
71 gl_WARN_ADD([-Wundef], [WARN_CFLAGS_TEST])
72 WARN_CXXFLAGS_TEST="$WARN_CXXFLAGS $WARN_CFLAGS_TEST"
73 WARN_CFLAGS_TEST="$WARN_CFLAGS $WARN_CFLAGS_TEST"
74 AC_SUBST([WARN_CXXFLAGS_TEST])
75 AC_SUBST([WARN_CFLAGS_TEST])
bcb3effb 76 AC_DEFINE([lint], 1, [Define to 1 if the compiler is checking for lint.])
630f5212
JT
77fi
78
498e897c
PE
79BISON_TEST_FOR_WORKING_C_COMPILER
80
4beda9ac
PE
81AC_ARG_ENABLE([yacc],
82 [AC_HELP_STRING([--disable-yacc],
83 [do not build a yacc command or an -ly library])],
84 , [enable_yacc=yes])
85case $enable_yacc in
86yes)
0305d25e 87 YACC_SCRIPT=src/yacc
feda5527 88 YACC_LIBRARY=lib/liby.a;;
4beda9ac
PE
89*)
90 YACC_SCRIPT=
91 YACC_LIBRARY=;;
92esac
93AC_SUBST([YACC_SCRIPT])
94AC_SUBST([YACC_LIBRARY])
95
f377f69f 96# Checks for programs.
41cce2f6 97AC_PROG_LEX
f377f69f
AD
98AC_PROG_YACC
99AC_PROG_RANLIB
62c99cf4 100AC_PROG_GNU_M4
f377f69f 101AC_DEFINE_UNQUOTED([M4], ["$M4"], [Define to the GNU M4 executable name.])
d8911864
EB
102AC_DEFINE_UNQUOTED([M4_GNU_OPTION], ["$M4_GNU"], [Define to "-g" if GNU M4
103supports -g, otherwise to "".])
727a1401 104AM_MISSING_PROG([HELP2MAN], [help2man])
da730230
JD
105AC_PATH_PROG([XSLTPROC], [xsltproc])
106AC_SUBST([XSLTPROC])
f2939cd6 107
e79137ac 108# Checks for header files.
1f65350a 109AC_CHECK_HEADERS_ONCE([locale.h])
f2939cd6 110
e79137ac 111# Checks for compiler characteristics.
dd877b0c 112AC_C_INLINE
f2939cd6 113
3b2942e6
PE
114# Gnulib (later checks). Putting them here rather than right after
115# gl_EARLY avoids some redundant checks.
116gl_INIT
117
e79137ac 118# Checks for library functions.
1f65350a 119AC_CHECK_FUNCS_ONCE([setlocale])
342b8b6e 120AM_WITH_DMALLOC
2593afab 121BISON_PREREQ_SUBPIPE
1509d42f 122BISON_PREREQ_TIMEVAR
f2939cd6 123
3b2942e6 124# Gettext.
af6d2358
AD
125# We use gnulib, which is only guaranteed to work properly with the
126# latest Gettext.
91a2b9b1 127AM_GNU_GETTEXT([external], [need-ngettext])
af6d2358 128AM_GNU_GETTEXT_VERSION([0.17])
f7ab6a50
PE
129BISON_I18N
130
131# Internationalized parsers.
132AC_CONFIG_FILES([runtime-po/Makefile.in])
133# Autoconf macros for packages using internationalized parsers.
134aclocaldir='${datadir}/aclocal'
135AC_SUBST([aclocaldir])
bbcb769c 136
2e7944cb
JD
137# Create the benchmark script.
138AC_CONFIG_FILES([etc/bench.pl], [chmod +x etc/bench.pl])
139
f377f69f
AD
140# Initialize the test suite.
141AC_CONFIG_TESTDIR(tests)
d4977ce3 142AC_CONFIG_FILES([tests/atlocal])
f377f69f
AD
143AC_CONFIG_FILES([tests/bison], [chmod +x tests/bison])
144AC_CHECK_PROGS([VALGRIND], [valgrind])
504f20f7 145AC_PROG_CXX
209ea708 146BISON_TEST_FOR_WORKING_CXX_COMPILER
f377f69f
AD
147AM_MISSING_PROG([AUTOM4TE], [autom4te])
148# Needed by tests/atlocal.in.
149AC_SUBST([GCC])
a005a9c4
AD
150AC_SUBST([O0CFLAGS], [`echo $CFLAGS | sed 's/-O[[0-9]] *//'`])
151AC_SUBST([O0CXXFLAGS], [`echo $CXXFLAGS | sed 's/-O[[0-9]] *//'`])
f377f69f 152
1979121c 153gt_JAVACOMP([1.3], [1.4])
8405b70c
PB
154gt_JAVAEXEC
155
d1b55e81
AD
156# We use gnulib, but from lib/local.mk instead of lib/Makefile.am.
157# So prefix paths with lib/. See also etc/prefix-gnulib-mk.
158gl_LIBOBJS=`echo "$gl_LIBOBJS" | sed -e 's, , lib/,g'`
159for ac_var in ALLOCA_H ERRNO_H FCNTL_H GETOPT_H INTTYPES_H \
160 STDBOOL_H STDINT_H SYS_WAIT_H WCHAR_H WCTYPE_H
feda5527 161do
d1b55e81 162 eval "test 'x$ac_var' = x || $ac_var=lib/\$$ac_var"
feda5527 163done
8fa36911 164AC_CONFIG_FILES([Makefile
727a1401 165 po/Makefile.in
cd409e3b 166 examples/calc++/Makefile
e2c2f696 167 doc/yacc.1])
927f7817 168AC_OUTPUT