Hello community,

here is the log from the commit of package xorg-x11-server for openSUSE:Factory 
checked in at 2012-10-16 12:58:46
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/xorg-x11-server (Old)
 and      /work/SRC/openSUSE:Factory/.xorg-x11-server.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "xorg-x11-server", Maintainer is "[email protected]"

Changes:
--------
--- /work/SRC/openSUSE:Factory/xorg-x11-server/xorg-x11-server.changes  
2012-10-03 10:17:50.000000000 +0200
+++ /work/SRC/openSUSE:Factory/.xorg-x11-server.new/xorg-x11-server.changes     
2012-10-16 12:58:48.000000000 +0200
@@ -1,0 +2,6 @@
+Mon Oct 15 14:22:01 UTC 2012 - [email protected]
+
+- u_vgaHW-no-legacy.patch
+  * likely fixes build on ppc 
+
+-------------------------------------------------------------------

New:
----
  u_vgaHW-no-legacy.patch

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

Other differences:
------------------
++++++ xorg-x11-server.spec ++++++
--- /var/tmp/diff_new_pack.1QwwYn/_old  2012-10-16 12:58:50.000000000 +0200
+++ /var/tmp/diff_new_pack.1QwwYn/_new  2012-10-16 12:58:50.000000000 +0200
@@ -173,8 +173,8 @@
 Patch220:       N_Use-external-tool-for-creating-backtraces-on-crashes.patch
 # PATCH-MISSING-TAG -- See 
http://wiki.opensuse.org/openSUSE:Packaging_Patches_guidelines
 Patch222:       N_sync-fix.patch
-
 Patch225:       u_Do-not-use-intel-driver-on-Poulsbo-Oaktrail-Medfield.patch
+Patch226:       u_vgaHW-no-legacy.patch
 
 %description
 This package contains the X.Org Server.
@@ -292,6 +292,7 @@
 ### patch222 might not be applicable anymore
 #%patch222 -p1
 %patch225 -p1
+%patch226 -p0
 
 %build
 autoreconf -fi

++++++ u_vgaHW-no-legacy.patch ++++++
Author: Andreas Schwab <[email protected]>
Subject: disable DACDelay on non-vga-hardware users
Patch-Mainline: To be upstreamed
Signed-Off-By: Marcus Meissner <[email protected]>

--- hw/xfree86/vgahw/vgaHW.h
+++ hw/xfree86/vgahw/vgaHW.h
@@ -168,11 +168,15 @@ typedef struct _vgaHWRec {
 #define BITS_PER_GUN 6
 #define COLORMAP_SIZE 256
 
+#if defined(__powerpc__) || defined(__arm__) || defined(__s390__) || 
defined(__nds32__)
+#define DACDelay(hw) /* No legacy VGA support */
+#else
 #define DACDelay(hw) \
        do { \
            (hw)->readST01((hw)); \
            (hw)->readST01((hw)); \
        } while (0)
+#endif
 
 /* Function Prototypes */
 
-- 
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to