diff options
author | kamil <kamil@pkgsrc.org> | 2018-03-21 18:47:02 +0000 |
---|---|---|
committer | kamil <kamil@pkgsrc.org> | 2018-03-21 18:47:02 +0000 |
commit | add6129858788bd8e6c0df9315281bb9dea5fce7 (patch) | |
tree | 9b70a26e194361365415964e45d0849bc2ae638f /archivers | |
parent | b8809372480d5ae982cd53650ef8b55be8b71683 (diff) | |
download | pkgsrc-add6129858788bd8e6c0df9315281bb9dea5fce7.tar.gz |
p7zip: Enforce C++03
Clang 7svn defaults to C++11 and this code is not building with it.
This switch fixes the build.
Diffstat (limited to 'archivers')
-rw-r--r-- | archivers/p7zip/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/archivers/p7zip/Makefile b/archivers/p7zip/Makefile index 5801b9e12e1..250ea96ca47 100644 --- a/archivers/p7zip/Makefile +++ b/archivers/p7zip/Makefile @@ -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 PKGNAME= ${DISTNAME:S/_src_all//S/_/-/} @@ -12,7 +12,7 @@ HOMEPAGE= http://p7zip.sourceforge.net/ COMMENT= File archiver with high compression 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 MAKE_FILE= makefile MAKE_JOBS_SAFE= no # missing header when compiling sfx |