summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorfrsyuki <frsyuki@users.sourceforge.jp>2009-06-24 13:53:12 +0900
committerfrsyuki <frsyuki@users.sourceforge.jp>2009-06-24 13:53:12 +0900
commita961f646e5dc1ea0c2881646ebf7373eb24ed564 (patch)
treed5a3e426cc819d1622d256f2e98b075d82ce134f
parent8ed1d61529cb7d7e9577e648773fd8c91d87b9cf (diff)
downloadmsgpack-python-a961f646e5dc1ea0c2881646ebf7373eb24ed564.tar.gz
perl package
-rw-r--r--Makefile.am20
-rw-r--r--c/msgpack.h1
-rw-r--r--cpp/msgpack.hpp1
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"