aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRene Ladan <rene@FreeBSD.org>2020-09-19 13:21:44 +0000
committerRene Ladan <rene@FreeBSD.org>2020-09-19 13:21:44 +0000
commit810d8434b3274a5a9f1dc4f173c710f9f0cb83de (patch)
treeaf23db0a58794d5c88ac3dfded51f75c2b939fb7
parent2bbee4fd08bc09be89a0a7e1ead5e6cdb6af74d6 (diff)
downloadports-810d8434b3274a5a9f1dc4f173c710f9f0cb83de.tar.gz
ports-810d8434b3274a5a9f1dc4f173c710f9f0cb83de.zip
MFH: r548947
cad/openvsp: unexpire by allowing it to build on FreeBSD versions with PR 230888 fixed. PR: 242229 Submitted by: fernape@ (maintainer) Approved by: build fix blanket Approved by: ports-secteam (fluffy)
Notes
Notes: svn path=/branches/2020Q3/; revision=548984
-rw-r--r--cad/openvsp/Makefile3
1 files changed, 1 insertions, 2 deletions
diff --git a/cad/openvsp/Makefile b/cad/openvsp/Makefile
index 8a1edc9273a0..d68cffa81a14 100644
--- a/cad/openvsp/Makefile
+++ b/cad/openvsp/Makefile
@@ -13,7 +13,6 @@ LICENSE_NAME= NASA Open Source Agreement version 1.3
LICENSE_FILE= ${WRKSRC}/LICENSE
LICENSE_PERMS= dist-mirror dist-sell pkg-mirror pkg-sell auto-accept
-BROKEN= fails to link
BROKEN_aarch64= fails to compile: invokes x86 asm
LIB_DEPENDS= libdrm.so:graphics/libdrm \
@@ -56,7 +55,7 @@ USE_GNOME= libxml2
# See https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=230888
.if ${OPSYS} == FreeBSD
-.if (${OSVERSION} < 1200000 || ${OSVERSION} >=1300000)
+.if (${OSVERSION} < 1104507) || (${OSVERSION} >= 1200000 && ${OSVERSION} < 1202000) || (${OSVERSION} >= 1300000 && ${OSVERSION} < 1300115)
BROKEN= undefined reference to __atomic_load
.endif
.endif