Hello community,

here is the log from the commit of package xorg-x11-server for openSUSE:Factory 
checked in at 2015-04-27 22:06:48
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/xorg-x11-server (Old)
 and      /work/SRC/openSUSE:Factory/.xorg-x11-server.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "xorg-x11-server"

Changes:
--------
--- /work/SRC/openSUSE:Factory/xorg-x11-server/xorg-x11-server.changes  
2015-04-03 14:33:10.000000000 +0200
+++ /work/SRC/openSUSE:Factory/.xorg-x11-server.new/xorg-x11-server.changes     
2015-04-27 22:06:49.000000000 +0200
@@ -1,0 +2,7 @@
+Fri Apr 17 08:14:31 UTC 2015 - [email protected]
+
+- Add xorg-x11-server-byte-order.patch to correctly set
+  X_BYTE_ORDER when compiling tigervnc on ppc64 architecture.
+  Related to bnc#926201
+
+-------------------------------------------------------------------

New:
----
  xorg-x11-server-byte-order.patch

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ xorg-x11-server.spec ++++++
--- /var/tmp/diff_new_pack.fWMi1i/_old  2015-04-27 22:06:51.000000000 +0200
+++ /var/tmp/diff_new_pack.fWMi1i/_new  2015-04-27 22:06:51.000000000 +0200
@@ -166,6 +166,7 @@
 Patch114:       u_ad-hoc-fix-for-mmap-s-truncated-offset-parameter-on-.patch
 Patch115:       N_Force-swcursor-for-KMS-drivers-without-hw-cursor-sup.patch
 Patch116:       U_os-XDMCP-options-like-query-etc-should-imply-listen.patch
+Patch117:       xorg-x11-server-byte-order.patch
 
 Patch1000:      n_xserver-optimus-autoconfig-hack.patch
 
@@ -257,6 +258,7 @@
 %patch114 -p1
 %patch115 -p1
 %patch116 -p1
+%patch117 -p1
 
 %patch1000 -p1
 

++++++ xorg-x11-server-byte-order.patch ++++++
>From 1f679da30a33f3ddad14bc6b2be0795160ae12b8 Mon Sep 17 00:00:00 2001
From: Adam Jackson <[email protected]>
Date: Thu, 9 Apr 2015 10:19:13 -0400
Subject: [PATCH] include: Fix endianness setup

Need to make sure X_{BIG,LITTLE}_ENDIAN actually get defined

Signed-off-by: Adam Jackson <[email protected]>
---
 include/dix-config.h.in  |    1 +
 include/xorg-server.h.in |    1 +
 2 files changed, 2 insertions(+)

Index: a/include/dix-config.h.in
===================================================================
--- a.orig/include/dix-config.h.in
+++ a/include/dix-config.h.in
@@ -499,6 +499,7 @@
 
 /* byte order */
 #undef X_BYTE_ORDER
+#include <X11/Xarch.h>
 
 /* Listen on TCP socket */
 #undef LISTEN_TCP
Index: a/include/xorg-server.h.in
===================================================================
--- a.orig/include/xorg-server.h.in
+++ a/include/xorg-server.h.in
@@ -233,5 +233,6 @@
 
 /* byte order */
 #undef X_BYTE_ORDER
+#include <X11/Xarch.h>
 
 #endif /* _XORG_SERVER_H_ */

Reply via email to