view m4/bison.m4 @ 40195:9734faea5d7b

relocatable-prog: Use wrapper-free installation also on Mac OS X 10.4. * m4/relocatable.m4 (gl_RELOCATABLE_BODY): Treat Mac OS X 10.4 like 10.5.
author Bruno Haible <bruno@clisp.org>
date Sun, 24 Feb 2019 00:25:02 +0100
parents b06060465f09
children
line wrap: on
line source

# serial 7

# Copyright (C) 2002, 2005, 2009-2019 Free Software Foundation, Inc.
# This file is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
# with or without modifications, as long as this notice is preserved.

AC_DEFUN([gl_BISON],
[
  # parse-datetime.y works with bison only.
  : ${YACC='bison -o y.tab.c'}
dnl
dnl Declaring YACC & YFLAGS precious will not be necessary after GNULIB
dnl requires an Autoconf greater than 2.59c, but it will probably still be
dnl useful to override the description of YACC in the --help output, re
dnl parse-datetime.y assuming 'bison -o y.tab.c'.
  AC_ARG_VAR([YACC],
[The "Yet Another C Compiler" implementation to use.  Defaults to
'bison -o y.tab.c'.  Values other than 'bison -o y.tab.c' will most likely
break on most systems.])dnl
  AC_ARG_VAR([YFLAGS],
[YFLAGS contains the list arguments that will be passed by default to Bison.
This script will default YFLAGS to the empty string to avoid a default value of
'-d' given by some make applications.])dnl
])