aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAisha Tammy <gentoo@aisha.cc>2020-12-30 17:48:00 +0000
committerAisha Tammy <gentoo@aisha.cc>2020-12-30 17:48:00 +0000
commit5e1bce674bb1ec350ca0459dd07a92d100a71234 (patch)
tree0b4e934066dc3d0128018f5aff3090af21335bb6 /app-forensics/vine/files/vine-1.0-gcc46.patch
parentprofiles/package.mask: drop mask on app-doc/scalapack-docs (diff)
downloadsci-5e1bce674bb1ec350ca0459dd07a92d100a71234.tar.gz
sci-5e1bce674bb1ec350ca0459dd07a92d100a71234.tar.bz2
sci-5e1bce674bb1ec350ca0459dd07a92d100a71234.zip
app-forensics/vine: drop dead package
does not build, reverse dependency gmetadom is not available Signed-off-by: Aisha Tammy <gentoo@aisha.cc>
Diffstat (limited to 'app-forensics/vine/files/vine-1.0-gcc46.patch')
-rw-r--r--app-forensics/vine/files/vine-1.0-gcc46.patch37
1 files changed, 0 insertions, 37 deletions
diff --git a/app-forensics/vine/files/vine-1.0-gcc46.patch b/app-forensics/vine/files/vine-1.0-gcc46.patch
deleted file mode 100644
index 41dc0ae40..000000000
--- a/app-forensics/vine/files/vine-1.0-gcc46.patch
+++ /dev/null
@@ -1,37 +0,0 @@
-https://groups.google.com/d/msg/bitblaze-users/sTTPlFEzWo0/0ZjPL0QYC8IJ
-
-Index: libasmir/src/vex/irtoir-i386.cpp
-===================================================================
---- a/libasmir/src/vex/irtoir-i386.cpp (old revision)
-+++ b/libasmir/src/vex/irtoir-i386.cpp (new revision)
-@@ -9,6 +9,13 @@
- web site at: http://bitblaze.cs.berkeley.edu/
- */
-
-+/* Because we use offsetof() for values that go in switch statement
-+ cases, we need a definition in terms of __builtin_offsetof so that
-+ GCC >= 4.6 can accept the results of offsetof() as a constant
-+ expression. They've stopped supporting the traditional definition
-+ as a macro &((type*)0)->memb, which appears in VEX's headers. */
-+#include <stddef.h>
-+
- #include <string>
- #include <vector>
- #include <iostream>
-Index: libasmir/src/vex/irtoir-arm.cpp
-===================================================================
---- a/libasmir/src/vex/irtoir-arm.cpp (old revision)
-+++ b/libasmir/src/vex/irtoir-arm.cpp (new revision)
-@@ -9,6 +9,12 @@
- web site at: http://bitblaze.cs.berkeley.edu/
- */
-
-+/* Because we use offsetof() for values that go in switch statement
-+ cases, we need a definition in terms of __builtin_offsetof so that
-+ GCC >= 4.6 can accept the results of offsetof() as a constant
-+ expression. They've stopped supporting the traditional definition
-+ as a macro &((type*)0)->memb, which appears in VEX's headers. */
-+#include <stddef.h>
-
- #include "irtoir-internal.h"
- #include "libvex_guest_arm.h"