diff options
author | fhajny <fhajny@pkgsrc.org> | 2012-03-09 13:48:37 +0000 |
---|---|---|
committer | fhajny <fhajny@pkgsrc.org> | 2012-03-09 13:48:37 +0000 |
commit | 6e1cb7d67266c3d71cfb7e485874c2f5291aa3c7 (patch) | |
tree | a55e9d356d855d4469e88bb34b21a2526a03b643 /devel/libmemcache | |
parent | c72650e91f7552638cf7a489b8083e2d57c5e9e3 (diff) | |
download | pkgsrc-6e1cb7d67266c3d71cfb7e485874c2f5291aa3c7.tar.gz |
Fix int types for SunOS.
Diffstat (limited to 'devel/libmemcache')
-rw-r--r-- | devel/libmemcache/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/devel/libmemcache/Makefile b/devel/libmemcache/Makefile index ee3ba7d6a20..0cae906414e 100644 --- a/devel/libmemcache/Makefile +++ b/devel/libmemcache/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.5 2010/01/29 03:44:53 dmcmahill Exp $ +# $NetBSD: Makefile,v 1.6 2012/03/09 13:48:37 fhajny Exp $ # DISTNAME= libmemcache-1.4.0.b9 @@ -18,5 +18,8 @@ USE_PKGLOCALEDIR= yes USE_LIBTOOL= yes GNU_CONFIGURE= yes +CPPFLAGS.SunOS+= -Du_int16_t=uint16_t -Du_int32_t=uint32_t -Du_int64_t=uint64_t +CXXFLAGS.SunOS+= -Du_int16_t=uint16_t -Du_int32_t=uint32_t -Du_int64_t=uint64_t + .include "../../devel/sysexits/buildlink3.mk" .include "../../mk/bsd.pkg.mk" |