2004-12-20 Stepan Kasal * lib/getdate.y: Tell the bison-generated code explicitely whether to use `alloca' or not. Suggested by Bruno Haible. Index: lib/getdate.y =================================================================== RCS file: /cvsroot/gnulib/gnulib/lib/getdate.y,v retrieving revision 1.93 diff -u -r1.93 getdate.y --- lib/getdate.y 20 Dec 2004 08:08:51 -0000 1.93 +++ lib/getdate.y 20 Dec 2004 10:19:02 -0000 @@ -36,9 +36,11 @@ #include "getdate.h" -/* Use alloca only if it is known to be builtin. */ +/* Use alloca only if it is known to be builtin. + In both cases, tell the bison-generated code what to do. */ #if HAVE_ALLOCA # include +# define YYSTACK_USE_ALLOCA 1 #else # define YYSTACK_USE_ALLOCA 0 #endif