summaryrefslogtreecommitdiff
path: root/configure.ac
AgeCommit message (Collapse)Author
2006-11-02Release libxcb 1.0 RC3 (0.9.93).1.0-RC3Jamey Sharp
2006-10-12Add library support for xcb-xinerama.Jeremy Kolb
This is version 1.1 of the Xinerama (PanoramiX) extension.
2006-10-07Release libxcb 1.0 RC2 (0.9.92).1.0-RC2Jamey Sharp
2006-09-25Release libxcb 1.0 RC1 (0.9.91).1.0-RC1Jamey Sharp
2006-09-25Move header files to $includedir/xcb (generally $prefix/include/xcb).Jamey Sharp
2006-09-25Split the Xlib compatibility functions into a separate library libxcb-xlibJosh Triplett
We don't want to have to change the libxcb soname if we later manage to remove the Xlib compatibility functions, and nothing except Xlib should ever use them, so split them into a separate library.
2006-09-25We no longer need xproto: do not list it as a dependency.Jamey Sharp
2006-09-25Lowercase library names to correspond with the new API.Jamey Sharp
2006-04-27Rename xcb-xfree86dri.pc.in to xcb-xf86dri.pc.in to match libXCBxf86dri, ↵Josh Triplett
change its Libs line to use -lXCBxf86dri, and change configure.ac and Makefile.am accordingly.
2006-04-26Add .pc.in files for all the new extension libraries. Generate .pc files ↵Josh Triplett
from the new .pc.in files in configure.ac. Install the new .pc files in Makefile.am, and add the new .pc.in files to EXTRA_DIST. Based on a patch by Vincent Torri. Changes from that patch: add Requires to the .pc.in files based on the <import>s in the extensions, add a .pc.in file for libXCBxtest, change Name and Description fields to match extension names.
2006-04-19Only set CWARNFLAGS to gnu flags if $GCC is set. Otherwise check for Sun ↵Alan Coopersmith
compiler and use its enhanced warning flag.
2006-03-12Use libXdmcp, if available with XdmcpWrap, for XDM-AUTHORIZATION-1. Closes ↵Jamey Sharp
bug #6106.
2006-03-07Use the GCC 4 visibility extension to mark everything in xcbint.h hidden.TORRI Vincent
2006-03-02API/ABI change: XCBSendRequest callers must pad to 4-byte boundaries now. ↵Jamey Sharp
When not in RAW mode, a null pointer for iov_base is replaced by up to 3 padding bytes.
2006-02-23Factor padding out of _xcb_out_write_block and into its callers, ↵Jamey Sharp
XCBSendRequest and write_setup. This requires dynamically allocating memory in XCBSendRequest, but this malloc/free pair turns out to cause a 30% speed hit for the 'x11perf -noop' test -- so for the moment I use alloca where available and fall back to malloc on other platforms. Later I think I'll change the contract of XCBSendRequest so the caller is responsible for memory allocation, because the caller ought to always be able to stack-allocate here.
2006-02-20Control debugging, optimization, and warning flags all independently.Jamey Sharp
2006-02-18Quit defining _XOPEN_SOURCE. We never needed it...Jamey Sharp
2006-02-18Remove xcl and CVSROOT.Josh Triplett