diff options
author | nia <nia@pkgsrc.org> | 2019-09-13 13:13:31 +0000 |
---|---|---|
committer | nia <nia@pkgsrc.org> | 2019-09-13 13:13:31 +0000 |
commit | 90adaef75f125fa8414eabd5878ecd201dbf60c4 (patch) | |
tree | f3aefcf457e49cd0ec7a5af59c666a3af0691c33 /emulators | |
parent | 7cf87fba959a45f62bdf4af922e41fabcc17627f (diff) | |
download | pkgsrc-90adaef75f125fa8414eabd5878ecd201dbf60c4.tar.gz |
xm8: fails with newer C++ standard, force c++03
Diffstat (limited to 'emulators')
-rw-r--r-- | emulators/xm8/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/emulators/xm8/Makefile b/emulators/xm8/Makefile index a5317030133..f562d0d93dd 100644 --- a/emulators/xm8/Makefile +++ b/emulators/xm8/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.1 2019/09/07 00:36:34 tsutsui Exp $ +# $NetBSD: Makefile,v 1.2 2019/09/13 13:13:31 nia Exp $ VERSION= 1.70 DISTNAME= xm8_${VERSION:S/.//} @@ -17,7 +17,7 @@ EXTRACT_DIR= ${WRKDIR}/${DISTNAME} WRKSRC= ${EXTRACT_DIR} USE_TOOLS+= gmake unzip -USE_LANGUAGES= c c++ +USE_LANGUAGES= c c++03 NO_CONFIGURE= YES INSTALLATION_DIRS+= bin share/doc/xm8 |