diff options
author | Diego Elio Pettenò <flameeyes@gentoo.org> | 2012-12-31 00:30:01 +0000 |
---|---|---|
committer | Diego Elio Pettenò <flameeyes@gentoo.org> | 2012-12-31 00:30:01 +0000 |
commit | 1b8c72785053382a240496ab619303e3285a056e (patch) | |
tree | 4f1088d3b158c7a37f7afcec274842515261cff8 /net-proxy/c-icap/files | |
parent | Mask sushi[office], needs virtual/ooo. (diff) | |
download | gentoo-2-1b8c72785053382a240496ab619303e3285a056e.tar.gz gentoo-2-1b8c72785053382a240496ab619303e3285a056e.tar.bz2 gentoo-2-1b8c72785053382a240496ab619303e3285a056e.zip |
Version bump.
(Portage version: 2.2.0_alpha149/cvs/Linux x86_64, signed Manifest commit with key 1CD13C8AD4301342)
Diffstat (limited to 'net-proxy/c-icap/files')
-rw-r--r-- | net-proxy/c-icap/files/c-icap-0.2.4-implicit.patch | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/net-proxy/c-icap/files/c-icap-0.2.4-implicit.patch b/net-proxy/c-icap/files/c-icap-0.2.4-implicit.patch new file mode 100644 index 000000000000..706b56d7e6e4 --- /dev/null +++ b/net-proxy/c-icap/files/c-icap-0.2.4-implicit.patch @@ -0,0 +1,49 @@ +Index: c_icap-0.2.4/aserver.c +=================================================================== +--- c_icap-0.2.4.orig/aserver.c ++++ c_icap-0.2.4/aserver.c +@@ -41,6 +41,7 @@ extern int MAX_SECS_TO_LINGER; + char MY_HOSTNAME[CI_MAXHOSTNAMELEN + 1]; + + void init_conf_tables(); ++int init_body_system(); + int config(int, char **); + int init_server(char *address, int port, int *family); + int start_server(); +Index: c_icap-0.2.4/include/mem.h +=================================================================== +--- c_icap-0.2.4.orig/include/mem.h ++++ c_icap-0.2.4/include/mem.h +@@ -66,6 +66,7 @@ CI_DECLARE_FUNC(void) ci_buffers_destroy + CI_DECLARE_FUNC(void *) ci_buffer_alloc(int block_size); + CI_DECLARE_FUNC(void *) ci_buffer_realloc(void *data, int block_size); + CI_DECLARE_FUNC(void) ci_buffer_free(void *data); ++CI_DECLARE_FUNC(size_t) ci_buffer_blocksize(void *data); + + CI_DECLARE_FUNC(int) ci_object_pool_register(const char *name, int size); + CI_DECLARE_FUNC(void) ci_object_pool_unregister(int id); +Index: c_icap-0.2.4/tests/test_cache.c +=================================================================== +--- c_icap-0.2.4.orig/tests/test_cache.c ++++ c_icap-0.2.4/tests/test_cache.c +@@ -27,6 +27,7 @@ void *copy_from_str(void *val, int val_s + return (void *)ci_str_ops.dup((char *)val, allocator); + } + ++int mem_init(); + int main(int argc,char *argv[]) { + int i; + struct ci_cache *cache; +Index: c_icap-0.2.4/util.c +=================================================================== +--- c_icap-0.2.4.orig/util.c ++++ c_icap-0.2.4/util.c +@@ -20,7 +20,7 @@ + #include "common.h" + #include "c-icap.h" + #include "util.h" +- ++#include <ctype.h> + + #ifndef HAVE_STRNSTR + const char *strnstr(const char *s, const char *find, size_t slen) |