diff options
-rw-r--r-- | security/tor-devel/Makefile | 4 | ||||
-rw-r--r-- | security/tor/Makefile | 4 |
2 files changed, 8 insertions, 0 deletions
diff --git a/security/tor-devel/Makefile b/security/tor-devel/Makefile index a5434e96a82b..e6e19a3ef52f 100644 --- a/security/tor-devel/Makefile +++ b/security/tor-devel/Makefile @@ -111,6 +111,10 @@ LIB_DEPENDS+= libtcmalloc.so:devel/google-perftools PORTSCOUT= limit:^[0-9]+\.[0-9]+\.[0-9]+\.[0-9]+-[a-z].*$$ +.if ${SSL_DEFAULT:Mlibressl*} +BROKEN= Libressl 3.2.1 with compatibility issues to Tor relays: https://gitlab.torproject.org/tpo/core/tor/-/issues/40128 +.endif + post-patch: @${REINPLACE_CMD} -E -e "s@(-z) (relro|now)@-Wl,\1,\2@g" \ ${WRKSRC}/configure diff --git a/security/tor/Makefile b/security/tor/Makefile index b28c21426c8c..cb55cee00ce0 100644 --- a/security/tor/Makefile +++ b/security/tor/Makefile @@ -92,6 +92,10 @@ LIB_DEPENDS+= libtcmalloc.so:devel/google-perftools .endif .endif +.if ${SSL_DEFAULT:Mlibressl*} +BROKEN= Libressl 3.2.1 with compatibility issues to Tor relays: https://gitlab.torproject.org/tpo/core/tor/-/issues/40128 +.endif + post-patch: @${REINPLACE_CMD} -E -e "s@(-z) (relro|now)@-Wl,\1,\2@g" \ ${WRKSRC}/configure |