diff options
author | frsyuki <frsyuki@users.sourceforge.jp> | 2009-06-24 13:53:12 +0900 |
---|---|---|
committer | frsyuki <frsyuki@users.sourceforge.jp> | 2009-06-24 13:53:12 +0900 |
commit | a961f646e5dc1ea0c2881646ebf7373eb24ed564 (patch) | |
tree | d5a3e426cc819d1622d256f2e98b075d82ce134f | |
parent | 8ed1d61529cb7d7e9577e648773fd8c91d87b9cf (diff) | |
download | msgpack-python-a961f646e5dc1ea0c2881646ebf7373eb24ed564.tar.gz |
perl package
-rw-r--r-- | Makefile.am | 20 | ||||
-rw-r--r-- | c/msgpack.h | 1 | ||||
-rw-r--r-- | cpp/msgpack.hpp | 1 |
3 files changed, 21 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am index d067fe0..9e36092 100644 --- a/Makefile.am +++ b/Makefile.am @@ -26,5 +26,23 @@ EXTRA_DIST = \ ruby/test_format.rb \ ruby/test_pack.rb \ ruby/unpack.c \ - ruby/unpack.h + ruby/unpack.h \ + perl/Makefile.PL \ + perl/MessagePack.c \ + perl/benchmark/deserialize.pl \ + perl/benchmark/serialize.pl \ + perl/lib/Data/MessagePack.pm \ + perl/lib/Data/MessagePack \ + perl/lib/Data/MessagePack/Unpacker.pod \ + perl/pack.c \ + perl/ppport.h \ + perl/t/00_compile.t \ + perl/t/01_pack.t \ + perl/t/02_unpack.t \ + perl/t/03_stream_unpack.t \ + perl/t/04_invert.t \ + perl/t/Util.pm \ + perl/t/data.pl \ + perl/unpack.c \ + perl/xt/99_pod.t diff --git a/c/msgpack.h b/c/msgpack.h index a59ef03..21729f4 100644 --- a/c/msgpack.h +++ b/c/msgpack.h @@ -20,3 +20,4 @@ #include "msgpack/pack.h" #include "msgpack/unpack.h" #include "msgpack/sbuffer.h" +#include "msgpack/vrefbuffer.h" diff --git a/cpp/msgpack.hpp b/cpp/msgpack.hpp index 58b40ac..e14680d 100644 --- a/cpp/msgpack.hpp +++ b/cpp/msgpack.hpp @@ -20,4 +20,5 @@ #include "msgpack/pack.hpp" #include "msgpack/unpack.hpp" #include "msgpack/sbuffer.hpp" +#include "msgpack/vrefbuffer.hpp" #include "msgpack.h" |