Received: by mail.netbsd.org (Postfix, from userid 605) id 6795584D75; Tue, 1 Jun 2021 22:13:37 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 9801584D56 for ; Tue, 1 Jun 2021 22:13:36 +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 Wc-pn_KSwbWz for ; Tue, 1 Jun 2021 22:13:36 +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 E5BA984CD8 for ; Tue, 1 Jun 2021 22:13:35 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id DFD59FA95; Tue, 1 Jun 2021 22:13:35 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_162258561576480" MIME-Version: 1.0 Date: Tue, 1 Jun 2021 22:13:35 +0000 From: "Dr. Thomas Orgis" Subject: CVS commit: pkgsrc/math/lapack/patches To: pkgsrc-changes@NetBSD.org Reply-To: thor@netbsd.org X-Mailer: log_accum Message-Id: <20210601221335.DFD59FA95@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_162258561576480 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: thor Date: Tue Jun 1 22:13:35 UTC 2021 Modified Files: pkgsrc/math/lapack/patches: patch-SRC_CMakeLists.txt Log Message: math/lapack: fix static library name preparing for lapack64 The upcoming lapack64 needs the library name liblapack64, the variable for that was missing in the patch. This does not change the build of math/lapack itself. To generate a diff of this commit: cvs rdiff -u -r1.2 -r1.3 pkgsrc/math/lapack/patches/patch-SRC_CMakeLists.txt Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_162258561576480 Content-Disposition: inline Content-Length: 846 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/math/lapack/patches/patch-SRC_CMakeLists.txt diff -u pkgsrc/math/lapack/patches/patch-SRC_CMakeLists.txt:1.2 pkgsrc/math/lapack/patches/patch-SRC_CMakeLists.txt:1.3 --- pkgsrc/math/lapack/patches/patch-SRC_CMakeLists.txt:1.2 Wed May 12 14:32:51 2021 +++ pkgsrc/math/lapack/patches/patch-SRC_CMakeLists.txt Tue Jun 1 22:13:35 2021 @@ -1,4 +1,4 @@ -$NetBSD: patch-SRC_CMakeLists.txt,v 1.2 2021/05/12 14:32:51 thor Exp $ +$NetBSD: patch-SRC_CMakeLists.txt,v 1.3 2021/06/01 22:13:35 thor Exp $ Support combined build of shared and static libraries. @@ -12,7 +12,7 @@ Support combined build of shared and sta + add_library(${LAPACKLIB}_static STATIC ${SOURCES}) + set_target_properties( + ${LAPACKLIB}_static PROPERTIES -+ OUTPUT_NAME lapack ++ OUTPUT_NAME ${LAPACKLIB} + ) + + if(USE_XBLAS) --_----------=_162258561576480--