summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2005-11-26 20:07:56 +0000
committerMike Frysinger <vapier@gentoo.org>2005-11-26 20:07:56 +0000
commitdd464078204c3f146866b3748c81c9a1ce977864 (patch)
treec3cbee2f77fb25ced0cf23ab6c9c9a6d7bdd94c7
parentFixed linking problems with pango, bug #113410 (diff)
downloadgentoo-2-dd464078204c3f146866b3748c81c9a1ce977864.tar.gz
gentoo-2-dd464078204c3f146866b3748c81c9a1ce977864.tar.bz2
gentoo-2-dd464078204c3f146866b3748c81c9a1ce977864.zip
uncompress patch for better performance on utf8 systemsbetter performance on utf8 systems
-rw-r--r--sys-apps/grep/files/grep-2.5.1-oi.patch48
-rw-r--r--sys-apps/grep/files/grep-2.5.1-oi.patch.bz2bin831 -> 0 bytes
2 files changed, 48 insertions, 0 deletions
diff --git a/sys-apps/grep/files/grep-2.5.1-oi.patch b/sys-apps/grep/files/grep-2.5.1-oi.patch
new file mode 100644
index 000000000000..eb997ad042ec
--- /dev/null
+++ b/sys-apps/grep/files/grep-2.5.1-oi.patch
@@ -0,0 +1,48 @@
+--- grep-2.5.1/lib/posix/regex.h.oi 2004-01-05 12:09:12.984391131 +0000
++++ grep-2.5.1/lib/posix/regex.h 2004-01-05 12:09:24.717990622 +0000
+@@ -109,6 +109,10 @@
+ If not set, \{, \}, {, and } are literals. */
+ #define RE_INTERVALS (RE_HAT_LISTS_NOT_NEWLINE << 1)
+
++/* If this bit is set, then ignore case when matching.
++ If not set, then case is significant. */
++#define RE_ICASE (RE_INVALID_INTERVAL_ORD << 1)
++
+ /* If this bit is set, +, ? and | aren't recognized as operators.
+ If not set, they are. */
+ #define RE_LIMITED_OPS (RE_INTERVALS << 1)
+--- grep-2.5.1/src/search.c.oi 2004-01-05 12:07:00.550199415 +0000
++++ grep-2.5.1/src/search.c 2004-01-05 12:07:00.566197505 +0000
+@@ -31,7 +31,7 @@
+
+ #include "system.h"
+ #include "grep.h"
+-#include "regex.h"
++#include <regex.h>
+ #include "dfa.h"
+ #include "kwset.h"
+ #include "error.h"
+@@ -190,7 +190,7 @@
+ size_t total = size;
+ char const *motif = pattern;
+
+- re_set_syntax (RE_SYNTAX_GREP | RE_HAT_LISTS_NOT_NEWLINE);
++ re_set_syntax (RE_SYNTAX_GREP | RE_HAT_LISTS_NOT_NEWLINE | (match_icase ? RE_ICASE : 0));
+ dfasyntax (RE_SYNTAX_GREP | RE_HAT_LISTS_NOT_NEWLINE, match_icase, eolbyte);
+
+ /* For GNU regex compiler we have to pass the patterns separately to detect
+@@ -268,12 +268,12 @@
+
+ if (strcmp (matcher, "awk") == 0)
+ {
+- re_set_syntax (RE_SYNTAX_AWK);
++ re_set_syntax (RE_SYNTAX_AWK | (match_icase ? RE_ICASE : 0));
+ dfasyntax (RE_SYNTAX_AWK, match_icase, eolbyte);
+ }
+ else
+ {
+- re_set_syntax (RE_SYNTAX_POSIX_EGREP);
++ re_set_syntax (RE_SYNTAX_POSIX_EGREP | (match_icase ? RE_ICASE : 0));
+ dfasyntax (RE_SYNTAX_POSIX_EGREP, match_icase, eolbyte);
+ }
+
diff --git a/sys-apps/grep/files/grep-2.5.1-oi.patch.bz2 b/sys-apps/grep/files/grep-2.5.1-oi.patch.bz2
deleted file mode 100644
index 55fb68560e4e..000000000000
--- a/sys-apps/grep/files/grep-2.5.1-oi.patch.bz2
+++ /dev/null
Binary files differ