diff options
author | Yuri Victorovich <yuri@FreeBSD.org> | 2018-08-19 23:37:06 +0000 |
---|---|---|
committer | Yuri Victorovich <yuri@FreeBSD.org> | 2018-08-19 23:37:06 +0000 |
commit | ffc2a3082a9476a314ea2a1a2216a503024f0905 (patch) | |
tree | ef9a15b2857295612d4a3b8927ba002f96a99b59 /x11-toolkits/wxgtk31 | |
parent | a7427f613753bd2f5ad6bda06660128c3647b3c2 (diff) | |
download | ports-ffc2a3082a9476a314ea2a1a2216a503024f0905.tar.gz ports-ffc2a3082a9476a314ea2a1a2216a503024f0905.zip |
x11-toolkits/wxgtk30 and x11-toolkits/wxgtk31: Fix the problem that TLS is broken on armv6/7
ftp/filezilla was dumping core
PR: 229396
Submitted by: Ulrich Grey <usenet@ulrich-grey.de>
Approved by: portmaster@bsdforge.com (maintainer's timeout on x11-toolkits/wxgtk30; ~50 days)
MFH: 2018Q3
Notes
Notes:
svn path=/head/; revision=477608
Diffstat (limited to 'x11-toolkits/wxgtk31')
-rw-r--r-- | x11-toolkits/wxgtk31/Makefile | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/x11-toolkits/wxgtk31/Makefile b/x11-toolkits/wxgtk31/Makefile index fd9ebff831c6..f13e672869db 100644 --- a/x11-toolkits/wxgtk31/Makefile +++ b/x11-toolkits/wxgtk31/Makefile @@ -3,7 +3,7 @@ PORTNAME= wx DISTVERSIONPREFIX= v DISTVERSION= 3.1.1 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= x11-toolkits PKGNAMESUFFIX= 31-gtk3 @@ -71,6 +71,11 @@ WEBKIT_LIB_DEPENDS= libwebkit2gtk-4.0.so:www/webkit2-gtk3 .include <bsd.port.pre.mk> +# TLS is broken on armv6/7, PR 229396 +.if ${ARCH} == armv6 || ${ARCH} == armv7 +CONFIGURE_ARGS+=--disable-tls +.endif + # PR 196703, 197031 .if ${CHOSEN_COMPILER_TYPE} == gcc CONFIGURE_ARGS+=--disable-precomp-headers |