MFH: r468493

Adjust __cxa_thread_atexit conditional

Approved by:	ports-secteam blanket
This commit is contained in:
Jan Beich 2018-04-27 19:49:20 +00:00
parent c753a8576a
commit df5bbf92b8
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/branches/2018Q2/; revision=468494
3 changed files with 18 additions and 5 deletions

View File

@ -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-* \
@ -139,6 +138,12 @@ FEDERATED_SUB_LIST+= FEDER="--federated"
FEDERATED_SUB_LIST_OFF+= FEDER=""
.endif
.include <bsd.port.options.mk>
.if !defined(CLIENT_ONLY) && ${OPSYS} == FreeBSD && ${OSVERSION} < 1003506
BROKEN= no __cxa_thread_atexit() support in FreeBSD libc < 10.4
.endif
.include <bsd.port.pre.mk>
.if ${SSL_DEFAULT} == base

View File

@ -11,8 +11,6 @@ COMMENT= Lightweight Distributed Hash Table implementation
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 \
@ -40,4 +38,10 @@ PROXY_SERVER_LIB_DEPENDS= libjsoncpp.so:devel/jsoncpp \
PORTDOCS= *
.include <bsd.port.options.mk>
.if ${OPSYS} == FreeBSD && ${OSVERSION} < 1003506
BROKEN= no __cxa_thread_atexit() support in FreeBSD libc < 10.4
.endif
.include <bsd.port.mk>

View File

@ -14,8 +14,6 @@ COMMENT= Backup software to synchronize files and folders
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 \
@ -40,4 +38,10 @@ post-patch:
@${REINPLACE_CMD} -e 's|WEXITSTATUS||' ${WRKDIR}/zen/shell_execute.h
@${REINPLACE_CMD} -e 's| noexcept;|;|' ${WRKDIR}/zen/scope_guard.h
.include <bsd.port.options.mk>
.if ${OPSYS} == FreeBSD && ${OSVERSION} < 1003506
BROKEN= no __cxa_thread_atexit() support in FreeBSD libc < 10.4
.endif
.include <bsd.port.mk>