aboutsummaryrefslogtreecommitdiff
path: root/graphics/k3d/gcc7.patch
diff options
context:
space:
mode:
authorB. Watson <yalhcru@gmail.com>2022-03-02 13:58:17 -0500
committerWilly Sudiarto Raharjo <willysr@slackbuilds.org>2022-03-03 15:56:42 +0700
commit091cfca8144023e985a4c0fac66a8cc15d6a39b7 (patch)
tree28ca30a0bbf2b03d8a0f803aecf42e1f8443447f /graphics/k3d/gcc7.patch
parent1c30d5e0ebd1b91bad657e9d3aeacb797a6b7f37 (diff)
graphics/k3d: Removed (FTBFS).
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'graphics/k3d/gcc7.patch')
-rw-r--r--graphics/k3d/gcc7.patch23
1 files changed, 0 insertions, 23 deletions
diff --git a/graphics/k3d/gcc7.patch b/graphics/k3d/gcc7.patch
deleted file mode 100644
index 887eeb8bd3..0000000000
--- a/graphics/k3d/gcc7.patch
+++ /dev/null
@@ -1,23 +0,0 @@
-From d9786540a205bec0b381f339497d7c2cce00376b Mon Sep 17 00:00:00 2001
-From: Jonathan Wakely <jwakely@redhat.com>
-Date: Wed, 1 Feb 2017 02:07:28 +0000
-Subject: [PATCH] Add required header for ostream operations
-
-This file uses std::ostream::operator<<(double) without including
-<ostream> and so fails to compile using GCC 7.
----
- k3dsdk/measurement.h | 1 +
- 1 file changed, 1 insertion(+)
-
-diff --git a/k3dsdk/measurement.h b/k3dsdk/measurement.h
-index 9edf7aef..67df5aa0 100644
---- a/k3dsdk/measurement.h
-+++ b/k3dsdk/measurement.h
-@@ -27,6 +27,7 @@
-
- #include <cassert>
- #include <iosfwd>
-+#include <ostream>
- #include <map>
- #include <string>
- #include <typeinfo>