summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Sturmlechner <asturm@gentoo.org>2018-04-21 18:47:34 +0200
committerAndreas Sturmlechner <asturm@gentoo.org>2018-04-21 23:33:08 +0200
commit8fb344b62cabbf708a619329c4cc023e8dc0a8bf (patch)
tree302e7eeaccaabf8ab6200585b46e294268854f07 /sci-chemistry/ball/files/ball-1.4.2-PDBFile-Fix-compilation-with-gcc-4.8.patch
parentsci-chemistry/ball: Add 1.5.0_pre20180419 Qt5-based snapshot (diff)
downloadgentoo-8fb344b62cabbf708a619329c4cc023e8dc0a8bf.tar.gz
gentoo-8fb344b62cabbf708a619329c4cc023e8dc0a8bf.tar.bz2
gentoo-8fb344b62cabbf708a619329c4cc023e8dc0a8bf.zip
sci-chemistry/ball: Drop old Qt4-based
Closes: https://bugs.gentoo.org/639000 Package-Manager: Portage-2.3.31, Repoman-2.3.9
Diffstat (limited to 'sci-chemistry/ball/files/ball-1.4.2-PDBFile-Fix-compilation-with-gcc-4.8.patch')
-rw-r--r--sci-chemistry/ball/files/ball-1.4.2-PDBFile-Fix-compilation-with-gcc-4.8.patch28
1 files changed, 0 insertions, 28 deletions
diff --git a/sci-chemistry/ball/files/ball-1.4.2-PDBFile-Fix-compilation-with-gcc-4.8.patch b/sci-chemistry/ball/files/ball-1.4.2-PDBFile-Fix-compilation-with-gcc-4.8.patch
deleted file mode 100644
index f6b8ff45fa7f..000000000000
--- a/sci-chemistry/ball/files/ball-1.4.2-PDBFile-Fix-compilation-with-gcc-4.8.patch
+++ /dev/null
@@ -1,28 +0,0 @@
-From e7cc50705bed20e160bd4b637b23f57270f580a8 Mon Sep 17 00:00:00 2001
-From: Daniel Stoeckel <dstoeckel@bioinf.uni-sb.de>
-Date: Sat, 6 Apr 2013 01:06:55 +0200
-Subject: [PATCH] PDBFile:Fix compilation with gcc 4.8
-
-Apparently the automatic conversion from boost::shared_ptr<CrystalInfo>
-to boost::shared_ptr<PersistentObject> is no longer supported.
-Just change the type of the pointer and work around this issue.
----
- source/FORMAT/PDBFileDetails.C | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/source/FORMAT/PDBFileDetails.C b/source/FORMAT/PDBFileDetails.C
-index 97c2572..aedc5db 100644
---- a/source/FORMAT/PDBFileDetails.C
-+++ b/source/FORMAT/PDBFileDetails.C
-@@ -901,7 +901,7 @@ namespace BALL
- {
- if (!(current_protein_->hasProperty("CRYSTALINFO")))
- {
-- boost::shared_ptr<CrystalInfo> temp_ptr(new CrystalInfo());
-+ boost::shared_ptr<PersistentObject> temp_ptr(new CrystalInfo());
- current_protein_->setProperty(NamedProperty("CRYSTALINFO", temp_ptr));
- }
-
---
-1.9.1
-