Received: by mail.netbsd.org (Postfix, from userid 605) id 292A784D71; Tue, 24 Dec 2019 01:58:50 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id A1AF884CEF for ; Tue, 24 Dec 2019 01:58:49 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id TfK3nKu09eaG for ; Tue, 24 Dec 2019 01:58:49 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 1DE6B84CD5 for ; Tue, 24 Dec 2019 01:58:49 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 12D0DFA97; Tue, 24 Dec 2019 01:58:49 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_157715272950340" MIME-Version: 1.0 Date: Tue, 24 Dec 2019 01:58:49 +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: <20191224015849.12D0DFA97@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. --_----------=_157715272950340 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:58:48 UTC 2019 Modified Files: pkgsrc/math/octave: distinfo Added Files: pkgsrc/math/octave/patches: patch-liboctave_util_quit.cc Log Message: math/octave: add missing header for use of exit system call To generate a diff of this commit: cvs rdiff -u -r1.56 -r1.57 pkgsrc/math/octave/distinfo cvs rdiff -u -r0 -r1.1 \ pkgsrc/math/octave/patches/patch-liboctave_util_quit.cc Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_157715272950340 Content-Disposition: inline Content-Length: 1838 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/math/octave/distinfo diff -u pkgsrc/math/octave/distinfo:1.56 pkgsrc/math/octave/distinfo:1.57 --- pkgsrc/math/octave/distinfo:1.56 Tue Mar 5 11:11:12 2019 +++ pkgsrc/math/octave/distinfo Tue Dec 24 01:58:48 2019 @@ -1,4 +1,4 @@ -$NetBSD: distinfo,v 1.56 2019/03/05 11:11:12 ryoon Exp $ +$NetBSD: distinfo,v 1.57 2019/12/24 01:58:48 dbj Exp $ SHA1 (octave-5.1.0.tar.gz) = 75a5ec450473e4c39290fdab9feade4a5739e465 RMD160 (octave-5.1.0.tar.gz) = b8b4469d70f1b67be688e12ff551e6b614c70213 @@ -11,6 +11,7 @@ SHA1 (patch-libgnu_stdio.in.h) = 112a424 SHA1 (patch-libinterp_corefcn_input.cc) = 1dc78f00ffbb41f493ebc0889cc0a37d598507c5 SHA1 (patch-libinterp_dldfcn_config-module.awk) = 54b64357b1ef80c5e55eb5eccf742d2267eb277d SHA1 (patch-libinterp_dldfcn_module.mk) = 2362d824497a8892078437c24757ae1e40e2e556 +SHA1 (patch-liboctave_util_quit.cc) = 8e0209068be7d48ccebbce0e08a29072c07b0d22 SHA1 (patch-liboctave_wrappers_iconv-wrappers.h) = 9995e784844ae2c2d7a77f975cd8b8954ab8a773 SHA1 (patch-m4_acinclude.m4) = 16dfa3a47403b0c6bc5935fdb5f1162a393b3f25 SHA1 (patch-scripts_miscellaneous_unpack.m) = 82c9ca170762e223c8e5a6f88a7dd9fe2a2a33d0 Added files: Index: pkgsrc/math/octave/patches/patch-liboctave_util_quit.cc diff -u /dev/null pkgsrc/math/octave/patches/patch-liboctave_util_quit.cc:1.1 --- /dev/null Tue Dec 24 01:58:49 2019 +++ pkgsrc/math/octave/patches/patch-liboctave_util_quit.cc Tue Dec 24 01:58:48 2019 @@ -0,0 +1,14 @@ +$NetBSD: patch-liboctave_util_quit.cc,v 1.1 2019/12/24 01:58:48 dbj Exp $ + +Add missing header file for use of exit system call + +--- liboctave/util/quit.cc.orig 2019-02-23 17:33:37.000000000 +0000 ++++ liboctave/util/quit.cc +@@ -25,6 +25,7 @@ along with Octave; see the file COPYING. + #endif + + #include ++#include + + #include + --_----------=_157715272950340--