diff options
author | Matthias Andree <matthias.andree@gmx.de> | 2006-04-01 10:32:42 +0000 |
---|---|---|
committer | Matthias Andree <matthias.andree@gmx.de> | 2006-04-01 10:32:42 +0000 |
commit | 334c2323fb3703e7d52ccf368884d702ad96d34f (patch) | |
tree | 7c34ea9151287be84dea9873c60259675faf6151 | |
parent | 26e3640e0627906e32340df39d41ae73a999f00c (diff) | |
download | fetchmail-334c2323fb3703e7d52ccf368884d702ad96d34f.tar.gz fetchmail-334c2323fb3703e7d52ccf368884d702ad96d34f.tar.bz2 fetchmail-334c2323fb3703e7d52ccf368884d702ad96d34f.zip |
lexer: add %option noyywrap to avoid link errors about missing yywrap().
svn path=/branches/BRANCH_6-3/; revision=4765
-rw-r--r-- | NEWS | 1 | ||||
-rw-r--r-- | rcfile_l.l | 2 |
2 files changed, 2 insertions, 1 deletions
@@ -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): @@ -24,7 +24,7 @@ int prc_lineno = 1; %o 7000 %a 4000 %p 3000 -%option nounput +%option nounput noyywrap %s NAME AUTH |