diff options
author | Maho Nakata <maho@FreeBSD.org> | 2016-07-27 05:44:40 +0000 |
---|---|---|
committer | Maho Nakata <maho@FreeBSD.org> | 2016-07-27 05:44:40 +0000 |
commit | 539ea053194b03ad43784093bb64cac56cb3ed61 (patch) | |
tree | b31703317cbaf61ebdd795c666a5d2ab49a94634 /math/octave/files | |
parent | Upgrade from 5.0.29 to 5.0.30: (diff) |
1. Some dependencies were added per QA advice.
2. updated to version 4.0.3
deleted obsolete patch 'patch-libinterp-octave-value-ov-classdef'
Java and GUI are now optional
plist is now generated automatically
revised dependencies
PR: 211291
Submitted by: bsam (1), Alexander Sherikov (2)
Diffstat (limited to 'math/octave/files')
-rw-r--r-- | math/octave/files/patch-libinterp-octave-value-ov-classdef.cc | 14 | ||||
-rw-r--r-- | math/octave/files/patch-libinterp-octave-value-ov-classdef.h | 11 |
2 files changed, 0 insertions, 25 deletions
diff --git a/math/octave/files/patch-libinterp-octave-value-ov-classdef.cc b/math/octave/files/patch-libinterp-octave-value-ov-classdef.cc deleted file mode 100644 index 5280dad9cd8c..000000000000 --- a/math/octave/files/patch-libinterp-octave-value-ov-classdef.cc +++ /dev/null @@ -1,14 +0,0 @@ ---- 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 diff --git a/math/octave/files/patch-libinterp-octave-value-ov-classdef.h b/math/octave/files/patch-libinterp-octave-value-ov-classdef.h deleted file mode 100644 index d7c413868baa..000000000000 --- a/math/octave/files/patch-libinterp-octave-value-ov-classdef.h +++ /dev/null @@ -1,11 +0,0 @@ ---- 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 (); } - |