summaryrefslogtreecommitdiff
path: root/media-gfx/freecad/files
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2017-11-10 00:43:02 +0000
committerV3n3RiX <venerix@redcorelinux.org>2017-11-10 00:43:02 +0000
commita5332b59346f7cbf0fdbd148b54aa8a84aaf8190 (patch)
treee6d8d3589fcd01fbc3f1286185639163daa81424 /media-gfx/freecad/files
parentfceeaf01a28ee71065cf3798b70b77d3bc4ef199 (diff)
gentoo resync : 10.11.2017
Diffstat (limited to 'media-gfx/freecad/files')
-rw-r--r--media-gfx/freecad/files/freecad-0.15.4671-boost-1.60.patch16
1 files changed, 0 insertions, 16 deletions
diff --git a/media-gfx/freecad/files/freecad-0.15.4671-boost-1.60.patch b/media-gfx/freecad/files/freecad-0.15.4671-boost-1.60.patch
deleted file mode 100644
index 4a7dbabdfc55..000000000000
--- a/media-gfx/freecad/files/freecad-0.15.4671-boost-1.60.patch
+++ /dev/null
@@ -1,16 +0,0 @@
-From e0683f4db0fb56f8139f78ca2e500b21ec2a67f0 Mon Sep 17 00:00:00 2001
-From: wmayer <wmayer@users.sourceforge.net>
-Date: Mon, 28 Dec 2015 13:54:40 +0100
-Subject: [PATCH] + fixes #0002347: freecad fails to build with Boost 1.60.0
-
---- freecad-0.15.4671/src/Mod/Drawing/App/FeaturePage.cpp
-+++ freecad-0.15.4671/src/Mod/Drawing/App/FeaturePage.cpp
-@@ -195,7 +195,7 @@
- if (count < editText.size()) {
- // change values of editable texts
- boost::regex e2 ("(<text.*?freecad:editable=\""+what[1].str()+"\".*?<tspan.*?)>(.*?)(</tspan>)");
-- boost::re_detail::string_out_iterator<std::string > out(newfragment);
-+ std::back_insert_iterator<std::string> out(newfragment);
- boost::regex_replace(out, begin, what[0].second, e2, "$1>"+editText[count]+"$3");
- }
- count++;