Received: by mail.netbsd.org (Postfix, from userid 605) id A380684D66; Tue, 15 Jun 2021 08:38:21 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id DF40984D56 for ; Tue, 15 Jun 2021 08:38:20 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id bDWsr2F0SYWa for ; Tue, 15 Jun 2021 08:38:20 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id 3CDA484CBC for ; Tue, 15 Jun 2021 08:38:20 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 34C35FA95; Tue, 15 Jun 2021 08:38:20 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1623746300137620" MIME-Version: 1.0 Date: Tue, 15 Jun 2021 08:38:20 +0000 From: "Hauke Fath" Subject: CVS commit: pkgsrc/devel/fossil To: pkgsrc-changes@NetBSD.org Reply-To: hauke@netbsd.org X-Mailer: log_accum Message-Id: <20210615083820.34C35FA95@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1623746300137620 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: hauke Date: Tue Jun 15 08:38:20 UTC 2021 Modified Files: pkgsrc/devel/fossil: Makefile Log Message: Darwin (Mac OS X 10.13 here) needs iconv linked in for utf8 support. To generate a diff of this commit: cvs rdiff -u -r1.66 -r1.67 pkgsrc/devel/fossil/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1623746300137620 Content-Disposition: inline Content-Length: 930 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/fossil/Makefile diff -u pkgsrc/devel/fossil/Makefile:1.66 pkgsrc/devel/fossil/Makefile:1.67 --- pkgsrc/devel/fossil/Makefile:1.66 Wed Apr 21 11:41:24 2021 +++ pkgsrc/devel/fossil/Makefile Tue Jun 15 08:38:20 2021 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.66 2021/04/21 11:41:24 adam Exp $ +# $NetBSD: Makefile,v 1.67 2021/06/15 08:38:20 hauke Exp $ DISTNAME= fossil-src-2.15.1 PKGNAME= ${DISTNAME:S/-src//} @@ -18,6 +18,8 @@ CONFIGURE_ARGS+= --with-zlib=${BUILDLINK INSTALLATION_DIRS+= bin ${PKGMANDIR}/man1 share/doc/${PKGBASE} +LDFLAGS.Darwin+= -liconv + .include "options.mk" pre-configure: @@ -32,5 +34,8 @@ do-install: ${DESTDIR}${PREFIX}/share/doc/${PKGBASE} .include "../../security/openssl/buildlink3.mk" +.if ${OPSYS} == "Darwin" +.include "../../converters/libiconv/buildlink3.mk" +.endif .include "../../devel/zlib/buildlink3.mk" .include "../../mk/bsd.pkg.mk" --_----------=_1623746300137620--