git: 63869654cb02 - main - net-mgmt/sysmon: Fix build with llvm16

From: Muhammad Moinur Rahman <bofh_at_FreeBSD.org>
Date: Sun, 23 Jul 2023 18:45:30 UTC
The branch main has been updated by bofh:

URL: https://cgit.FreeBSD.org/ports/commit/?id=63869654cb0293fa588e5d0a0346fc89629a8346

commit 63869654cb0293fa588e5d0a0346fc89629a8346
Author:     Muhammad Moinur Rahman <bofh@FreeBSD.org>
AuthorDate: 2023-07-23 18:27:44 +0000
Commit:     Muhammad Moinur Rahman <bofh@FreeBSD.org>
CommitDate: 2023-07-23 18:45:16 +0000

    net-mgmt/sysmon: Fix build with llvm16
    
    - Pet portclippy
    
    Approved by:    portmgr (blanket)
    Sponsored by:   The FreeBSD Foundation
---
 net-mgmt/sysmon/Makefile | 11 ++++++++++-
 1 file changed, 10 insertions(+), 1 deletion(-)

diff --git a/net-mgmt/sysmon/Makefile b/net-mgmt/sysmon/Makefile
index ac4dd1f64942..cba5b6485a22 100644
--- a/net-mgmt/sysmon/Makefile
+++ b/net-mgmt/sysmon/Makefile
@@ -11,9 +11,10 @@ WWW=		https://puck.nether.net/sysmon/
 
 LICENSE=	GPLv2
 
-GNU_CONFIGURE=	yes
 USES=		alias ssl
 
+GNU_CONFIGURE=	yes
+
 OPTIONS_DEFINE=	DOCS
 
 DOCS=		Changes.html binaries.html config.html docs.html index.html \
@@ -21,6 +22,12 @@ DOCS=		Changes.html binaries.html config.html docs.html index.html \
 		sysmon.man.html reporting.xml-spec.txt
 MANPAGE=	sysmon.man.8 sysmon.conf.man.8
 
+.include <bsd.port.options.mk>
+
+.if ${OPSYS} == FreeBSD && ${OSVERSION} >= 1400091
+CFLAGS+=	-Wno-error=incompatible-function-pointer-types
+.endif
+
 do-install:
 	${INSTALL_PROGRAM} ${WRKSRC}/src/sysmon ${STAGEDIR}${PREFIX}/bin
 	${INSTALL_PROGRAM} ${WRKSRC}/src/sysmond ${STAGEDIR}${PREFIX}/bin
@@ -30,6 +37,8 @@ do-install:
 .for man in ${MANPAGE}
 	${INSTALL_MAN} ${WRKSRC}/docs/${man:S/.8//} ${STAGEDIR}${MANPREFIX}/man/man8/${man}
 .endfor
+
+do-install-DOCS-on:
 	${MKDIR} ${STAGEDIR}${DOCSDIR}
 .for doc in ${DOCS}
 	${INSTALL_DATA} ${WRKSRC}/docs/${doc} ${STAGEDIR}${DOCSDIR}