Received: by mail.netbsd.org (Postfix, from userid 605) id 10A9284D4D; Thu, 14 May 2020 17:45:46 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 87C8784D41 for ; Thu, 14 May 2020 17:45:45 +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 NxUVa5CEfeOH for ; Thu, 14 May 2020 17:45:45 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id EFDA884CE3 for ; Thu, 14 May 2020 17:45:44 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id E4EA8FB27; Thu, 14 May 2020 17:45:44 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1589478344156640" MIME-Version: 1.0 Date: Thu, 14 May 2020 17:45:44 +0000 From: "Aleksey Cheusov" Subject: CVS commit: pkgsrc/devel/mk-configure To: pkgsrc-changes@NetBSD.org Reply-To: cheusov@netbsd.org X-Mailer: log_accum Message-Id: <20200514174544.E4EA8FB27@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. --_----------=_1589478344156640 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: cheusov Date: Thu May 14 17:45:44 UTC 2020 Modified Files: pkgsrc/devel/mk-configure: Makefile distinfo Log Message: Update to 0.32.2 Do not pass *all* CFLAGS flags to CXXFLAGS. This fixes builds where, for example, clang is used as a C compile and gcc is used as a C++ compiler. Also, MKC_CHECK_* variables update MKC_CPPFLAGS instead of MKC_CFLAGS. Avoid "install -d /" if there is nothing to install. This fixes some failures on some systems/conditions and improves support for foreign install(1) programs, e.g., (UCB install on Solaris) Fixes for CFLAGS containing -O2 and -D_FORTIFY_SOURCE=n main.mk: clean-ups for target "cleandir" and "clean" To generate a diff of this commit: cvs rdiff -u -r1.33 -r1.34 pkgsrc/devel/mk-configure/Makefile cvs rdiff -u -r1.25 -r1.26 pkgsrc/devel/mk-configure/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1589478344156640 Content-Disposition: inline Content-Length: 2007 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/mk-configure/Makefile diff -u pkgsrc/devel/mk-configure/Makefile:1.33 pkgsrc/devel/mk-configure/Makefile:1.34 --- pkgsrc/devel/mk-configure/Makefile:1.33 Mon Mar 30 14:10:55 2020 +++ pkgsrc/devel/mk-configure/Makefile Thu May 14 17:45:44 2020 @@ -1,7 +1,7 @@ -# $NetBSD: Makefile,v 1.33 2020/03/30 14:10:55 cheusov Exp $ +# $NetBSD: Makefile,v 1.34 2020/05/14 17:45:44 cheusov Exp $ # -DISTNAME= mk-configure-0.34.1 +DISTNAME= mk-configure-0.34.2 CATEGORIES= devel MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=mk-configure/} @@ -46,6 +46,7 @@ post-install: CHECK_PERMS_SKIP= */foobar.in */hello_world3.in */prog1.awk.in .if ${OPSYS} != NetBSD && ${OPSYS} != FreeBSD && ${OPSYS} != OpenBSD && ${OPSYS} != DragonFly && ${OPSYS} != MirBSD +# non-BSD system DEPENDS+= bmkdep-[0-9]*:../../devel/bmkdep .endif Index: pkgsrc/devel/mk-configure/distinfo diff -u pkgsrc/devel/mk-configure/distinfo:1.25 pkgsrc/devel/mk-configure/distinfo:1.26 --- pkgsrc/devel/mk-configure/distinfo:1.25 Mon Mar 30 14:10:55 2020 +++ pkgsrc/devel/mk-configure/distinfo Thu May 14 17:45:44 2020 @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.25 2020/03/30 14:10:55 cheusov Exp $ +$NetBSD: distinfo,v 1.26 2020/05/14 17:45:44 cheusov Exp $ -SHA1 (mk-configure-0.34.1.tar.gz) = 88742d1264f154fc0e980321be6072476c5cc437 -RMD160 (mk-configure-0.34.1.tar.gz) = 8dff15d9fee5d909245702dc8aaa0a6a680fc9d6 -SHA512 (mk-configure-0.34.1.tar.gz) = b7a599c3aa1dfffc268147d074837e3d74578da2f9f51d8e0cfe5d537fa825e1155b8dece20eae367390377bab327d6e51dcf994d5776ecd3ed4492fe345248e -Size (mk-configure-0.34.1.tar.gz) = 353067 bytes +SHA1 (mk-configure-0.34.2.tar.gz) = 6e09badffc4c40c30c0c0afe95479a9e8ea7a8a2 +RMD160 (mk-configure-0.34.2.tar.gz) = 10e8aa4feef334fcb2bb3187764f7ce1de747a86 +SHA512 (mk-configure-0.34.2.tar.gz) = c69b7bdb64b29a12c3da52ae531f7ab69c128cd899556397ccaea27de3d34eb5d7a3f01bc2d4bb31905db26235e1296d7314f14adf2b2e64baec31ec29e02cf6 +Size (mk-configure-0.34.2.tar.gz) = 326365 bytes --_----------=_1589478344156640--