aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGerald Pfeifer <gerald@FreeBSD.org>2024-03-10 22:28:20 +0000
committerGerald Pfeifer <gerald@FreeBSD.org>2024-03-10 22:28:20 +0000
commit9d38fdcd28a7601f37ca1399b631726a7956280c (patch)
tree6f9b0a73bfb93b993691111376c7c0540cf4a572
parent890481ff7afdbdf89d0eebf3f5f1829a30aa82bf (diff)
downloadports-9d38fdcd28a7601f37ca1399b631726a7956280c.tar.gz
ports-9d38fdcd28a7601f37ca1399b631726a7956280c.zip
security/tor: No longer cater to GCC 4.x
GCC 4.x has not been in use in the ports tree for quite a while (short of one single port). Remove special casing for it which essentially became a noop. Approved by: yuri (maintainer)
-rw-r--r--security/tor/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/security/tor/Makefile b/security/tor/Makefile
index 90074043cfce..78345535cb73 100644
--- a/security/tor/Makefile
+++ b/security/tor/Makefile
@@ -70,7 +70,7 @@ BUILD_DEPENDS+= asciidoc:textproc/asciidoc
CONFIGURE_ARGS+= --disable-asciidoc
.endif
-.if !defined(USE_GCC) && empty(CC:T:M*gcc4*) && \
+.if !defined(USE_GCC) && \
empty(PORT_OPTIONS:MSTATIC_TOR)
CONFIGURE_ARGS+= --enable-gcc-hardening
.else