Received: by mail.netbsd.org (Postfix, from userid 605) id B0D7D84E00; Sun, 30 Aug 2020 14:00:57 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 3806784DFA for ; Sun, 30 Aug 2020 14:00:57 +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 izhim99kMgsP for ; Sun, 30 Aug 2020 14:00:56 +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 8DBF884CEE for ; Sun, 30 Aug 2020 14:00:56 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 80FFAFB27; Sun, 30 Aug 2020 14:00:56 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1598796056218790" MIME-Version: 1.0 Date: Sun, 30 Aug 2020 14:00:56 +0000 From: "Tobias Nygren" Subject: CVS commit: pkgsrc/devel/autogen To: pkgsrc-changes@NetBSD.org Reply-To: tnn@netbsd.org X-Mailer: log_accum Message-Id: <20200830140056.80FFAFB27@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. --_----------=_1598796056218790 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: tnn Date: Sun Aug 30 14:00:56 UTC 2020 Modified Files: pkgsrc/devel/autogen: Makefile Log Message: autogen: try to fix build on Darwin with ac_cv_func_utimensat=no Something is very broken in the #ifdef maze in autogen.h. This workaround is from Homebrew. To generate a diff of this commit: cvs rdiff -u -r1.49 -r1.50 pkgsrc/devel/autogen/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1598796056218790 Content-Disposition: inline Content-Length: 714 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/autogen/Makefile diff -u pkgsrc/devel/autogen/Makefile:1.49 pkgsrc/devel/autogen/Makefile:1.50 --- pkgsrc/devel/autogen/Makefile:1.49 Mon Aug 17 08:43:07 2020 +++ pkgsrc/devel/autogen/Makefile Sun Aug 30 14:00:56 2020 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.49 2020/08/17 08:43:07 tnn Exp $ +# $NetBSD: Makefile,v 1.50 2020/08/30 14:00:56 tnn Exp $ DISTNAME= autogen-5.18.16 CATEGORIES= devel @@ -23,6 +23,7 @@ MAKE_ENV+= PERL5=${PERL5} # XXX CONFIGURE_ARGS+= --disable-dependency-tracking BUILDLINK_TRANSFORM+= rm:-Werror +CONFIGURE_ENV.Darwin+= ac_cv_func_utimensat=no .include "../../devel/gettext-lib/buildlink3.mk" .include "../../lang/guile22/buildlink3.mk" --_----------=_1598796056218790--