diff options
author | Gerald Pfeifer <gerald@FreeBSD.org> | 2022-11-27 07:12:55 +0000 |
---|---|---|
committer | Gerald Pfeifer <gerald@FreeBSD.org> | 2022-11-27 07:12:55 +0000 |
commit | 587e43aed0a41ccf813d71f6f2380d4af164e3a7 (patch) | |
tree | adf45e619acb9ef4ed03b1b160de488f29d7f905 | |
parent | b7016da339dd2f6b538a5818f81abdb2e4f552d3 (diff) | |
download | ports-587e43aed0a41ccf813d71f6f2380d4af164e3a7.tar.gz ports-587e43aed0a41ccf813d71f6f2380d4af164e3a7.zip |
mail/milter-callback: No longer cater to GCC 4.2
USES=compiler no longer can pull in the old GCC 4.2-based system
compiler, so remove special handling of that case.
Approved by: ehaupt (maintainer)
-rw-r--r-- | mail/milter-callback/Makefile | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/mail/milter-callback/Makefile b/mail/milter-callback/Makefile index e07a116c681f..28160789596c 100644 --- a/mail/milter-callback/Makefile +++ b/mail/milter-callback/Makefile @@ -28,10 +28,6 @@ LDFLAGS+= -lmilter -lthr -L${LOCALBASE}/lib -lspf2 .include <bsd.port.pre.mk> -.if ${CHOSEN_COMPILER_TYPE} == gcc && ${COMPILER_VERSION} <= 42 -CFLAGS+= -fnested-functions -.endif - do-build: .for f in ${SRC_FILES} ${CC} ${CFLAGS} -c ${WRKSRC}/${f} -o ${WRKSRC}/${f:C/\.c/.o/} |