Release libxcb 1.13
Signed-off-by: Daniel Stone <daniels@collabora.com>
This commit is contained in:
parent
a3e9821bec
commit
761fc5c890
9
NEWS
9
NEWS
|
@ -1,3 +1,12 @@
|
||||||
|
Release 1.13 (2018-02-28)
|
||||||
|
=========================
|
||||||
|
* Add support for variable-sized lists of FDs
|
||||||
|
* Poll for events when blocking waiting for special events
|
||||||
|
* xinput: Enable XInput extension by default
|
||||||
|
* ge: Add explicit support for GenericEvent extension
|
||||||
|
* Fix documentation warnings from clang
|
||||||
|
* Cosmetic cleanups
|
||||||
|
|
||||||
Release 1.12 (2016-05-18)
|
Release 1.12 (2016-05-18)
|
||||||
=========================
|
=========================
|
||||||
* configure: Various fixes for dri3 and FD passing support
|
* configure: Various fixes for dri3 and FD passing support
|
||||||
|
|
|
@ -2,7 +2,7 @@ dnl Process this file with autoconf to produce a configure script.
|
||||||
|
|
||||||
# Initialize Autoconf
|
# Initialize Autoconf
|
||||||
AC_PREREQ([2.60])
|
AC_PREREQ([2.60])
|
||||||
AC_INIT([libxcb],[1.12],
|
AC_INIT([libxcb],[1.13],
|
||||||
[https://bugs.freedesktop.org/enter_bug.cgi?product=xcb],
|
[https://bugs.freedesktop.org/enter_bug.cgi?product=xcb],
|
||||||
[libxcb])
|
[libxcb])
|
||||||
AC_CONFIG_AUX_DIR([build-aux])
|
AC_CONFIG_AUX_DIR([build-aux])
|
||||||
|
@ -50,7 +50,7 @@ fi
|
||||||
AC_SUBST(HTML_CHECK_RESULT)
|
AC_SUBST(HTML_CHECK_RESULT)
|
||||||
|
|
||||||
# Checks for pkg-config packages
|
# Checks for pkg-config packages
|
||||||
PKG_CHECK_MODULES(XCBPROTO, xcb-proto >= 1.12)
|
PKG_CHECK_MODULES(XCBPROTO, xcb-proto >= 1.13)
|
||||||
NEEDED="pthread-stubs xau >= 0.99.2"
|
NEEDED="pthread-stubs xau >= 0.99.2"
|
||||||
PKG_CHECK_MODULES(NEEDED, $NEEDED)
|
PKG_CHECK_MODULES(NEEDED, $NEEDED)
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue