sslh uses C99. Fix build on sparc64 with the usual c99 dance

This commit is contained in:
kmos 2022-01-16 09:20:20 +00:00
parent 4fe35df384
commit c343eba468

View File

@ -1,4 +1,4 @@
# $OpenBSD: Makefile,v 1.26 2021/10/30 14:51:25 bket Exp $
# $OpenBSD: Makefile,v 1.27 2022/01/16 09:20:20 kmos Exp $
COMMENT = SSL/SSH multiplexer
@ -43,4 +43,9 @@ do-install:
${INSTALL_PROGRAM} ${WRKSRC}/$p ${PREFIX}/sbin
.endfor
.include <bsd.port.arch.mk>
.if !${PROPERTIES:Mclang}
CFLAGS += -std=gnu99
.endif
.include <bsd.port.mk>