diff options
Diffstat (limited to 'x11-terms/eterm/files/eterm-0.9.3-pixmap-colmod.patch')
-rw-r--r-- | x11-terms/eterm/files/eterm-0.9.3-pixmap-colmod.patch | 42 |
1 files changed, 0 insertions, 42 deletions
diff --git a/x11-terms/eterm/files/eterm-0.9.3-pixmap-colmod.patch b/x11-terms/eterm/files/eterm-0.9.3-pixmap-colmod.patch deleted file mode 100644 index 79f1abd53266..000000000000 --- a/x11-terms/eterm/files/eterm-0.9.3-pixmap-colmod.patch +++ /dev/null @@ -1,42 +0,0 @@ -Patch taken from upstream cvs to fix funky blue tinting. - ---- src/pixmap.c -+++ src/pixmap.c -@@ -54,2 +54,7 @@ - -+/* FIXME: Workaround for older versions of libast. */ -+#ifndef WORDS_BIGENDIAN -+# define WORDS_BIGENDIAN 0 -+#endif -+ - /* Assembler routines */ -@@ -1636,3 +1641,3 @@ - --# ifdef WORDS_BIGENDIAN -+# if WORDS_BIGENDIAN - r = (ptr[x + 1] * rm) >> 8; -@@ -1659,3 +1664,3 @@ - --# ifdef WORDS_BIGENDIAN -+# if WORDS_BIGENDIAN - r = (ptr[x + 1] * rm) >> 8; -@@ -1671,3 +1676,3 @@ - b |= (!(b >> 8) - 1); --# ifdef WORDS_BIGENDIAN -+# if WORDS_BIGENDIAN - ptr[x + 1] = r; -@@ -1701,3 +1706,3 @@ - --# ifdef WORDS_BIGENDIAN -+# if WORDS_BIGENDIAN - r = (ptr[x + 0] * rm) >> 8; -@@ -1724,3 +1729,3 @@ - --# ifdef WORDS_BIGENDIAN -+# if WORDS_BIGENDIAN - r = (ptr[x + 0] * rm) >> 8; -@@ -1736,3 +1741,3 @@ - b |= (!(b >> 8) - 1); --# ifdef WORDS_BIGENDIAN -+# if WORDS_BIGENDIAN - ptr[x + 0] = r; |