diff options
author | maya <maya@pkgsrc.org> | 2016-11-01 20:01:57 +0000 |
---|---|---|
committer | maya <maya@pkgsrc.org> | 2016-11-01 20:01:57 +0000 |
commit | e87e3289698d8d9745919277724f563694cf25b4 (patch) | |
tree | a20af504576c3b764209775e906e2f2c47a719b7 /emulators | |
parent | 87d663a9dc38e519a67563cd7d3add12926f85be (diff) | |
download | pkgsrc-e87e3289698d8d9745919277724f563694cf25b4.tar.gz |
wine-devel: require gcc 4.7 or above.
according to https://wiki.winehq.org/Gcc :
some program (steam) require ms_hook_prologue which is only in gcc 4.5
but gcc 4.6 broke support for it, so require 4.7.
addresses PR pkg/42218 indirectly
Diffstat (limited to 'emulators')
-rw-r--r-- | emulators/wine-devel/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/emulators/wine-devel/Makefile b/emulators/wine-devel/Makefile index 2adb1a5e783..5376fed11a9 100644 --- a/emulators/wine-devel/Makefile +++ b/emulators/wine-devel/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.61 2016/09/19 13:04:21 wiz Exp $ +# $NetBSD: Makefile,v 1.62 2016/11/01 20:01:57 maya Exp $ DISTNAME= wine-1.9.18 PKGREVISION= 3 @@ -18,6 +18,7 @@ ONLY_FOR_PLATFORM+= *-*-i386 *-*-x86_64 PKG_DESTDIR_SUPPORT= user-destdir +GCC_REQD+= 4.7 USE_LANGUAGES= c USE_LIBTOOL= yes |