1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
|
Description: Use packaged msgpack
Remove references to the bundled ./include path from Makefile.PL so that the
headers from the libmsgpack-dev package are used instead.
Author: Jonas Smedegaard <dr@jones.dk>
Reviewed-by: Christopher Hoskin <christopher.hoskin@gmail.com>
Forwarded: not-needed
Last-Update: 2016-09-18
---
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
--- a/Makefile.PL
+++ b/Makefile.PL
@@ -27,11 +27,10 @@
requires_c99();
use_xshelper();
cc_warnings;
- cc_include_paths('include');
cc_src_paths('xs-src');
postamble (qq{
-xs-src/pack.o : xshelper.h include/msgpack/pack_define.h include/msgpack/pack_template.h include/msgpack/sysdep.h
-xs-src/unpack.o : xshelper.h include/msgpack/unpack_define.h include/msgpack/unpack_template.h include/msgpack/sysdep.h
+xs-src/pack.o : xshelper.h
+xs-src/unpack.o : xshelper.h
});
if($Module::Install::AUTHOR) {
|