From 44d9a8ba4ed566939d3f21024ca1b5f271b03677 Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Tue, 22 Jun 2004 07:27:43 +0000 Subject: [PATCH] Gunter's fix to avoid the notorious YYSTACK_USE_ALLOCA warning we get on several platforms/compilers/yacc versions. --- lib/getdate.y | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/lib/getdate.y b/lib/getdate.y index 291b62990..68d0ce60b 100644 --- a/lib/getdate.y +++ b/lib/getdate.y @@ -26,6 +26,11 @@ #define YYDEBUG 0 #endif +#ifndef YYSTACK_USE_ALLOCA + /* to satisfy gcc -Wundef, we set this to 0 */ +#define YYSTACK_USE_ALLOCA 0 +#endif + /* Since the code of getdate.y is not included in the Emacs executable itself, there is no need to #define static in this file. Even if the code were included in the Emacs executable, it probably