mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-16 19:50:19 +01:00
4b7c11ea70
Signed-off-by: Matteo Bernardini <ponce@slackbuilds.org>
23 lines
529 B
Diff
23 lines
529 B
Diff
--- src/config-flex.l.orig 2011-07-25 07:18:18.000000000 -0400
|
|
+++ src/config-flex.l 2017-07-02 13:52:20.048382500 -0400
|
|
@@ -106,19 +106,17 @@ OPTIONS { BEGIN(options); return OPTI
|
|
<options>"\n" { NEW_LINE(); }
|
|
<options>. { ; }
|
|
|
|
%%
|
|
|
|
-#ifndef yywrap
|
|
-int yywrap()
|
|
+int lt_config_wrap()
|
|
{
|
|
return 1;
|
|
/* XXX not to get the compiler 'not used' warning */
|
|
yyunput(0, NULL);
|
|
input();
|
|
}
|
|
-#endif
|
|
|
|
void lt_config_error(const char *m)
|
|
{
|
|
printf("conf file [%s] line %d: %s\n",
|
|
lt_inc_stack(lt_config_sinc)->file,
|