From eec8b1e171638244403fb1e4ba5d1a829ddb55e4 Mon Sep 17 00:00:00 2001 From: Peter Maydell Date: Wed, 21 May 2008 17:18:41 +0000 Subject: [PATCH] add some table size declarations for the benefit of elderly lexes with small defaults. (Ported from trunk.) --- ChangeLog | 6 ++++++ sbr/dtimep.lex | 9 +++++++++ 2 files changed, 15 insertions(+) diff --git a/ChangeLog b/ChangeLog index bc17950..e9d73d3 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2008-05-21 Peter Maydell + + * sbr/dtimep.lex: add some table size declarations for the + benefit of elderly lexes with small defaults. (Ported from + trunk.) + 2008-05-21 David Levine * configure.in, INSTALL: if --enable-masquerade is not diff --git a/sbr/dtimep.lex b/sbr/dtimep.lex index 113f2ea..c35c9be 100644 --- a/sbr/dtimep.lex +++ b/sbr/dtimep.lex @@ -1,3 +1,12 @@ +/* dtimep.lex exceeds the default table capacities for some old versions + * of lex (and the minimum defaults as specified by POSIX). The following + * choices meet or exceed the lex defaults for older SunOS4.x, Solaris, + * HPUX, and AIX. + */ +%e4000 +%p7000 +%n2500 +%a5000 %{ #include #include -- 1.7.10.4