summaryrefslogtreecommitdiff
path: root/www/cherokee/files/patch-cherokee-buffer.c
diff options
context:
space:
mode:
authorPav Lucistnik <pav@FreeBSD.org>2005-05-26 17:22:05 +0000
committerPav Lucistnik <pav@FreeBSD.org>2005-05-26 17:22:05 +0000
commit8e7ee177338b3a72d490bd34fca7654f374975ce (patch)
tree05c9e1a7be5cf89525b8143d79603234e938aa47 /www/cherokee/files/patch-cherokee-buffer.c
parent- Fix fatal typo in libvisual so USE_GSTREAMER=libvisual will now work. (diff)
- Update to 0.4.23
PR: ports/81513 Submitted by: KATO Tsuguru <tkato432@yahoo.com>
Diffstat (limited to 'www/cherokee/files/patch-cherokee-buffer.c')
-rw-r--r--www/cherokee/files/patch-cherokee-buffer.c13
1 files changed, 13 insertions, 0 deletions
diff --git a/www/cherokee/files/patch-cherokee-buffer.c b/www/cherokee/files/patch-cherokee-buffer.c
new file mode 100644
index 000000000000..fa39cd33b536
--- /dev/null
+++ b/www/cherokee/files/patch-cherokee-buffer.c
@@ -0,0 +1,13 @@
+--- cherokee/buffer.c.orig Tue May 24 00:46:59 2005
++++ cherokee/buffer.c Tue May 24 16:18:01 2005
+@@ -39,6 +39,10 @@
+ #include "util.h"
+ #include "crc32.h"
+
++#ifndef va_copy
++#define va_copy(to,fr) ((to)=(fr))
++#endif
++
+ #define BUFFER_VA_LEN 200
+
+ #define TO_HEX(c) (c>9? c+'a'-10 : c+'0')