From 14f1218bfc2b20e7ee44883081f7ee10797ab3ee Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Love=20H=C3=B6rnquist=20=C3=85strand?= Date: Sun, 1 Oct 2006 17:36:38 +0000 Subject: [PATCH] Grow (%p, %a, %n) tables for Solaris 10 lex. From Harald Barth. git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@18182 ec53bebd-3082-4978-b11e-865c3cabbd6b --- lib/asn1/lex.l | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/lib/asn1/lex.l b/lib/asn1/lex.l index 76cbf7e02..435c25011 100644 --- a/lib/asn1/lex.l +++ b/lib/asn1/lex.l @@ -58,6 +58,10 @@ static void unterminated(const char *, unsigned); %} +/* This is for Solaris 10 lex that doesn't grow its tables automagicly */ +%p 5000 +%a 5000 +%n 1000 %% ABSENT { return kw_ABSENT; }