summaryrefslogtreecommitdiff
path: root/sys-apps/pcmciautils/files/pcmciautils-018_p8-flex-2.6.3-fix.patch
diff options
context:
space:
mode:
Diffstat (limited to 'sys-apps/pcmciautils/files/pcmciautils-018_p8-flex-2.6.3-fix.patch')
-rw-r--r--sys-apps/pcmciautils/files/pcmciautils-018_p8-flex-2.6.3-fix.patch27
1 files changed, 27 insertions, 0 deletions
diff --git a/sys-apps/pcmciautils/files/pcmciautils-018_p8-flex-2.6.3-fix.patch b/sys-apps/pcmciautils/files/pcmciautils-018_p8-flex-2.6.3-fix.patch
new file mode 100644
index 000000000000..e30abb0d1076
--- /dev/null
+++ b/sys-apps/pcmciautils/files/pcmciautils-018_p8-flex-2.6.3-fix.patch
@@ -0,0 +1,27 @@
+--- pcmciautils-018/src/lex_config.l
++++ pcmciautils-018/src/lex_config.l
+@@ -1,8 +1,8 @@
+ /* Special state for handling include files */
+ %x src
+-%option noinput nounput
++%option noinput nounput noyywrap
+
+ %{
+ /*
+ * Startup tool for non statically mapped PCMCIA sockets
+ *
+@@ -75,14 +75,10 @@ module /* skip */ ;
+
+ . return yytext[0];
+
+ %%
+
+-#ifndef yywrap
+-int yywrap() { return 1; }
+-#endif
+-
+ /*======================================================================
+
+ Stuff to parse basic data types
+
+ ======================================================================*/