1 # Process this file with autoconf to produce a configure script.
3 AC_INIT(bison, 1.28b, bug-bison@gnu.org)
4 AC_CONFIG_AUX_DIR(config)
5 AM_INIT_AUTOMAKE(bison, 1.28b)
6 AM_CONFIG_HEADER(config.h:config.hin)
8 # Initialize the test suite.
11 # Checks for programs.
17 # GNU M4 is needed to build the testsuite.
19 if test "$ac_cv_prog_gnu_m4" != yes; then
20 missing_dir=`cd $ac_aux_dir && pwd`
21 M4="$missing_dir/missing m4"
24 AC_ARG_ENABLE(gcc-warnings,
25 [ --enable-gcc-warnings turn on lots of GCC warnings (not recommended)],
26 [case "${enableval}" in
28 *) AC_MSG_ERROR([bad value ${enableval} for gcc-warnings option]) ;;
31 if test "${enableval}" = yes; then
34 BISON_WARNING(-Wbad-function-cast)
35 BISON_WARNING(-Wcast-align)
36 BISON_WARNING(-Wcast-qual)
37 BISON_WARNING(-Wformat)
38 BISON_WARNING(-Wmissing-declarations)
39 BISON_WARNING(-Wmissing-prototypes)
40 BISON_WARNING(-Wnested-externs)
41 BISON_WARNING(-Wshadow)
42 BISON_WARNING(-Wstrict-prototypes)
43 BISON_WARNING(-Wwrite-strings)
44 CFLAGS="$CFLAGS $WARNING_CFLAGS"
47 # Checks for libraries.
48 AC_DEFINE([_GNU_SOURCE],1,[Define to 1 for GNU C library extensions.])
50 # Checks for header files.
52 AC_CHECK_HEADERS(ctype.h locale.h memory.h stdlib.h string.h unistd.h)
54 # Checks for typedefs.
56 # Checks for structures.
58 # Checks for compiler characteristics.
63 # Checks for library functions.
65 AC_CHECK_FUNCS(mkstemp setlocale)
66 AC_CHECK_DECLS([stpcpy, strndup, strnlen, memchr])
67 AC_REPLACE_FUNCS(stpcpy strndup strnlen strspn memchr)
73 ALL_LINGUAS="de es et fr ja nl ru"
76 # This is necessary so that .o files in LIBOBJS are also built via
77 # the ANSI2KNR-filtering rules.
78 LIBOBJS=`echo $LIBOBJS|sed 's/\.o /\$U.o /g;s/\.o$/\$U.o/'`
83 intl/Makefile po/Makefile.in
84 lib/Makefile src/Makefile doc/Makefile
86 tests/Makefile tests/atconfig])