summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Sturmlechner <asturm@gentoo.org>2019-12-28 23:34:14 +0100
committerAndreas Sturmlechner <asturm@gentoo.org>2019-12-29 01:20:02 +0100
commit92a6aec7d300f7681223194ea170a71db5ef7258 (patch)
treef37d35b0aa532de2e00a377fce694d1966a615cc /sci-libs/ogdi/files/ogdi-3.2.0_beta2-endianess.patch
parentgames-strategy/openra: Restrict broken src_test phase (diff)
downloadgentoo-92a6aec7d300f7681223194ea170a71db5ef7258.tar.gz
gentoo-92a6aec7d300f7681223194ea170a71db5ef7258.tar.bz2
gentoo-92a6aec7d300f7681223194ea170a71db5ef7258.zip
sci-libs/ogdi: Drop 3.2.0_beta2
Package-Manager: Portage-2.3.84, Repoman-2.3.20 Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'sci-libs/ogdi/files/ogdi-3.2.0_beta2-endianess.patch')
-rw-r--r--sci-libs/ogdi/files/ogdi-3.2.0_beta2-endianess.patch18
1 files changed, 0 insertions, 18 deletions
diff --git a/sci-libs/ogdi/files/ogdi-3.2.0_beta2-endianess.patch b/sci-libs/ogdi/files/ogdi-3.2.0_beta2-endianess.patch
deleted file mode 100644
index 75c85fbb29b5..000000000000
--- a/sci-libs/ogdi/files/ogdi-3.2.0_beta2-endianess.patch
+++ /dev/null
@@ -1,18 +0,0 @@
-diff -urNad ogdi-dfsg~/vpflib/include/machine.h ogdi-dfsg/vpflib/include/machine.h
---- ogdi-dfsg~/vpflib/include/machine.h 2007-03-27 17:35:24.000000000 +0200
-+++ ogdi-dfsg/vpflib/include/machine.h 2007-03-27 17:41:16.000000000 +0200
-@@ -15,10 +15,11 @@
- long output;
- } xBYTE_ORDER;
-
--#if SYS_BIG_ENDIAN == 1
--#define MACHINE_BYTE_ORDER MOST_SIGNIFICANT
--#else
-+#include <endian.h>
-+#if __BYTE_ORDER == __LITTLE_ENDIAN
- #define MACHINE_BYTE_ORDER LEAST_SIGNIFICANT
-+#elif __BYTE_ORDER == __BIG_ENDIAN
-+#define MACHINE_BYTE_ORDER MOST_SIGNIFICANT
- #endif
-
- #ifdef _WINDOWS