diff options
author | Tobias Kortkamp <tobik@FreeBSD.org> | 2018-07-07 11:00:16 +0000 |
---|---|---|
committer | Tobias Kortkamp <tobik@FreeBSD.org> | 2018-07-07 11:00:16 +0000 |
commit | 760887f574c626b100fae4a7847c818de717400a (patch) | |
tree | 730467251549782ea3af82591a9310b7a0604d49 /graphics/povray37/files/patch-vfe_vfe.cpp | |
parent | net/dbeacon: Fix build with Clang 6 (diff) |
graphics/povray37: Update to 3.7.0.8
- Fixes build with Clang 6
- Reset maintainer after not responding for > 6 months
- While here add license and sort variables
Changes: https://github.com/POV-Ray/povray/releases/
PR: 215473
Submitted by: Andrey Zholos <aaz@q-fu.com>, Chad Jacob Milios <milios@ccsys.com>
Approved by: bkoenig@alpha-tierchen.de (maintainer timeout, > 6 months)
Notes
Notes:
svn path=/head/; revision=474071
Diffstat (limited to 'graphics/povray37/files/patch-vfe_vfe.cpp')
-rw-r--r-- | graphics/povray37/files/patch-vfe_vfe.cpp | 40 |
1 files changed, 0 insertions, 40 deletions
diff --git a/graphics/povray37/files/patch-vfe_vfe.cpp b/graphics/povray37/files/patch-vfe_vfe.cpp deleted file mode 100644 index e4a536ad7fa2..000000000000 --- a/graphics/povray37/files/patch-vfe_vfe.cpp +++ /dev/null @@ -1,40 +0,0 @@ ---- vfe/vfe.cpp.orig 2012-06-19 11:29:39.000000000 -0500 -+++ vfe/vfe.cpp -@@ -640,7 +640,7 @@ void vfeProcessRenderOptions::WriteError - // - //////////////////////////////////////////////////////////////////////////////////////// - --VirtualFrontEnd::VirtualFrontEnd(vfeSession& session, POVMSContext ctx, POVMSAddress addr, POVMS_Object& msg, POVMS_Object *result, shared_ptr<Console>& console) : -+VirtualFrontEnd::VirtualFrontEnd(vfeSession& session, POVMSContext ctx, POVMSAddress addr, POVMS_Object& msg, POVMS_Object *result, boost::shared_ptr<Console>& console) : - m_Session(&session), m_PlatformBase(session), renderFrontend (ctx) - { - backendAddress = addr ; -@@ -747,7 +747,7 @@ bool VirtualFrontEnd::Start(POVMS_Object - - if (m_Session->OutputToFileSet()) - { -- imageProcessing = shared_ptr<ImageProcessing> (new ImageProcessing (opts)); -+ imageProcessing = boost::shared_ptr<ImageProcessing> (new ImageProcessing (opts)); - UCS2String filename = imageProcessing->GetOutputFilename (opts, 0, 0); - options.SetUCS2String (kPOVAttrib_OutputFile, filename.c_str()); - -@@ -774,8 +774,8 @@ bool VirtualFrontEnd::Start(POVMS_Object - opts.Set(kPOVAttrib_Declare, declares); - imageProcessing.reset(); - if (m_Session->OutputToFileSet()) -- imageProcessing = shared_ptr<ImageProcessing> (new ImageProcessing (opts)) ; -- animationProcessing = shared_ptr<AnimationProcessing> (new AnimationProcessing (opts)) ; -+ imageProcessing = boost::shared_ptr<ImageProcessing> (new ImageProcessing (opts)) ; -+ animationProcessing = boost::shared_ptr<AnimationProcessing> (new AnimationProcessing (opts)) ; - options = animationProcessing->GetFrameRenderOptions () ; - } - -@@ -1151,7 +1151,7 @@ State VirtualFrontEnd::Process() - } - - // now we display the render window, if enabled -- shared_ptr<Display> display(GetDisplay()); -+ boost::shared_ptr<Display> display(GetDisplay()); - if (display != NULL) - { - vfeDisplay *disp = dynamic_cast<vfeDisplay *>(display.get()); |