summaryrefslogtreecommitdiff
path: root/configure.ac
AgeCommit message (Collapse)Author
2013-11-07libxcb 1.9.3libxcb-1.9.3xcb-1.9Alan Coopersmith
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2013-11-07Check if we need to define _XOPEN_SOURCE for struct msghdr.msg_controlAlan Coopersmith
Required to expose the structure members in Solaris headers, since it was an XPG4/UNIX95 addition to the Solaris ABI. Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> (cherry picked from commit e8663a935890ff366f49e356211049dfd0d9756a)
2013-11-07Add configure option to enable or disable fd passing with sendmsgKeith Packard
--disable-sendfds or --enable-sendfds By default, configure auto-detects based on whether your system supports sendmsg at all. Signed-off-by: Keith Packard <keithp@keithp.com> Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com> Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> (cherry picked from commit af8067cbf48561f1e2d43e153292e68e0376a8f9)
2013-11-07Initialize automake earlier (bugfix for #66413)Daniel Martin
This fixes: https://bugs.freedesktop.org/show_bug.cgi?id=66413 Bug 66413 - libxcb 1.9.1: Fails to build on Arch Linux: \ /home/<user>/install-sh: No such file or directory Without that patch the search path for `install-sh` will become $HOME and the `install` target will fail, when DESTDIR doesn't exist in advance. (occured with automake 1.14 and autoconf 2.69) Initial patch by: Alain Kalker <a.c.kalker@gmail.com> Signed-off-by: Daniel Martin <consume.noise@gmail.com> Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com> Reviewed-by: Uli Schlachter <psychon@znc.in> Tested-By: Ran Benita <ran234@gmail.com> (cherry picked from commit 50fb3a6312dd0b6b613fc886ffd6827952d1e286) Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2013-11-07Update to version 1.9.2libxcb-1.9.21.9.2Keith Packard
Signed-off-by: Keith Packard <keithp@keithp.com>
2013-11-07Add Present extensionKeith Packard
Signed-off-by: Keith Packard <keithp@keithp.com> Reviewed-By: Uli Schlachter <psychon@znc.in>
2013-11-07Add DRI3 libraryKeith Packard
Signed-off-by: Keith Packard <keithp@keithp.com> Reviewed-By: Uli Schlachter <psychon@znc.in>
2013-11-07Require xcb proto version 1.9Keith Packard
Signed-off-by: Keith Packard <keithp@keithp.com>
2013-11-07Add xcb_send_fd APIKeith Packard
This uses sendmsg to transmit file descriptors from the application to the X server Signed-off-by: Keith Packard <keithp@keithp.com> Reviewed-By: Uli Schlachter <psychon@znc.in>
2013-11-07-pendantic is too pendanticKeith Packard
Many system headers have warnings when compiled with this flag. Signed-off-by: Keith Packard <keithp@keithp.com> Reviewed-By: Uli Schlachter <psychon@znc.in>
2013-05-30libxcb 1.9.11.9.1Alan Coopersmith
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2012-10-05Release libxcb 1.91.9Uli Schlachter
Signed-off-by: Uli Schlachter <psychon@znc.in>
2012-09-18Allow xcb_send_request with >MAX_IOV iovecsPeter Harris
This allows an application to do a scatter/gather operation on a large image buffer to avoid the extra memcpy. Use autoconf to use UIO_MAXIOV where IOV_MAX is not available (and the POSIX minimum of 16 where neither are available). Reviewed-by: Uli Schlachter <psychon@znc.in> Signed-off-by: Peter Harris <pharris@opentext.com>
2012-08-25Add AC_USE_SYSTEM_EXTENSIONS to allow use of more system functionalityAlan Coopersmith
Copied from libX11 configure.ac Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2012-03-09Release libxcb 1.8.11.8.1Julien Danjou
Signed-off-by: Julien Danjou <julien@danjou.info>
2012-01-12Bump xcb-proto requirementJulien Danjou
We are now unable to build xcb-proto before 1.7. Signed-off-by: Julien Danjou <julien@danjou.info>
2012-01-11Release libxcb 1.81.8Julien Danjou
Signed-off-by: Julien Danjou <julien@danjou.info>
2011-08-24Support pre-IPv6 systems (without getaddrinfo)Markus Duft
Some of these systems (eg. Interix on XP) are still in use. Reviewed-by: Josh Triplett <josh@joshtriplett.org> Signed-off-by: Peter Harris <pharris@opentext.com>
2011-05-04Add support for building with Python 3David Coles
Python 3 introduces some language changes that cause issues when running c_client.py. This also breaks compatibility with Python 2.5 since it does not support the "as" statement in try/except blocks and does not have reduce() in the functools package. The main changes are: * try/except blocks require `except ... as ...:` to resolve syntactical ambiguity * map() and filter() return iterators rather than lists in Python 3 * reduce() is now in functools package (and not built-in in Python 3) * Dictionaries don't have a has_key() method in Python 3 * None and int types can't be directly compared in Python 3 * print() is a statement in Python 3 See http://diveintopython3.org/porting-code-to-python-3-with-2to3.html and PEP-3110 for details. Verified on Python 2.6.5 and 3.1.3. Signed-off-by: David Coles <dcoles@gaikai.com> Signed-off-by: Julien Danjou <julien@danjou.info>
2011-04-04Use special path to sockets when running under Solaris Trusted ExtensionsAlan Coopersmith
Solaris Trusted Extensions puts the endpoints for the X server's Unix domain sockets in a special directory shared from the global zone to each of the labeled zones, since each labeled zone has a separate /tmp. Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> Reviewed-by: Peter Harris <pharris@opentext.com>
2011-03-18Enable AM_SILENT_RULES on automake 1.11 or newer.Jamey Sharp
This incantation is supposed to be a no-op on earlier automake versions. Signed-off-by: Jamey Sharp <jamey@minilop.net> Reviewed-by: Josh Triplett <josh@freedesktop.org>
2011-03-13Include XKB in ./configure's summary output.Jamey Sharp
Signed-off-by: Jamey Sharp <jamey@minilop.net>
2011-03-04darwin: Don't use poll() when expected to run on darwin10 and priorJeremy Huddleston
Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com>
2011-01-20fix Windows build and installationVincent Torri
2010-09-08Merge branch 'gsoc2010' of git://anongit.freedesktop.org/~chr/libxcbPeter Harris
2010-08-13Release libxcb 1.71.7Julien Danjou
Signed-off-by: Julien Danjou <julien@danjou.info>
2010-07-13xkb: updated configure.ac/Makefile.amChristoph Reimann
2010-07-12AC_CHECK_PROG(LAUNCHD, [launchd], [yes], [no], [$PATH$PATH_SEPARATOR/sbin])Jeremy Huddleston
launchd: Explicitly search /sbin Previously, launchd wasn't found if /sbin wasn't in the user's PATH. https://bugs.freedesktop.org/show_bug.cgi?id=29028 Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com>
2010-06-20configure.ac: Report which extensions are being built.Vincent Torri
I was surprised to see that xinput was not installed. Looking at configure.ac, it seems that it is disabled by default. Maybe configure should output the status of the different extensions.
2010-04-09Release libxcb 1.61.6Julien Danjou
2009-12-11configure.ac: Fix a typo on the last commit.Jeremy Huddleston
Signed-off-by: Jeremy Huddleston <jeremyhu@freedesktop.org>
2009-12-11darwin: xnu doesn't support poll on ttys on the master side.Jeremy Huddleston
<rdar://problem/7360546> Signed-off-by: Jeremy Huddleston <jeremyhu@freedesktop.org>
2009-12-05DRI2 extension requires xcb-proto 1.6 or newerRémi Cardona
Signed-off-by: Rémi Cardona <remi@gentoo.org> Signed-off-by: Julien Danjou <julien@danjou.info>
2009-12-03Release libxcb 1.51.5Julien Danjou
Signed-off-by: Julien Danjou <julien@danjou.info>
2009-10-19Add DRI2 support. (v2)Eric Anholt
v2: Build fix from jcristau.
2009-07-15Release libxcb 1.41.4Arnaud Fontaine
2009-05-29Release libxcb 1.31.3Julien Danjou
2009-05-25Store xcbproto version libxcb was compiled withBob Ham
Signed-off-by: Julien Danjou <julien@danjou.info>
2009-05-09depends on recent xcb-proto and bump version of randrJulien Danjou
Signed-off-by: Julien Danjou <julien@danjou.info>
2009-04-09darwin: Don't use poll() on versions of darwin before darwin10Jeremy Huddleston
2009-03-30use poll() instead of select() when availableMichael Ost
Signed-off-by: Julien Danjou <julien@danjou.info>
2009-02-17Release libxcb 1.21.2Julien Danjou
Signed-off-by: Julien Danjou <julien@danjou.info>
2008-12-11Release libxcb 1.1.931.1.93Julien Danjou
Signed-off-by: Julien Danjou <julien@danjou.info>
2008-11-23Apple: Apple launchd cleanupJeremy Huddleston
Added --with-launchd option instead of just using __APPLE__ Fixed opening launchd fd when displayname=NULL
2008-11-04Release libxcb 1.1.921.1.92Julien Danjou
Signed-off-by: Julien Danjou <julien@danjou.info>
2008-10-29Remove libxcb-xlib and xcbxlib.h.Jamey Sharp
2008-10-14build: fix configure.ac AC_DEFINEJulien Danjou
Rather use AC_DEFINE_UNQUOTED and only once. Signed-off-by: Julien Danjou <julien@danjou.info>
2008-10-14allow compile-time setting for XCB queue buffer sizeJulien Danjou
Signed-off-by: Julien Danjou <julien@danjou.info>
2008-10-08Remove duplicate XCB_EXTENSION calls for Composite extensionJosh Triplett
2008-09-09Add support for the abstract socket namespace under LinuxJulien Cristau
Based on same in Xtrans. Signed-off-by: Julien Danjou <julien@danjou.info>