Received: by mail.netbsd.org (Postfix, from userid 605) id 434B384D3A; Mon, 19 Apr 2021 07:22:32 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 7EA8784CE2 for ; Mon, 19 Apr 2021 07:22:31 +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 HicQwpX_Xy0x for ; Mon, 19 Apr 2021 07:22:31 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id D0FCC84C13 for ; Mon, 19 Apr 2021 07:22:30 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id C3488FA95; Mon, 19 Apr 2021 07:22:30 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_161881695055270" MIME-Version: 1.0 Date: Mon, 19 Apr 2021 07:22:30 +0000 From: "Maya Rashish" Subject: CVS commit: pkgsrc/net/GeoIP To: pkgsrc-changes@NetBSD.org Reply-To: maya@netbsd.org X-Mailer: log_accum Message-Id: <20210419072230.C3488FA95@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_161881695055270 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: maya Date: Mon Apr 19 07:22:30 UTC 2021 Modified Files: pkgsrc/net/GeoIP: Makefile Log Message: GeoIP: force-fail gethostbyname_r configure check. NetBSD has this not-like-linux libc symbol and tries to hide it, but not well enough that autoconf fails to find it. Bump PKGREVISION for binary change. From Stefan Schaeckeler in PR pkg/56116 To generate a diff of this commit: cvs rdiff -u -r1.32 -r1.33 pkgsrc/net/GeoIP/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_161881695055270 Content-Disposition: inline Content-Length: 697 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/net/GeoIP/Makefile diff -u pkgsrc/net/GeoIP/Makefile:1.32 pkgsrc/net/GeoIP/Makefile:1.33 --- pkgsrc/net/GeoIP/Makefile:1.32 Wed Jan 8 11:59:43 2020 +++ pkgsrc/net/GeoIP/Makefile Mon Apr 19 07:22:30 2021 @@ -1,6 +1,7 @@ -# $NetBSD: Makefile,v 1.32 2020/01/08 11:59:43 nia Exp $ +# $NetBSD: Makefile,v 1.33 2021/04/19 07:22:30 maya Exp $ DISTNAME= GeoIP-1.6.12 +PKGREVISION= 1 CATEGORIES= net MASTER_SITES= ${MASTER_SITE_GITHUB:=maxmind/} GITHUB_PROJECT= geoip-api-c @@ -16,5 +17,7 @@ GNU_CONFIGURE= yes TEST_TARGET= check +CONFIGURE_ARGS.NetBSD+= ac_cv_func_gethostbyname_r=no + .include "../../devel/zlib/buildlink3.mk" .include "../../mk/bsd.pkg.mk" --_----------=_161881695055270--