From owner-svn-ports-all@freebsd.org Wed Jan 13 01:53:51 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 7700AA801B5; Wed, 13 Jan 2016 01:53:51 +0000 (UTC) (envelope-from maho@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 2D1281E63; Wed, 13 Jan 2016 01:53:51 +0000 (UTC) (envelope-from maho@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u0D1ro6j056952; Wed, 13 Jan 2016 01:53:50 GMT (envelope-from maho@FreeBSD.org) Received: (from maho@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u0D1rnG2056949; Wed, 13 Jan 2016 01:53:49 GMT (envelope-from maho@FreeBSD.org) Message-Id: <201601130153.u0D1rnG2056949@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: maho set sender to maho@FreeBSD.org using -f From: Maho Nakata Date: Wed, 13 Jan 2016 01:53:49 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r405987 - in head/math/octave: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 13 Jan 2016 01:53:51 -0000 Author: maho Date: Wed Jan 13 01:53:49 2016 New Revision: 405987 URL: https://svnweb.freebsd.org/changeset/ports/405987 Log: Forgot to add patches, and bump port revision PR: 201737 Submitted by: you.akira.noda@gmail.com Also spotted by: stephen@ Added: head/math/octave/files/patch-libinterp-octave-value-ov-classdef.cc (contents, props changed) head/math/octave/files/patch-libinterp-octave-value-ov-classdef.h (contents, props changed) Modified: head/math/octave/Makefile Modified: head/math/octave/Makefile ============================================================================== --- head/math/octave/Makefile Wed Jan 13 01:52:17 2016 (r405986) +++ head/math/octave/Makefile Wed Jan 13 01:53:49 2016 (r405987) @@ -3,6 +3,7 @@ PORTNAME= octave PORTVERSION= 4.0.0 +PORTREVISION= 1 CATEGORIES= math MASTER_SITES= GNU @@ -38,7 +39,6 @@ USES= charsetfix fortran gmake libtool USE_LDCONFIG= yes USE_PERL5= build USE_TEX= dvipsk:build -USE_GCC= yes GNU_CONFIGURE= yes USE_JAVA= yes JAVA_VERSION= 1.7+ Added: head/math/octave/files/patch-libinterp-octave-value-ov-classdef.cc ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/octave/files/patch-libinterp-octave-value-ov-classdef.cc Wed Jan 13 01:53:49 2016 (r405987) @@ -0,0 +1,14 @@ +--- libinterp/octave-value/ov-classdef.cc.orig 2015-07-21 17:05:21.000000000 +0900 ++++ libinterp/octave-value/ov-classdef.cc 2015-07-21 17:05:32.000000000 +0900 +@@ -1937,6 +1937,11 @@ + return true; + } + ++void cdef_object_scalar::mark_as_constructed (const cdef_class& cls) ++{ ++ ctor_list.erase (cls); ++} ++ + handle_cdef_object::~handle_cdef_object (void) + { + #if DEBUG_TRACE Added: head/math/octave/files/patch-libinterp-octave-value-ov-classdef.h ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/octave/files/patch-libinterp-octave-value-ov-classdef.h Wed Jan 13 01:53:49 2016 (r405987) @@ -0,0 +1,11 @@ +--- libinterp/octave-value/ov-classdef.h.orig 2015-07-21 17:04:55.000000000 +0900 ++++ libinterp/octave-value/ov-classdef.h 2015-07-21 17:05:32.000000000 +0900 +@@ -438,7 +438,7 @@ + + void mark_as_constructed (void) { ctor_list.clear (); } + +- void mark_as_constructed (const cdef_class& cls) { ctor_list.erase (cls); } ++ void mark_as_constructed (const cdef_class& cls); + + bool is_constructed (void) const { return ctor_list.empty (); } +