p7zip: Enforce C++03
Clang 7svn defaults to C++11 and this code is not building with it. This switch fixes the build.
This commit is contained in:
parent
5334d35380
commit
5d79887451
1 changed files with 2 additions and 2 deletions
|
@ -1,4 +1,4 @@
|
||||||
# $NetBSD: Makefile,v 1.64 2016/11/30 14:29:09 sevan Exp $
|
# $NetBSD: Makefile,v 1.65 2018/03/21 18:47:02 kamil Exp $
|
||||||
|
|
||||||
DISTNAME= p7zip_16.02_src_all
|
DISTNAME= p7zip_16.02_src_all
|
||||||
PKGNAME= ${DISTNAME:S/_src_all//S/_/-/}
|
PKGNAME= ${DISTNAME:S/_src_all//S/_/-/}
|
||||||
|
@ -12,7 +12,7 @@ HOMEPAGE= http://p7zip.sourceforge.net/
|
||||||
COMMENT= File archiver with high compression
|
COMMENT= File archiver with high compression
|
||||||
LICENSE= gnu-lgpl-v2.1 AND unrar-license
|
LICENSE= gnu-lgpl-v2.1 AND unrar-license
|
||||||
|
|
||||||
USE_LANGUAGES= c c++
|
USE_LANGUAGES= c c++03 # c++11 breaks on Clang 7svn
|
||||||
USE_TOOLS+= gmake
|
USE_TOOLS+= gmake
|
||||||
MAKE_FILE= makefile
|
MAKE_FILE= makefile
|
||||||
MAKE_JOBS_SAFE= no # missing header when compiling sfx
|
MAKE_JOBS_SAFE= no # missing header when compiling sfx
|
||||||
|
|
Loading…
Reference in a new issue