Received: by mail.netbsd.org (Postfix, from userid 605) id 1B6A584E2E; Wed, 2 Oct 2019 14:53:43 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 98DF484E29 for ; Wed, 2 Oct 2019 14:53:42 +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 0lH5e8TaBSG7 for ; Wed, 2 Oct 2019 14:53:42 +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 EFFF584DEC for ; Wed, 2 Oct 2019 14:53:41 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id E2DEEFBF4; Wed, 2 Oct 2019 14:53:41 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1570028021125640" MIME-Version: 1.0 Date: Wed, 2 Oct 2019 14:53:41 +0000 From: "Kamil Rytarowski" Subject: CVS commit: pkgsrc/lang/tcl85 To: pkgsrc-changes@NetBSD.org Reply-To: kamil@netbsd.org X-Mailer: log_accum Message-Id: <20191002145341.E2DEEFBF4@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. --_----------=_1570028021125640 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:53:41 UTC 2019 Modified Files: pkgsrc/lang/tcl85: Makefile Log Message: tcl85: Disable false positive detection of gethostby*_r/NetBSD gethostbyaddr_r and gethostbyname_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.2 -r1.3 pkgsrc/lang/tcl85/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1570028021125640 Content-Disposition: inline Content-Length: 823 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/lang/tcl85/Makefile diff -u pkgsrc/lang/tcl85/Makefile:1.2 pkgsrc/lang/tcl85/Makefile:1.3 --- pkgsrc/lang/tcl85/Makefile:1.2 Thu Mar 3 21:16:46 2016 +++ pkgsrc/lang/tcl85/Makefile Wed Oct 2 14:53:41 2019 @@ -1,7 +1,8 @@ -# $NetBSD: Makefile,v 1.2 2016/03/03 21:16:46 bsiegert Exp $ +# $NetBSD: Makefile,v 1.3 2019/10/02 14:53:41 kamil Exp $ DISTNAME= tcl${TCL_VERSION}-src PKGNAME= tcl-${TCL_VERSION} +PKGREVISION= 1 CATEGORIES= lang MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=tcl/} @@ -33,6 +34,9 @@ TEST_TARGET= test 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 SUBST_FILES.tcl-config= unix/tclConfig.sh --_----------=_1570028021125640--