From f6112722ddb10de7c25f010662b32fc92d2a232b Mon Sep 17 00:00:00 2001 From: Tim Waugh Date: Apr 09 2015 14:36:32 +0000 Subject: Rebuild against fixed xorg-x11-server (bug #1206060). Resolves: rhbz#1206060 --- diff --git a/tigervnc.spec b/tigervnc.spec index 582d787..ad848d8 100644 --- a/tigervnc.spec +++ b/tigervnc.spec @@ -57,9 +57,6 @@ Patch15: tigervnc-xserver117.patch # This is tigervnc-%{version}/unix/xserver116.patch rebased on the latest xorg Patch100: tigervnc-xserver116-rebased.patch -# Apply patch to fix xorg-x11-server byte order issue (bug #1206060). -Patch101: xorg-x11-server-byteorder.patch - %description Virtual Network Computing (VNC) is a remote display system which allows you to view a computing 'desktop' environment not only on the @@ -164,7 +161,6 @@ for all in `find . -type f -perm -001`; do chmod -x "$all" done %patch100 -p1 -b .xserver116-rebased -%patch101 -p1 -b .byteorder popd # Applied Debian patch to fix busy loop when run from inetd in nowait @@ -357,7 +353,7 @@ fi %changelog * Thu Apr 9 2015 Tim Waugh - 1.4.3-3 -- Apply patch to fix xorg-x11-server byte order issue (bug #1206060). +- Rebuild against fixed xorg-x11-server (bug #1206060). * Fri Mar 6 2015 Tim Waugh - 1.4.3-2 - Don't disable Xinerama extension (upstream #147). diff --git a/xorg-x11-server-byteorder.patch b/xorg-x11-server-byteorder.patch deleted file mode 100644 index e5f81d9..0000000 --- a/xorg-x11-server-byteorder.patch +++ /dev/null @@ -1,60 +0,0 @@ -From ofourdan@redhat.com Thu Apr 9 09:33:43 2015 -Return-Path: ofourdan@redhat.com -Received: from zmta06.collab.prod.int.phx2.redhat.com (LHLO - zmta06.collab.prod.int.phx2.redhat.com) (10.5.81.13) by - zmail17.collab.prod.int.phx2.redhat.com with LMTP; Thu, 9 Apr 2015 09:33:43 - -0400 (EDT) -Received: from int-mx11.intmail.prod.int.phx2.redhat.com - (int-mx11.intmail.prod.int.phx2.redhat.com [10.5.11.24]) by - zmta06.collab.prod.int.phx2.redhat.com (Postfix) with ESMTP id 59651168FFC; - Thu, 9 Apr 2015 09:33:43 -0400 (EDT) -Received: from t440s.redhat.com (vpn1-6-83.ams2.redhat.com [10.36.6.83]) by - int-mx11.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id - t39DXffr009466; Thu, 9 Apr 2015 09:33:42 -0400 -From: Olivier Fourdan -To: xorg-devel@lists.x.org -Cc: Tim Waugh , Adam Jackson , Olivier - Fourdan -Subject: [PATCH] dix: Fix endianess detection -Date: Thu, 9 Apr 2015 15:33:22 +0200 -Message-Id: <1428586402-15949-1-git-send-email-ofourdan@redhat.com> -X-Scanned-By: MIMEDefang 2.68 on 10.5.11.24 -X-Evolution-Source: 1359477224.12743.18@rubik -Content-Transfer-Encoding: 8bit -Mime-Version: 1.0 - -Make sure X_BIG_ENDIAN/X_LITTLE_ENDIAN are defined before actually using -them. - -Otherwise, byte order could be wrong even though endianess detection is -correct. - -Reported-by: Tim Waugh -Signed-off-by: Olivier Fourdan ---- - include/dix-config.h.in | 8 ++++++++ - 1 file changed, 8 insertions(+) - -diff --git a/include/dix-config.h.in b/include/dix-config.h.in -index 1aa77a5..192c558 100644 ---- a/include/dix-config.h.in -+++ b/include/dix-config.h.in -@@ -3,6 +3,14 @@ - #ifndef _DIX_CONFIG_H_ - #define _DIX_CONFIG_H_ - -+#ifndef X_BIG_ENDIAN -+# define X_BIG_ENDIAN 4321 -+#endif -+ -+#ifndef X_LITTLE_ENDIAN -+# define X_LITTLE_ENDIAN 1234 -+#endif -+ - /* Support BigRequests extension */ - #undef BIGREQS - --- -2.3.5 - -