002-disable_yywrap.patch (593B)
1 --- pcmciautils-018/src/lex_config.l 2 +++ pcmciautils-018/src/lex_config.l 3 @@ -1,8 +1,8 @@ 4 /* Special state for handling include files */ 5 %x src 6 -%option noinput nounput 7 +%option noinput nounput noyywrap 8 9 %{ 10 /* 11 * Startup tool for non statically mapped PCMCIA sockets 12 * 13 @@ -75,14 +75,10 @@ module /* skip */ ; 14 15 . return yytext[0]; 16 17 %% 18 19 -#ifndef yywrap 20 -int yywrap() { return 1; } 21 -#endif 22 - 23 /*====================================================================== 24 25 Stuff to parse basic data types 26 27 ======================================================================*/