git: 9d38fdcd28a7 - main - security/tor: No longer cater to GCC 4.x
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Sun, 10 Mar 2024 22:28:52 UTC
The branch main has been updated by gerald: URL: https://cgit.FreeBSD.org/ports/commit/?id=9d38fdcd28a7601f37ca1399b631726a7956280c commit 9d38fdcd28a7601f37ca1399b631726a7956280c Author: Gerald Pfeifer <gerald@FreeBSD.org> AuthorDate: 2024-03-10 22:28:20 +0000 Commit: Gerald Pfeifer <gerald@FreeBSD.org> CommitDate: 2024-03-10 22:28:20 +0000 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) --- security/tor/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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