diff options
author | Tilman Keskinoz <arved@FreeBSD.org> | 2007-05-30 17:15:47 +0000 |
---|---|---|
committer | Tilman Keskinoz <arved@FreeBSD.org> | 2007-05-30 17:15:47 +0000 |
commit | 4aaedc83cd52bb876d3f3de5b24a01409aee959d (patch) | |
tree | 79439393df942e290ed1095804987226c0046d7b | |
parent | Update 2.1.8 --> 2.1.11 (diff) |
Fix build with gcc4
Notes
Notes:
svn path=/head/; revision=192406
-rw-r--r-- | lang/p5-ePerl/files/patch-eperl_proto.h | 14 | ||||
-rw-r--r-- | www/harvest/files/patch-components::broker::standard::glimpse::index::glimpse.c | 17 |
2 files changed, 28 insertions, 3 deletions
diff --git a/lang/p5-ePerl/files/patch-eperl_proto.h b/lang/p5-ePerl/files/patch-eperl_proto.h index e2cc75386f2f..852e32c65977 100644 --- a/lang/p5-ePerl/files/patch-eperl_proto.h +++ b/lang/p5-ePerl/files/patch-eperl_proto.h @@ -1,6 +1,14 @@ ---- eperl_proto.h.orig Thu Nov 21 21:26:44 2002 -+++ eperl_proto.h Thu Nov 21 21:26:50 2002 -@@ -79,7 +79,7 @@ +--- eperl_proto.h.orig Fri Jul 10 09:52:24 1998 ++++ eperl_proto.h Wed May 30 19:13:42 2007 +@@ -36,6 +36,7 @@ + #define EPERL_PROTO_H 1 + + /*_BEGIN_PROTO_*/ ++#include "eperl_getopt.h" + + /* eperl_main.c */ + extern int mode; +@@ -79,7 +80,7 @@ extern char *ePerl_Efwrite(char *cpBuf, int nBuf, int cNum, char *cpOut); extern char *ePerl_Cfwrite(char *cpBuf, int nBuf, int cNum, char *cpOut); extern char *strnchr(char *buf, char chr, int n); diff --git a/www/harvest/files/patch-components::broker::standard::glimpse::index::glimpse.c b/www/harvest/files/patch-components::broker::standard::glimpse::index::glimpse.c new file mode 100644 index 000000000000..20f50f7048f7 --- /dev/null +++ b/www/harvest/files/patch-components::broker::standard::glimpse::index::glimpse.c @@ -0,0 +1,17 @@ +--- components/broker/standard/glimpse/index/glimpse.c.orig Wed May 30 19:09:39 2007 ++++ components/broker/standard/glimpse/index/glimpse.c Wed May 30 19:11:06 2007 +@@ -18,12 +18,13 @@ + extern char INDEX_DIR[MAX_LINE_LEN]; + extern struct stat istbuf; + +-extern char *TEMP_DIR; /* directory to store glimpse temporary files, usually /tmp unless -T is specified */ + #ifdef BUILDCAST + /* TEMP_DIR is normally defined in ../main.c; if we're building + * buildcast, that's not linked in, so we need to define one here. */ + /* char * TEMP_DIR = NULL; */ + static char * TEMP_DIR = "/tmp"; ++#else ++extern char *TEMP_DIR; /* directory to store glimpse temporary files, usually /tmp unless -T is specified */ + #endif /* BUILDCAST */ + extern int indexable_char[256]; + extern int GenerateHash; |