]> git.saurik.com Git - bison.git/blame - configure.ac
style: syntax-check fixes
[bison.git] / configure.ac
CommitLineData
342b8b6e
AD
1# Configure template for GNU Bison. -*-Autoconf-*-
2#
7d6bad19 3# Copyright (C) 2001-2013 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
4586c8cd
JD
18# In order for some versions of Sun Studio to compile our C++ test cases
19# correctly, we need Autoconf 2.64 or better to handle the restrict
c12aa01f 20# keyword in at least string.h from gnulib. We need Autoconf 2.68 or
45eebca4 21# better to avoid a typo in the 'configure --help' entry for the YACC
c12aa01f 22# environment variable.
a64b1f68
AD
23AC_PREREQ([2.68])
24m4_pattern_forbid([^gl_[A-Z]])
342b8b6e 25
8fa36911
JD
26AC_INIT([GNU Bison],
27 m4_esyscmd([build-aux/git-version-gen .tarball-version]),
28 [bug-bison@gnu.org])
7d6bad19 29AC_SUBST([PACKAGE_COPYRIGHT_YEAR], [2013])
09aa8a88
AD
30AC_DEFINE_UNQUOTED([PACKAGE_COPYRIGHT_YEAR], [$PACKAGE_COPYRIGHT_YEAR],
31 [The copyright year for this package])
a005a9c4 32
c8775f93 33AC_CONFIG_AUX_DIR([build-aux])
1f65350a 34AC_CONFIG_MACRO_DIR([m4])
342b8b6e 35
e30c0477
JD
36# Automake 1.10.3 and 1.11.1 fix a security flaw discussed here:
37#
38# http://thread.gmane.org/gmane.comp.sysutils.autotools.announce/131
39#
40# To avoid 1.11, we make 1.11.1 the minimum version.
41#
c61d4fa1
JD
42# We want gnits strictness only when rolling a stable release. For
43# release candidates, we use version strings like 2.4.3_rc1, but gnits
44# doesn't like that, so we let the underscore disable gnits. Between
45# releases, we want to be able run make dist without being required to
46# add a bogus NEWS entry. In that case, the version string
47# automatically contains a dash, which we also let disable gnits.
2e4986a8
AD
48AM_INIT_AUTOMAKE([1.11.1 dist-xz nostdinc
49 color-tests parallel-tests
50 silent-rules]
c61d4fa1
JD
51 m4_bmatch(m4_defn([AC_PACKAGE_VERSION]), [[-_]],
52 [gnu], [gnits]))
da1eb15b 53AM_SILENT_RULES([yes])
91fd2b60 54AC_CONFIG_HEADERS([lib/config.h:lib/config.in.h])
1f65350a 55
f377f69f 56# Checks for the compiler.
cf2a5f7c 57AC_PROG_CC_STDC
e85056ef 58AC_PROG_CXX
3b2942e6
PE
59
60# Gnulib (early checks).
61gl_EARLY
62
85a2f27f
AD
63# Gnulib uses '#pragma GCC diagnostic push' to silence some
64# warnings, but older gcc doesn't support this.
65AC_CACHE_CHECK([whether pragma GCC diagnostic push works],
66 [lv_cv_gcc_pragma_push_works], [
67 save_CFLAGS=$CFLAGS
68 CFLAGS='-Wunknown-pragmas -Werror'
69 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
70 #pragma GCC diagnostic push
71 #pragma GCC diagnostic pop
72 ]])],
73 [lv_cv_gcc_pragma_push_works=yes],
74 [lv_cv_gcc_pragma_push_works=no])
75 CFLAGS=$save_CFLAGS])
76
1890a2a8 77AC_ARG_ENABLE([gcc-warnings],
630f5212 78[ --enable-gcc-warnings turn on lots of GCC warnings (not recommended)],
1890a2a8 79[case $enable_gcc_warnings in
630f5212 80 yes|no) ;;
1890a2a8 81 *) AC_MSG_ERROR([invalid value for --gcc-warnings: $enable_gcc_warnings]);;
1e24cc5b 82 esac],
36021b23 83 [enable_gcc_warnings=no])
1890a2a8 84if test "$enable_gcc_warnings" = yes; then
e85056ef 85 warn_common='-Wall -Wextra -Wno-sign-compare -Wcast-align
28d16d1f 86 -Wformat -Wpointer-arith -Wwrite-strings'
85a2f27f 87 warn_c='-Wbad-function-cast -Wshadow -Wstrict-prototypes'
7e3510e6 88 warn_cxx='-Wnoexcept'
df1ca1b0
AD
89 # Warnings for the test suite only.
90 #
91 # -fno-color-diagnostics: Clang's use of colors in the error
92 # messages is confusing the tests looking at the compiler's output
93 # (e.g., synclines.at).
7ba01e11 94 warn_tests='-Wundef -pedantic -Wsign-compare -fno-color-diagnostics'
aed41cf9 95
e85056ef 96 AC_LANG_PUSH([C])
324a5576
AD
97 # Clang supports many of GCC's -W options, but only issues warnings
98 # on the ones it does not recognize. In that case, gl_WARN_ADD
99 # thinks the option is supported, and unknown options are then added
100 # to CFLAGS. But then, when -Werror is added in the test suite for
101 # instance, the warning about the unknown option turns into an
102 # error.
103 #
104 # This should be addressed by gnulib's gl_WARN_ADD, but in the
105 # meanwhile, turn warnings about unknown options into errors in
106 # CFLAGS, and restore CFLAGS after the tests.
107 save_CFLAGS=$CFLAGS
108 gl_WARN_ADD([-Werror=unknown-warning-option], [CFLAGS])
e85056ef
AD
109 for i in $warn_common $warn_c;
110 do
111 gl_WARN_ADD([$i], [WARN_CFLAGS])
112 done
905f0697 113 gl_WARN_ADD([-Werror], [WERROR_CFLAGS])
85a2f27f
AD
114
115 # Warnings for the test suite, and maybe for bison if GCC is modern
116 # enough.
117 gl_WARN_ADD([-Wmissing-declarations], [WARN_CFLAGS_TEST])
118 gl_WARN_ADD([-Wmissing-prototypes], [WARN_CFLAGS_TEST])
119 test $lv_cv_gcc_pragma_push_works = yes &&
120 AS_VAR_APPEND([WARN_CFLAGS], [" $WARN_CFLAGS_TEST"])
121
a603c6e0 122 # Warnings for the test suite only.
df1ca1b0
AD
123 for i in $warn_tests;
124 do
125 gl_WARN_ADD([$i], [WARN_CFLAGS_TEST])
126 done
324a5576 127 CFLAGS=$save_CFLAGS
e85056ef
AD
128 AC_LANG_POP([C])
129
130 AC_LANG_PUSH([C++])
324a5576
AD
131 save_CXXFLAGS=$CXXFLAGS
132 gl_WARN_ADD([-Werror=unknown-warning-option], [CXXFLAGS])
e85056ef
AD
133 for i in $warn_common $warn_cxx;
134 do
135 gl_WARN_ADD([$i], [WARN_CXXFLAGS])
136 done
aed41cf9 137 gl_WARN_ADD([-Wzero-as-null-pointer-constant], [WARN_CXXFLAGS],
7e3510e6 138 [AC_LANG_PROGRAM([], [nullptr])])
e85056ef
AD
139 gl_WARN_ADD([-Werror], [WERROR_CXXFLAGS])
140 # Warnings for the test suite only.
df1ca1b0
AD
141 for i in $warn_tests;
142 do
143 gl_WARN_ADD([$i], [WARN_CXXFLAGS_TEST])
144 done
12176881 145 # Clang++ 3.2+ reject C code generated by Flex.
5ae8eb32 146 gl_WARN_ADD([-Wno-null-conversion], [FLEX_SCANNER_CXXFLAGS])
ec991d74
AD
147 # So does G++ 4.8...
148 gl_WARN_ADD([-Wno-sign-compare], [FLEX_SCANNER_CXXFLAGS])
149 # ... possiby in std=c++11 mode.
5ae8eb32 150 gl_WARN_ADD([-Wno-zero-as-null-pointer-constant], [FLEX_SCANNER_CXXFLAGS])
324a5576 151 CXXFLAGS=$save_CXXFLAGS
e85056ef 152 AC_LANG_POP([C++])
630f5212
JT
153fi
154
498e897c 155BISON_TEST_FOR_WORKING_C_COMPILER
0a36880a 156BISON_C_COMPILER_POSIXLY_CORRECT
d4728d92
AD
157BISON_TEST_FOR_WORKING_CXX_COMPILER
158BISON_CXX_COMPILER_POSIXLY_CORRECT
498e897c 159
4beda9ac
PE
160AC_ARG_ENABLE([yacc],
161 [AC_HELP_STRING([--disable-yacc],
162 [do not build a yacc command or an -ly library])],
163 , [enable_yacc=yes])
164case $enable_yacc in
165yes)
0305d25e 166 YACC_SCRIPT=src/yacc
feda5527 167 YACC_LIBRARY=lib/liby.a;;
4beda9ac
PE
168*)
169 YACC_SCRIPT=
170 YACC_LIBRARY=;;
171esac
172AC_SUBST([YACC_SCRIPT])
173AC_SUBST([YACC_LIBRARY])
174
f377f69f 175# Checks for programs.
a029e56f 176AM_MISSING_PROG([DOT], [dot])
41cce2f6 177AC_PROG_LEX
355e5a72 178$LEX_IS_FLEX || AC_MSG_ERROR([Flex is required])
f377f69f
AD
179AC_PROG_YACC
180AC_PROG_RANLIB
62c99cf4 181AC_PROG_GNU_M4
f377f69f 182AC_DEFINE_UNQUOTED([M4], ["$M4"], [Define to the GNU M4 executable name.])
d8911864
EB
183AC_DEFINE_UNQUOTED([M4_GNU_OPTION], ["$M4_GNU"], [Define to "-g" if GNU M4
184supports -g, otherwise to "".])
5aaad6c4
AD
185AC_PATH_PROG([PERL], [perl])
186if test -z "$PERL"; then
187 AC_MSG_ERROR([perl not found])
188fi
727a1401 189AM_MISSING_PROG([HELP2MAN], [help2man])
da730230
JD
190AC_PATH_PROG([XSLTPROC], [xsltproc])
191AC_SUBST([XSLTPROC])
f2939cd6 192
e79137ac 193# Checks for header files.
1f65350a 194AC_CHECK_HEADERS_ONCE([locale.h])
f2939cd6 195
e79137ac 196# Checks for compiler characteristics.
dd877b0c 197AC_C_INLINE
f2939cd6 198
3b2942e6
PE
199# Gnulib (later checks). Putting them here rather than right after
200# gl_EARLY avoids some redundant checks.
201gl_INIT
202
e79137ac 203# Checks for library functions.
1f65350a 204AC_CHECK_FUNCS_ONCE([setlocale])
342b8b6e 205AM_WITH_DMALLOC
1509d42f 206BISON_PREREQ_TIMEVAR
f2939cd6 207
3b2942e6 208# Gettext.
af6d2358
AD
209# We use gnulib, which is only guaranteed to work properly with the
210# latest Gettext.
91a2b9b1 211AM_GNU_GETTEXT([external], [need-ngettext])
e35bc778 212AM_GNU_GETTEXT_VERSION([0.18])
f7ab6a50
PE
213BISON_I18N
214
215# Internationalized parsers.
216AC_CONFIG_FILES([runtime-po/Makefile.in])
217# Autoconf macros for packages using internationalized parsers.
218aclocaldir='${datadir}/aclocal'
219AC_SUBST([aclocaldir])
bbcb769c 220
2e7944cb
JD
221# Create the benchmark script.
222AC_CONFIG_FILES([etc/bench.pl], [chmod +x etc/bench.pl])
223
f377f69f
AD
224# Initialize the test suite.
225AC_CONFIG_TESTDIR(tests)
d4977ce3 226AC_CONFIG_FILES([tests/atlocal])
f377f69f
AD
227AC_CONFIG_FILES([tests/bison], [chmod +x tests/bison])
228AC_CHECK_PROGS([VALGRIND], [valgrind])
bcbbf654
AD
229case $VALGRIND:$host_os in
230 '':*) ;;
231 *:darwin*)
232 # See README-hacking.
233 # VALGRIND+=' --suppressions=$(abs_top_srcdir)/build-aux/darwin11.4.0.valgrind'
234 VALGRIND=;;
235 *:*)
733d4546 236 AC_SUBST([VALGRIND_PREBISON], ["$VALGRIND -q"]);;
bcbbf654
AD
237esac
238
f377f69f
AD
239AM_MISSING_PROG([AUTOM4TE], [autom4te])
240# Needed by tests/atlocal.in.
241AC_SUBST([GCC])
f377f69f 242
1979121c 243gt_JAVACOMP([1.3], [1.4])
8405b70c
PB
244gt_JAVAEXEC
245
8fa36911 246AC_CONFIG_FILES([Makefile
e9690142 247 po/Makefile.in
e9690142 248 doc/yacc.1])
927f7817 249AC_OUTPUT