From owner-svn-ports-all@freebsd.org Fri Apr 27 19:49:22 2018 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id CD42FFB0792; Fri, 27 Apr 2018 19:49:21 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 70E586D388; Fri, 27 Apr 2018 19:49:21 +0000 (UTC) (envelope-from jbeich@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 67B222E9F; Fri, 27 Apr 2018 19:49:21 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w3RJnLO8097772; Fri, 27 Apr 2018 19:49:21 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w3RJnLsJ097768; Fri, 27 Apr 2018 19:49:21 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201804271949.w3RJnLsJ097768@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Fri, 27 Apr 2018 19:49:21 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r468494 - in branches/2018Q2: databases/mysql80-server devel/opendht sysutils/freefilesync X-SVN-Group: ports-branches X-SVN-Commit-Author: jbeich X-SVN-Commit-Paths: in branches/2018Q2: databases/mysql80-server devel/opendht sysutils/freefilesync X-SVN-Commit-Revision: 468494 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.25 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 27 Apr 2018 19:49:22 -0000 Author: jbeich Date: Fri Apr 27 19:49:20 2018 New Revision: 468494 URL: https://svnweb.freebsd.org/changeset/ports/468494 Log: MFH: r468493 Adjust __cxa_thread_atexit conditional Approved by: ports-secteam blanket Modified: branches/2018Q2/databases/mysql80-server/Makefile branches/2018Q2/devel/opendht/Makefile branches/2018Q2/sysutils/freefilesync/Makefile Directory Properties: branches/2018Q2/ (props changed) Modified: branches/2018Q2/databases/mysql80-server/Makefile ============================================================================== --- branches/2018Q2/databases/mysql80-server/Makefile Fri Apr 27 19:46:06 2018 (r468493) +++ branches/2018Q2/databases/mysql80-server/Makefile Fri Apr 27 19:49:20 2018 (r468494) @@ -81,7 +81,6 @@ PLIST_SUB= MY_DBDIR=${MY_DBDIR} \ # MySQL-Server part .if !defined(CLIENT_ONLY) USES+= mysql:80 -IGNORE_FreeBSD_10= "FreeBSD 10.0 doesn't have _cxa_thread_atexit() implemeneted in libc, it has been implemented since 11 CONFLICTS_INSTALL= mysql8[1-9]-server-* \ mysql[0-79][0-9]-server-* \ @@ -137,6 +136,12 @@ PERFSCHM_SUB_LIST+= PERFSCHEMRC="" PERFSCHM_SUB_LIST_OFF+= PERFSCHEMRC="--skip-performance-schema" FEDERATED_SUB_LIST+= FEDER="--federated" FEDERATED_SUB_LIST_OFF+= FEDER="" +.endif + +.include + +.if !defined(CLIENT_ONLY) && ${OPSYS} == FreeBSD && ${OSVERSION} < 1003506 +BROKEN= no __cxa_thread_atexit() support in FreeBSD libc < 10.4 .endif .include Modified: branches/2018Q2/devel/opendht/Makefile ============================================================================== --- branches/2018Q2/devel/opendht/Makefile Fri Apr 27 19:46:06 2018 (r468493) +++ branches/2018Q2/devel/opendht/Makefile Fri Apr 27 19:49:20 2018 (r468494) @@ -11,8 +11,6 @@ COMMENT= Lightweight Distributed Hash Table implementa LICENSE= GPLv3 LICENSE_FILE= ${WRKSRC}/COPYING -BROKEN_FreeBSD_10= Missing __cxa_thread_atexit - LIB_DEPENDS= libargon2.so:security/libargon2 \ libmsgpackc.so:devel/msgpack \ libnettle.so:security/nettle \ @@ -39,5 +37,11 @@ PROXY_SERVER_LIB_DEPENDS= libjsoncpp.so:devel/jsoncpp librestbed.so:www/restbed PORTDOCS= * + +.include + +.if ${OPSYS} == FreeBSD && ${OSVERSION} < 1003506 +BROKEN= no __cxa_thread_atexit() support in FreeBSD libc < 10.4 +.endif .include Modified: branches/2018Q2/sysutils/freefilesync/Makefile ============================================================================== --- branches/2018Q2/sysutils/freefilesync/Makefile Fri Apr 27 19:46:06 2018 (r468493) +++ branches/2018Q2/sysutils/freefilesync/Makefile Fri Apr 27 19:49:20 2018 (r468494) @@ -14,8 +14,6 @@ COMMENT= Backup software to synchronize files and fold LICENSE= GPLv3 LICENSE_FILE= ${WRKDIR}/License.txt -IGNORE_FreeBSD_10= FreeBSD 10.0 doesn't have _cxa_thread_atexit() implemeneted in libc, it has been implemented since 11 - BUILD_DEPENDS= ${LOCALBASE}/include/zenxml/xml.h:textproc/zenxml LIB_DEPENDS= libboost_system.so:devel/boost-libs \ libfontconfig.so:x11-fonts/fontconfig \ @@ -39,5 +37,11 @@ post-patch: ${WRKDIR}/zen/file_access.cpp @${REINPLACE_CMD} -e 's|WEXITSTATUS||' ${WRKDIR}/zen/shell_execute.h @${REINPLACE_CMD} -e 's| noexcept;|;|' ${WRKDIR}/zen/scope_guard.h + +.include + +.if ${OPSYS} == FreeBSD && ${OSVERSION} < 1003506 +BROKEN= no __cxa_thread_atexit() support in FreeBSD libc < 10.4 +.endif .include