[openchrome-devel] xf86-video-openchrome: 2 commits - configure.ac src/via_driver.c

Kevin Brace kevinbrace at kemper.freedesktop.org
Tue May 28 00:59:09 UTC 2019


 configure.ac     |    2 +-
 src/via_driver.c |    2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

New commits:
commit bfc24e21a925216749792cf39eff405bc6a15210
Author: Kevin Brace <kevinbrace at gmx.com>
Date:   Mon May 27 19:58:22 2019 -0500

    Version bumped to 0.6.184
    
    First in more than a decade update to the compilation scripts, and that
    urgently brought up a compilation issue with X.Org X Server 1.20.
    
    Signed-off-by: Kevin Brace <kevinbrace at gmx.com>

diff --git a/configure.ac b/configure.ac
index 0fa3513..1224029 100644
--- a/configure.ac
+++ b/configure.ac
@@ -23,7 +23,7 @@
 # Initialize Autoconf
 AC_PREREQ([2.60])
 AC_INIT([xf86-video-openchrome],
-        [0.6.183],
+        [0.6.184],
         [https://bugs.freedesktop.org/enter_bug.cgi?product=xorg&component=Driver/openchrome],
         [xf86-video-openchrome])
 
commit 3fcb5994a0e2b4b44a8f0ce87604c9b5c5ea7567
Author: Kevin Brace <kevinbrace at gmx.com>
Date:   Mon May 27 19:48:54 2019 -0500

    Fix for X.Org X Server 1.20
    
    Due to the code change made to X.Org X Server 1.20 in /miext/shadow
    /shadow.h, the DDX will not compile if it is compiled against X Server
    1.20.
    
    https://gitlab.freedesktop.org/xorg/xserver/commit
    /a530dc2a62349d922de77a75786a3795102aec11
    
    It was first reported here.
    
    https://lists.opensuse.org/opensuse-commit/2018-05/msg01701.html
    
    The significant update made to the compilation scripts prior to this
    commit highlighted the lingering issue.
    
    Signed-off-by: Kevin Brace <kevinbrace at gmx.com>

diff --git a/src/via_driver.c b/src/via_driver.c
index 733a6b5..8d54f63 100644
--- a/src/via_driver.c
+++ b/src/via_driver.c
@@ -1707,7 +1707,7 @@ VIACreateScreenResources(ScreenPtr pScreen)
         return FALSE;
 
     if (pVia->shadowFB) {
-        if (!shadowAdd(pScreen, rootPixmap, shadowUpdatePackedWeak(),
+        if (!shadowAdd(pScreen, rootPixmap, shadowUpdatePacked,
                         viaShadowWindow, 0, NULL))
             return FALSE;
     }


More information about the openchrome-devel mailing list