Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 24 Jul 2023 12:52:52 GMT
From:      Muhammad Moinur Rahman <bofh@FreeBSD.org>
To:        ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org
Subject:   git: 2dad9fa1b47a - main - textproc/sary: Fix build with llvm16
Message-ID:  <202307241252.36OCqqTv097014@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch main has been updated by bofh:

URL: https://cgit.FreeBSD.org/ports/commit/?id=2dad9fa1b47a53a9d10ae3b934cb1c6f961600a8

commit 2dad9fa1b47a53a9d10ae3b934cb1c6f961600a8
Author:     Muhammad Moinur Rahman <bofh@FreeBSD.org>
AuthorDate: 2023-07-24 12:06:04 +0000
Commit:     Muhammad Moinur Rahman <bofh@FreeBSD.org>
CommitDate: 2023-07-24 12:52:37 +0000

    textproc/sary: Fix build with llvm16
    
    - Pet portclippy
    
    Sponsored by:   The FreeBSD Foundation
---
 textproc/sary/Makefile | 13 +++++++++++--
 1 file changed, 11 insertions(+), 2 deletions(-)

diff --git a/textproc/sary/Makefile b/textproc/sary/Makefile
index 615b585bcdd2..94f45315f854 100644
--- a/textproc/sary/Makefile
+++ b/textproc/sary/Makefile
@@ -8,20 +8,29 @@ MAINTAINER=	ports@FreeBSD.org
 COMMENT=	Suffix array library and tools, which provide fast full-text search
 WWW=		http://sary.sourceforge.net/index.html.en
 
-GNU_CONFIGURE=	yes
 USES=		gnome libtool pathfix pkgconfig
 USE_GNOME=	glib20
 USE_LDCONFIG=	yes
 
+GNU_CONFIGURE=	yes
+
 OPTIONS_DEFINE=	DOCS
 
+.include <bsd.port.options.mk>
+
+.if ${OPSYS} == FreeBSD && ${OSVERSION} >= 1400091
+CFLAGS+=	-Wno-error=incompatible-function-pointer-types
+.endif
+
 post-patch:
 	@${REINPLACE_CMD} -e '/^SUBDIRS/s|docs||g' ${WRKSRC}/Makefile.in
 
 post-install:
+	${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libsary.so
+
+post-install-DOCS-on:
 	@${MKDIR} ${STAGEDIR}${DOCSDIR}
 	cd ${WRKSRC}/docs && ${FIND} . ! -name "*Makefile*" | \
 		${CPIO} -pdm -L -R ${SHAREOWN}:${SHAREGRP} ${STAGEDIR}${DOCSDIR}
-	${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libsary.so
 
 .include <bsd.port.mk>



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202307241252.36OCqqTv097014>