2015-03-15 17:47:19 +01:00
|
|
|
# $NetBSD: Makefile,v 1.8 2015/03/15 16:47:19 hiramatsu Exp $
|
2011-04-06 15:01:30 +02:00
|
|
|
#
|
|
|
|
|
Update msgpack to 0.5.9.
2014-07-02 version 0.5.9:
* Support std::tr1 unordered containers by default (#51, #63, #68, #69)
* Remove some warnings (#56)
* Fix segmentation fault after malloc failures (#58, #59)
* Fix alloc/dealloc mismatch (#52, #61)
* Fix sample codes (#60, #64)
* Support implicit conversion from integer to float/double (#54)
* Improve documents (#45, #75, #82, #83)
* Support CMake (#20, #87)
* Remove Ruby dependencies in bootstrap (#86, #87)
* Add FILE* buffer (#40)
* Other bug fixes and refactoring: #39, #73, #77, #79, #80, #81, #84, #90
2014-08-08 14:27:44 +02:00
|
|
|
DISTNAME= msgpack-0.5.9
|
2011-04-06 15:01:30 +02:00
|
|
|
CATEGORIES= devel
|
Update msgpack to 0.5.8.
2013-12-23 version 0.5.8:
* Move to the new github repository msgpack/msgpack-c
* Support the new deserialization specification
* fixes the problem of unpack helpers for array and map with 32bit compilers (#37, #38)
* Other bug fixes and refactoring: #46, #41, #36, #35, #33, #32, #30, #29, #28, #27, #26, #25, #8, #3
* Update of documents: #23, #18, #17
2014-01-23 10:34:03 +01:00
|
|
|
MASTER_SITES= https://github.com/msgpack/msgpack-c/releases/download/cpp-${PKGVERSION_NOREV}/
|
2011-04-06 15:01:30 +02:00
|
|
|
|
2015-03-15 17:47:19 +01:00
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
2011-04-06 15:01:30 +02:00
|
|
|
HOMEPAGE= http://msgpack.org/
|
|
|
|
COMMENT= Binary-based efficient object serialization library
|
|
|
|
LICENSE= apache-2.0
|
|
|
|
|
|
|
|
GNU_CONFIGURE= yes
|
|
|
|
USE_LANGUAGES= c c++
|
|
|
|
USE_LIBTOOL= yes
|
|
|
|
|
Update msgpack to 0.5.8.
2013-12-23 version 0.5.8:
* Move to the new github repository msgpack/msgpack-c
* Support the new deserialization specification
* fixes the problem of unpack helpers for array and map with 32bit compilers (#37, #38)
* Other bug fixes and refactoring: #46, #41, #36, #35, #33, #32, #30, #29, #28, #27, #26, #25, #8, #3
* Update of documents: #23, #18, #17
2014-01-23 10:34:03 +01:00
|
|
|
PKGCONFIG_OVERRIDE= msgpack.pc.in
|
|
|
|
|
2014-02-19 10:44:56 +01:00
|
|
|
GCC_REQD+= 4.1
|
2011-04-06 15:01:30 +02:00
|
|
|
|
|
|
|
.include "../../mk/bsd.prefs.mk"
|
|
|
|
|
|
|
|
.if ${MACHINE_ARCH} == "i386"
|
|
|
|
CFLAGS+= -march=i686
|
|
|
|
CXXFLAGS+= -march=i686
|
|
|
|
.endif
|
|
|
|
|
|
|
|
.include "options.mk"
|
|
|
|
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|