diff options
author | jperkin <jperkin@pkgsrc.org> | 2014-07-09 12:20:04 +0000 |
---|---|---|
committer | jperkin <jperkin@pkgsrc.org> | 2014-07-09 12:20:04 +0000 |
commit | 4805e5ecf37166c83e9943ad9468743e586ecb9e (patch) | |
tree | 4c9543cc6eaf5ebe2d40e4d28f24a84d88e68890 /net | |
parent | a6fa0a8e7bb5d417c5eaf14b9cdf9186865cbe02 (diff) | |
download | pkgsrc-4805e5ecf37166c83e9943ad9468743e586ecb9e.tar.gz |
Needs c99, __EXTENSIONS__ and -lnsl on SunOS.
Diffstat (limited to 'net')
-rw-r--r-- | net/vinagre/Makefile | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/net/vinagre/Makefile b/net/vinagre/Makefile index d16ea9ea386..27eb74d33b0 100644 --- a/net/vinagre/Makefile +++ b/net/vinagre/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.56 2014/05/05 00:48:16 ryoon Exp $ +# $NetBSD: Makefile,v 1.57 2014/07/09 12:20:04 jperkin Exp $ # DISTNAME= vinagre-3.6.2 @@ -17,10 +17,13 @@ BUILD_DEPENDS+= itstool-[0-9]*:../../textproc/itstool GNU_CONFIGURE= yes USE_LIBTOOL= yes USE_TOOLS+= gmake intltool pkg-config msgfmt -USE_LANGUAGES= c c++ +USE_LANGUAGES= c99 c++ USE_PKGLOCALEDIR= yes +CFLAGS.SunOS+= -D__EXTENSIONS__ +LDFLAGS.SunOS+= -lnsl + .include "../../mk/compiler.mk" .if !empty(PKGSRC_COMPILER:Mclang) CFLAGS+= -Wno-error=format-nonliteral |