From 334c2323fb3703e7d52ccf368884d702ad96d34f Mon Sep 17 00:00:00 2001 From: Matthias Andree Date: Sat, 1 Apr 2006 10:32:42 +0000 Subject: lexer: add %option noyywrap to avoid link errors about missing yywrap(). svn path=/branches/BRANCH_6-3/; revision=4765 --- NEWS | 1 + rcfile_l.l | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/NEWS b/NEWS index ed1e41f9..c8fe7d25 100644 --- a/NEWS +++ b/NEWS @@ -33,6 +33,7 @@ fetchmail 6.3.4 (not yet released): * configure: detect res_* functions properly with newer glibc ABIs. Patch by Miloslav Trmac. * tracepolls: add folder information if available. Reported by Terry Brown. +* lexer: add %option noyywrap to avoid link errors about missing yywrap(). fetchmail 6.3.3 (released 2006-03-30): diff --git a/rcfile_l.l b/rcfile_l.l index 14eb73e4..9acb4bf0 100644 --- a/rcfile_l.l +++ b/rcfile_l.l @@ -24,7 +24,7 @@ int prc_lineno = 1; %o 7000 %a 4000 %p 3000 -%option nounput +%option nounput noyywrap %s NAME AUTH -- cgit v1.2.3