Timo Aaltonen pushed to branch upstream-unstable at X Strike Force / lib / 
libxxf86dga


Commits:
7fad1290 by Michael Joost at 2013-11-22T23:19:31-08:00
Remove fallback for _XEatDataWords, require libX11 1.6 for it

_XEatDataWords was orignally introduced with the May 2013 security
patches, and in order to ease the process of delivering those,
fallback versions of _XEatDataWords were included in the X extension
library patches so they could be applied to older versions that didn't
have libX11 1.6 yet.   Now that we're past that hurdle, we can drop
the fallbacks and just require libX11 1.6 for building new versions
of the extension libraries.

Reviewed-by: Alan Coopersmith <[email protected]>
Signed-off-by: Alan Coopersmith <[email protected]>

- - - - -
3d2ceb7b by Peter Hutterer at 2017-01-26T11:59:25+10:00
autogen.sh: use exec instead of waiting for configure to finish

Syncs the invocation of configure with the one from the server.

Signed-off-by: Peter Hutterer <[email protected]>
Reviewed-by: Emil Velikov <[email protected]>

- - - - -
286a9f9b by Emil Velikov at 2017-01-26T11:59:25+10:00
autogen.sh: use quoted string variables

Place quotes around the $srcdir, $ORIGDIR and $0 variables to prevent
fall-outs, when they contain space.

Signed-off-by: Emil Velikov <[email protected]>
Reviewed-by: Peter Hutterer <[email protected]>
Signed-off-by: Peter Hutterer <[email protected]>

- - - - -
91f4518a by Mihail Konev at 2017-01-26T13:52:49+10:00
autogen: add default patch prefix

Signed-off-by: Mihail Konev <[email protected]>

- - - - -
036673d9 by Alan Coopersmith at 2018-11-19T22:55:54-08:00
Update README for gitlab migration

Signed-off-by: Alan Coopersmith <[email protected]>

- - - - -
975d71ff by Alan Coopersmith at 2018-12-07T19:58:09-08:00
Update configure.ac bug URL for gitlab migration

Signed-off-by: Alan Coopersmith <[email protected]>

- - - - -
e605c540 by Alan Coopersmith at 2019-03-16T15:20:28-07:00
libXxf86dga 1.1.5

Signed-off-by: Alan Coopersmith <[email protected]>

- - - - -


5 changed files:

- Makefile.am
- README → README.md
- autogen.sh
- configure.ac
- src/XF86DGA2.c


Changes:

=====================================
Makefile.am
=====================================
@@ -14,3 +14,5 @@ ChangeLog:
        $(CHANGELOG_CMD)
 
 dist-hook: ChangeLog INSTALL
+
+EXTRA_DIST = README.md


=====================================
README → README.md
=====================================
@@ -1,25 +1,18 @@
 libXxf86dga - Client library for the XFree86-DGA extension.
+-----------------------------------------------------------
 
 All questions regarding this software should be directed at the
 Xorg mailing list:
 
-        http://lists.freedesktop.org/mailman/listinfo/xorg
-
-Please submit bug reports to the Xorg bugzilla:
-
-        https://bugs.freedesktop.org/enter_bug.cgi?product=xorg
+  https://lists.x.org/mailman/listinfo/xorg
 
 The master development code repository can be found at:
 
-        git://anongit.freedesktop.org/git/xorg/lib/libXxf86dga
+  https://gitlab.freedesktop.org/xorg/lib/libXxf86dga
 
-        http://cgit.freedesktop.org/xorg/lib/libXxf86dga
+Please submit bug reports and requests to merge patches there.
 
 For patch submission instructions, see:
 
-       http://www.x.org/wiki/Development/Documentation/SubmittingPatches
-
-For more information on the git code manager, see:
-
-        http://wiki.x.org/wiki/GitPage
+  https://www.x.org/wiki/Development/Documentation/SubmittingPatches
 


=====================================
autogen.sh
=====================================
@@ -1,14 +1,17 @@
 #! /bin/sh
 
-srcdir=`dirname $0`
+srcdir=`dirname "$0"`
 test -z "$srcdir" && srcdir=.
 
 ORIGDIR=`pwd`
-cd $srcdir
+cd "$srcdir"
 
 autoreconf -v --install || exit 1
-cd $ORIGDIR || exit $?
+cd "$ORIGDIR" || exit $?
+
+git config --local --get format.subjectPrefix >/dev/null 2>&1 ||
+    git config --local format.subjectPrefix "PATCH libXxf86dga"
 
 if test -z "$NOCONFIGURE"; then
-    $srcdir/configure "$@"
+    exec "$srcdir"/configure "$@"
 fi


=====================================
configure.ac
=====================================
@@ -1,8 +1,8 @@
 
 # Initialize Autoconf
 AC_PREREQ([2.60])
-AC_INIT([libXxf86dga], [1.1.4],
-        [https://bugs.freedesktop.org/enter_bug.cgi?product=xorg], 
[libXxf86dga])
+AC_INIT([libXxf86dga], [1.1.5],
+        [https://gitlab.freedesktop.org/xorg/lib/libXxf86dga/issues], 
[libXxf86dga])
 AC_CONFIG_SRCDIR([Makefile.am])
 AC_CONFIG_HEADERS(src/config.h)
 
@@ -20,13 +20,7 @@ XORG_DEFAULT_OPTIONS
 XORG_CHECK_MALLOC_ZERO
 
 # Obtain compiler/linker options for depedencies
-PKG_CHECK_MODULES(XXF86DGA, xproto x11 xextproto xext [xf86dgaproto >= 
2.0.99.2])
-
-# Check for _XEatDataWords function that may be patched into older Xlib release
-SAVE_LIBS="$LIBS"
-LIBS="$XXF86DGA_LIBS"
-AC_CHECK_FUNCS([_XEatDataWords])
-LIBS="$SAVE_LIBS"
+PKG_CHECK_MODULES(XXF86DGA, xproto [x11 >= 1.6] xextproto xext [xf86dgaproto 
>= 2.0.99.2])
 
 AC_CONFIG_FILES([Makefile
                src/Makefile


=====================================
src/XF86DGA2.c
=====================================
@@ -27,17 +27,6 @@ Copyright (c) 1995,1996  The XFree86 Project, Inc
 #include <stdint.h>
 #include <limits.h>
 
-#ifndef HAVE__XEATDATAWORDS
-static inline void _XEatDataWords(Display *dpy, unsigned long n)
-{
-# ifndef LONG64
-    if (n >= (ULONG_MAX >> 2))
-        _XIOError(dpy);
-# endif
-    _XEatData (dpy, n << 2);
-}
-#endif
-
 /* If you change this, change the Bases[] array below as well */
 #define MAX_HEADS 16
 



View it on GitLab: 
https://salsa.debian.org/xorg-team/lib/libxxf86dga/-/compare/0f2e21d7e8310cf7bc02bba56884be0e52c061ae...e605c540995554af99d8b728c7d1d4e82e514199

-- 
View it on GitLab: 
https://salsa.debian.org/xorg-team/lib/libxxf86dga/-/compare/0f2e21d7e8310cf7bc02bba56884be0e52c061ae...e605c540995554af99d8b728c7d1d4e82e514199
You're receiving this email because of your account on salsa.debian.org.


Reply via email to