diff options
author | gdt <gdt@pkgsrc.org> | 2019-02-20 17:47:29 +0000 |
---|---|---|
committer | gdt <gdt@pkgsrc.org> | 2019-02-20 17:47:29 +0000 |
commit | 695e226ccb0f5250e09cfcf33f0bc555432b5a44 (patch) | |
tree | 7bfb1c8a1b1968884c4ec1316aeb3420af4881c8 /geography/proj/Makefile | |
parent | 270b7ae3d8b8264a86353665cf797ccbcf680b8d (diff) | |
download | pkgsrc-695e226ccb0f5250e09cfcf33f0bc555432b5a44.tar.gz |
geography/proj: Set USE_LANGUAGES to c++11
The package uses explicit --std=c++11, so declare that correctly (even
though it built on netbsd-8 with just c++).
Diffstat (limited to 'geography/proj/Makefile')
-rw-r--r-- | geography/proj/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/geography/proj/Makefile b/geography/proj/Makefile index 1e24f8902dc..1b0db85758b 100644 --- a/geography/proj/Makefile +++ b/geography/proj/Makefile @@ -1,9 +1,9 @@ -# $NetBSD: Makefile,v 1.14 2019/02/20 17:42:00 gdt Exp $ +# $NetBSD: Makefile,v 1.15 2019/02/20 17:47:29 gdt Exp $ VERSION_BASE= 5.2.0 VERSION_RC= VERSION= ${VERSION_BASE}${VERSION_RC} -PKGREVISION= 1 +PKGREVISION= 2 # proj RCs have names like 5.1.0RC1 but unpack to 5.1.0 WRKFINAL= proj-${VERSION_BASE} WRKSRC= ${WRKDIR}/${WRKFINAL} @@ -22,7 +22,7 @@ LICENSE= mit PREV_PKGPATH= misc/proj -USE_LANGUAGES= c99 c++ +USE_LANGUAGES= c99 c++11 USE_LIBTOOL= yes USE_TOOLS+= gmake GNU_CONFIGURE= yes |