From owner-svn-ports-branches@freebsd.org Sat Sep 19 13:21:45 2020 Return-Path: Delivered-To: svn-ports-branches@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 7719E3E0A0B; Sat, 19 Sep 2020 13:21:45 +0000 (UTC) (envelope-from rene@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4BtrvY2clcz3bRB; Sat, 19 Sep 2020 13:21:45 +0000 (UTC) (envelope-from rene@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 3D347CB19; Sat, 19 Sep 2020 13:21:45 +0000 (UTC) (envelope-from rene@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 08JDLjtY094964; Sat, 19 Sep 2020 13:21:45 GMT (envelope-from rene@FreeBSD.org) Received: (from rene@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 08JDLjZo094963; Sat, 19 Sep 2020 13:21:45 GMT (envelope-from rene@FreeBSD.org) Message-Id: <202009191321.08JDLjZo094963@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: rene set sender to rene@FreeBSD.org using -f From: Rene Ladan Date: Sat, 19 Sep 2020 13:21:45 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r548984 - branches/2020Q3/cad/openvsp X-SVN-Group: ports-branches X-SVN-Commit-Author: rene X-SVN-Commit-Paths: branches/2020Q3/cad/openvsp X-SVN-Commit-Revision: 548984 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.33 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 19 Sep 2020 13:21:45 -0000 Author: rene Date: Sat Sep 19 13:21:44 2020 New Revision: 548984 URL: https://svnweb.freebsd.org/changeset/ports/548984 Log: 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) Modified: branches/2020Q3/cad/openvsp/Makefile Directory Properties: branches/2020Q3/ (props changed) Modified: branches/2020Q3/cad/openvsp/Makefile ============================================================================== --- branches/2020Q3/cad/openvsp/Makefile Sat Sep 19 13:10:26 2020 (r548983) +++ branches/2020Q3/cad/openvsp/Makefile Sat Sep 19 13:21:44 2020 (r548984) @@ -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