diff options
author | Michael Scheidell <scheidell@FreeBSD.org> | 2012-06-25 11:08:24 +0000 |
---|---|---|
committer | Michael Scheidell <scheidell@FreeBSD.org> | 2012-06-25 11:08:24 +0000 |
commit | 7635814ed649a7ab044aac40eda2f522e2764419 (patch) | |
tree | def6822e86a1c4f31c8d71b4eff1b743688a6714 /devel/php5-msgpack/files/patch-msgpack__pack_template.h | |
parent | Add kld to CATEGORIES. (diff) |
- Update to 2012.05.05
- Official version of the code has been integrated into the MessagePack project
PR: ports/169261
Submitted by: Valery Komarov <komarov@valerka.net> (maintainer)
Obtained from: https://github.com/msgpack/msgpack/tree/master/php/
Notes
Notes:
svn path=/head/; revision=299940
Diffstat (limited to 'devel/php5-msgpack/files/patch-msgpack__pack_template.h')
-rw-r--r-- | devel/php5-msgpack/files/patch-msgpack__pack_template.h | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/devel/php5-msgpack/files/patch-msgpack__pack_template.h b/devel/php5-msgpack/files/patch-msgpack__pack_template.h deleted file mode 100644 index 1c53c27def19..000000000000 --- a/devel/php5-msgpack/files/patch-msgpack__pack_template.h +++ /dev/null @@ -1,11 +0,0 @@ ---- ./msgpack/pack_template.h.orig 2011-10-06 05:03:16.000000000 +0400 -+++ ./msgpack/pack_template.h 2012-05-28 15:06:00.762504244 +0400 -@@ -728,7 +728,7 @@ - msgpack_pack_inline_func(_raw)(msgpack_pack_user x, size_t l) - { - if(l < 32) { -- unsigned char d = 0xa0 | (uint8_t)l; -+ unsigned char d = 0xa0 | l; - msgpack_pack_append_buffer(x, &TAKE8_8(d), 1); - } else if(l < 65536) { - unsigned char buf[3]; |