summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuca Longinotti <chtekk@gentoo.org>2006-07-31 23:30:22 +0000
committerLuca Longinotti <chtekk@gentoo.org>2006-07-31 23:30:22 +0000
commit51f7eb6037e976b6cc54e719900cb47dc75b4177 (patch)
tree03cdcd99c8cac69eebaecbe9e61ece205f479e79 /dev-db/postgresql/files
parentBoth 7.3 releases need the cubeparse patch. (diff)
downloadgentoo-2-51f7eb6037e976b6cc54e719900cb47dc75b4177.tar.gz
gentoo-2-51f7eb6037e976b6cc54e719900cb47dc75b4177.tar.bz2
gentoo-2-51f7eb6037e976b6cc54e719900cb47dc75b4177.zip
Both 7.3 releases need the cubeparse patch.
(Portage version: 2.1.1_pre4-r1) (Unsigned Manifest commit)
Diffstat (limited to 'dev-db/postgresql/files')
-rw-r--r--dev-db/postgresql/files/postgresql-7.3.15-cubeparse.patch36
1 files changed, 0 insertions, 36 deletions
diff --git a/dev-db/postgresql/files/postgresql-7.3.15-cubeparse.patch b/dev-db/postgresql/files/postgresql-7.3.15-cubeparse.patch
deleted file mode 100644
index 705e073c8e45..000000000000
--- a/dev-db/postgresql/files/postgresql-7.3.15-cubeparse.patch
+++ /dev/null
@@ -1,36 +0,0 @@
---- contrib/cube/cubescan.l.orig 2006-07-05 06:56:04.000000000 +0000
-+++ contrib/cube/cubescan.l 2006-07-05 06:56:12.000000000 +0000
-@@ -9,6 +9,10 @@
-
-
- /* flex screws a couple symbols when used with the -P option; fix those */
-+#ifndef YY_PROTO
-+#define YY_PROTO(proto) proto
-+#endif
-+
- #define YY_DECL int cube_yylex YY_PROTO(( void )); \
- int cube_yylex YY_PROTO(( void ))
- #define yylval cube_yylval
---- contrib/seg/segscan.l.orig 2006-07-05 07:08:26.000000000 +0000
-+++ contrib/seg/segscan.l 2006-07-05 07:08:51.000000000 +0000
-@@ -9,6 +9,10 @@
-
-
- /* flex screws a couple symbols when used with the -P option; fix those */
-+#ifndef YY_PROTO
-+#define YY_PROTO(proto) proto
-+#endif
-+
- #define YY_DECL int seg_yylex YY_PROTO(( void )); \
- int seg_yylex YY_PROTO(( void ))
- #define yylval seg_yylval
---- contrib/tsearch/parser.l.orig 2006-07-05 07:22:36.000000000 +0000
-+++ contrib/tsearch/parser.l 2006-07-05 07:23:33.000000000 +0000
-@@ -18,6 +18,7 @@
- char *s = NULL; /* to return WHOLE hyphenated-word */
-
- YY_BUFFER_STATE buf = NULL; /* buffer to parse; it need for parse from string */
-+static YY_BUFFER_STATE yy_current_buffer = 0;
-
- int lrlimit = -1; /* for limiting read from filehandle ( -1 - unlimited read ) */
- int bytestoread = 0; /* for limiting read from filehandle */