Received: by mail.netbsd.org (Postfix, from userid 605) id 2A67884D96; Tue, 24 Dec 2019 01:59:17 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id A68CB84CEF for ; Tue, 24 Dec 2019 01:59:16 +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 eRNcpL7MaWai for ; Tue, 24 Dec 2019 01:59:16 +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 061BB84CD5 for ; Tue, 24 Dec 2019 01:59:16 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id F2253FA97; Tue, 24 Dec 2019 01:59:15 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1577152755240960" MIME-Version: 1.0 Date: Tue, 24 Dec 2019 01:59:15 +0000 From: "Darrin B. Jewell" Subject: CVS commit: pkgsrc/math/octave To: pkgsrc-changes@NetBSD.org Reply-To: dbj@netbsd.org X-Mailer: log_accum Message-Id: <20191224015915.F2253FA97@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. --_----------=_1577152755240960 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: dbj Date: Tue Dec 24 01:59:15 UTC 2019 Modified Files: pkgsrc/math/octave: Makefile Log Message: math/octave: remove unrecognized configure args on Darwin, set --enable-link-all-dependencies To generate a diff of this commit: cvs rdiff -u -r1.195 -r1.196 pkgsrc/math/octave/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1577152755240960 Content-Disposition: inline Content-Length: 1259 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/math/octave/Makefile diff -u pkgsrc/math/octave/Makefile:1.195 pkgsrc/math/octave/Makefile:1.196 --- pkgsrc/math/octave/Makefile:1.195 Sat Nov 2 16:16:20 2019 +++ pkgsrc/math/octave/Makefile Tue Dec 24 01:59:15 2019 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.195 2019/11/02 16:16:20 rillig Exp $ +# $NetBSD: Makefile,v 1.196 2019/12/24 01:59:15 dbj Exp $ DISTNAME= octave-5.1.0 PKGREVISION= 8 @@ -28,7 +28,6 @@ USE_LANGUAGES= c c++ fortran77 # needed for loading of shared objects such as those in the # octave-forge package or user written ones compiled with mkoctfile -CONFIGURE_ARGS+= --enable-dl CONFIGURE_ARGS+= --enable-static CONFIGURE_ARGS+= --enable-shared @@ -47,8 +46,8 @@ CONFIGURE_ENV+= MKOCTFILE_F77=${FCPATH} # which conflicts with the one in the X11 headers, so avoid pulling in X11. CONFIGURE_ARGS.Darwin+= --without-x -# The OpenGL framework doesn't have osmesa and the X11 one has header conflicts with the framework -CONFIGURE_ARGS.Darwin+= --without-OSMesa +# This is needed on Darwin or we get link failures on modules. +CONFIGURE_ARGS.Darwin+= --enable-link-all-dependencies # We use this to install .oct files so it doesn't strip them. CONFIGURE_ENV+= INSTALL_LIB=${INSTALL_LIB:Q} --_----------=_1577152755240960--