Received: by mail.netbsd.org (Postfix, from userid 605) id F1EB884E2E; Wed, 2 Oct 2019 14:50:26 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 7930384E29 for ; Wed, 2 Oct 2019 14:50:26 +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 6SLi9rbJxbaG for ; Wed, 2 Oct 2019 14:50:26 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id D321584DEC for ; Wed, 2 Oct 2019 14:50:25 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id CD3E2FBF4; Wed, 2 Oct 2019 14:50:25 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1570027825175390" MIME-Version: 1.0 Date: Wed, 2 Oct 2019 14:50:25 +0000 From: "Kamil Rytarowski" Subject: CVS commit: pkgsrc/lang/tcl To: pkgsrc-changes@NetBSD.org Reply-To: kamil@netbsd.org X-Mailer: log_accum Message-Id: <20191002145025.CD3E2FBF4@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1570027825175390 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: kamil Date: Wed Oct 2 14:50:25 UTC 2019 Modified Files: pkgsrc/lang/tcl: Makefile Log Message: tcl: Disable false positive detection of gethostbyaddr_r/NetBSD gethostbyaddr_r is an internal libc symbol, not to be used in 3rd party software. Proper fix merged upstream: https://core.tcl-lang.org/tcl/info/16768d65f0 To generate a diff of this commit: cvs rdiff -u -r1.105 -r1.106 pkgsrc/lang/tcl/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1570027825175390 Content-Disposition: inline Content-Length: 774 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/lang/tcl/Makefile diff -u pkgsrc/lang/tcl/Makefile:1.105 pkgsrc/lang/tcl/Makefile:1.106 --- pkgsrc/lang/tcl/Makefile:1.105 Tue Oct 1 19:17:08 2019 +++ pkgsrc/lang/tcl/Makefile Wed Oct 2 14:50:25 2019 @@ -1,8 +1,8 @@ -# $NetBSD: Makefile,v 1.105 2019/10/01 19:17:08 rillig Exp $ +# $NetBSD: Makefile,v 1.106 2019/10/02 14:50:25 kamil Exp $ DISTNAME= tcl${TCL_VERSION}-src PKGNAME= tcl-${TCL_VERSION} -PKGREVISION= 1 +PKGREVISION= 2 CATEGORIES= lang MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=tcl/} @@ -38,6 +38,7 @@ CONFIGURE_ARGS+= --enable-64bit .endif CONFIGURE_ARGS.NetBSD+= ac_cv_func_gethostbyname_r=no +CONFIGURE_ARGS.NetBSD+= ac_cv_func_gethostbyaddr_r=no SUBST_CLASSES+= tcl-config SUBST_STAGE.tcl-config= post-build --_----------=_1570027825175390--