pkgsrc/devel/msgpack/Makefile
obache 748d2f8f24 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 12:27:44 +00:00

30 lines
620 B
Makefile

# $NetBSD: Makefile,v 1.7 2014/08/08 12:27:44 obache Exp $
#
DISTNAME= msgpack-0.5.9
CATEGORIES= devel
MASTER_SITES= https://github.com/msgpack/msgpack-c/releases/download/cpp-${PKGVERSION_NOREV}/
MAINTAINER= obache@NetBSD.org
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
PKGCONFIG_OVERRIDE= msgpack.pc.in
GCC_REQD+= 4.1
.include "../../mk/bsd.prefs.mk"
.if ${MACHINE_ARCH} == "i386"
CFLAGS+= -march=i686
CXXFLAGS+= -march=i686
.endif
.include "options.mk"
.include "../../mk/bsd.pkg.mk"