diff options
author | Denys Dmytriyenko <denis@denix.org> | 2009-03-17 14:32:59 -0400 |
---|---|---|
committer | Denys Dmytriyenko <denis@denix.org> | 2009-03-17 14:32:59 -0400 |
commit | 709c4d66e0b107ca606941b988bad717c0b45d9b (patch) | |
tree | 37ee08b1eb308f3b2b6426d5793545c38396b838 /recipes/xorg-font/files/lexer.patch | |
parent | fa6cd5a3b993f16c27de4ff82b42684516d433ba (diff) |
rename packages/ to recipes/ per earlier agreement
See links below for more details:
http://thread.gmane.org/gmane.comp.handhelds.openembedded/21326
http://thread.gmane.org/gmane.comp.handhelds.openembedded/21816
Signed-off-by: Denys Dmytriyenko <denis@denix.org>
Acked-by: Mike Westerhof <mwester@dls.net>
Acked-by: Philip Balister <philip@balister.org>
Acked-by: Khem Raj <raj.khem@gmail.com>
Acked-by: Marcin Juszkiewicz <hrw@openembedded.org>
Acked-by: Koen Kooi <koen@openembedded.org>
Acked-by: Frans Meulenbroeks <fransmeulenbroeks@gmail.com>
Diffstat (limited to 'recipes/xorg-font/files/lexer.patch')
-rw-r--r-- | recipes/xorg-font/files/lexer.patch | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/recipes/xorg-font/files/lexer.patch b/recipes/xorg-font/files/lexer.patch new file mode 100644 index 0000000000..c3caf57174 --- /dev/null +++ b/recipes/xorg-font/files/lexer.patch @@ -0,0 +1,48 @@ +diff -Naur xc.old/config/pswrap/lexer.l xc/config/pswrap/lexer.l +--- xc.old/config/pswrap/lexer.l 2004-04-23 18:42:00.000000000 +0000 ++++ xc/config/pswrap/lexer.l 2004-11-16 21:07:10.569144105 +0000 +@@ -41,6 +41,7 @@ + #include <ctype.h> + #include <stdlib.h> + #include <string.h> ++int yy_prev_more_offset; + + #include "pswpriv.h" + #include "pswparser.h" +diff -Naur xc.old/programs/twm/lex.l xc/programs/twm/lex.l +--- xc.old/programs/twm/lex.l 2004-04-23 18:42:00.000000000 +0000 ++++ xc/programs/twm/lex.l 2004-11-16 21:07:10.569144105 +0000 +@@ -65,6 +41,7 @@ + #include "gram.h" + #include "list.h" + #include "parse.h" ++int yy_prev_more_offset; + + #ifdef FLEX_SCANNER + int yylineno; +diff -Naur xc.old/programs/xgc/lex.l xc/programs/xgc/lex.l +--- xc.old/programs/xgc/lex.l 2004-04-23 18:42:00.000000000 +0000 ++++ xc/programs/xgc/lex.l 2004-11-16 21:07:10.569144105 +0000 +@@ -11,6 +11,9 @@ + #include <X11/X.h> + #include "gram.h" + #include "constants.h" ++ ++int yy_prev_more_offset; ++ + #if defined(FLEX_SCANNER) && !defined(YY_FLEX_LEX_COMPAT) && !defined(__UNIXOS2__) + int yylineno = 0; + #endif +diff -Naur xc.old/programs/Xserver/hw/dmx/config/scanner.l xc/programs/Xserver/hw/dmx/config/scanner.l +--- xc.old/programs/Xserver/hw/dmx/config/scanner.l 2004-07-30 20:06:00.000000000 +0000 ++++ xc.old/programs/Xserver/hw/dmx/config/scanner.l 2004-11-16 21:07:10.569144105 +0000 +@@ -37,6 +37,9 @@ + #include "parser.h" + #include <string.h> + #include <ctype.h> ++ ++int yy_prev_more_offset; ++ + static int getdimension(int token, const char *text, int leng); + static int getstring(int token, const char *text, int leng); + static int gettoken(int token, const char *text, int leng); |