summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Use lorried xcb/util-common-m4baserock/morphJonathan Maw2013-07-251-1/+1
|
* Fix compilation when NDEBUG is definedJon TURNEY2013-02-061-0/+2
| | | | | | | | | | | | | | | | | | | | | XORG_DEFAULT_OPTIONS enables -Werror=return-type xcb_image_get_pixel() and xcb_image_create_native() assume assert(0) is noreturn, and don't return a value in that case. But assert(0) isn't noreturn if NDEBUG is defined. Fix this by returning a suitable value. (Also, on the MinGW target, assert(0) is non-standard and may return even in the !NDEBUG case, as the C runtime may ask the user if they want to abort or not...) /jhbuild/checkout/xcb/xcb-util-image/image/xcb_image.c: In function 'xcb_image_get_pixel': /jhbuild/checkout/xcb/xcb-util-image/image/xcb_image.c:754:1: error: control reaches end of non-void function [-Wreturn-type] /jhbuild/checkout/xcb/xcb-util-image/image/xcb_image.c: In function 'xcb_image_create_native': /jhbuild/checkout/xcb/xcb-util-image/image/xcb_image.c:190:1: error: control reaches end of non-void function [-Wreturn-type] Signed-off-by: Jon TURNEY <jon.turney@dronecode.org.uk> Signed-off-by: Peter Harris <pharris@opentext.com>
* corrected return value documentation for xcb_image_shm_put()Bart Massey2012-10-281-3/+1
|
* Release 0.3.90.3.9Arnaud Fontaine2012-05-302-1/+8
| | | | Signed-off-by: Arnaud Fontaine <arnau@debian.org>
* Fix GCC warning in test_formats.Arnaud Fontaine2012-05-221-1/+1
|
* Use rand() instead of random(), being part of the C standard library,Jon TURNEY2012-05-221-1/+1
| | | | | | | it is more portable (for example, to MinGW) Signed-off-by: Jon TURNEY <jon.turney@dronecode.org.uk> Reviewed-by: Arnaud Fontaine <arnau@debian.org>
* Don't try to build test_xcb_image_shm if SHM isn't available (for example, ↵Jon TURNEY2012-05-222-1/+7
| | | | | | | on MinGW) Signed-off-by: Jon TURNEY <jon.turney@dronecode.org.uk> Reviewed-by: Arnaud Fontaine <arnau@debian.org>
* Add autogen.sh to EXTRA_DIST.Arnaud Fontaine2012-05-211-0/+1
|
* Remove Doxyfile which is unused, out dated and wrong.Arnaud Fontaine2012-05-211-1305/+0
|
* Fix xcb_bitops.h include pathRoberto Branciforti2011-05-032-2/+2
| | | | | | This patch fix the include path of the xcb_bitops.h file. Signed-off-by: rbbrnc <rbbrnci@gmail.com>
* Add missing xcb_bitops.h.Arnaud Fontaine2011-05-012-1/+213
| | | | | | | | Following the split up of xcb-util, this header was incorrectly put into util, which doesn't actually use it, whereas it should have always been in util-image. Signed-off-by: Arnaud Fontaine <arnau@debian.org>
* Release 0.3.80.3.8Arnaud Fontaine2011-04-261-0/+9
| | | | Signed-off-by: Arnaud Fontaine <arnau@debian.org>
* Fix package nameArnaud Fontaine2011-04-261-1/+1
| | | | Signed-off-by: Arnaud Fontaine <arnau@debian.org>
* Use an absolute URL for the m4 submoduleDirk Wallenstein2011-04-141-1/+1
| | | | | | | | | | A relative submodule URL requires m4 duplicates relative to every fork or local mirror of this module. To select a different protocol with an absolute submodule URL, the url.<base>.insteadOf configuration option can be used. Signed-off-by: Dirk Wallenstein <halsmit@t-online.de> Reviewed-by: Arnaud Fontaine <arnau@debian.org> Reviewed-by: Gaetan Nadon <memsize@videotron.ca>
* Link with -no-undefinedJon TURNEY2011-03-261-0/+1
| | | | | | | | | | Use -no-undefined to assure libtool that the library has no unresolved symbols at link time, so that libtool will build a shared library for platforms require that all symbols are resolved when the library is linked. Signed-off-by: Jon TURNEY <jon.turney@dronecode.org.uk> Acked-by: Julien Cristau <jcristau@debian.org> Reviewed-by: Arnaud Fontaine <arnau@debian.org>
* config: generate ChangeLog and INSTALLGaetan Nadon2011-03-072-230/+11
| | | | | | | | | | By copying a snippet of Makefile for xorg modules. One side-effect is that Makefile.in is no longer deleted on maintainer clean. This should never be done as it leaves your configuration in a half-broken state. Signed-off-by: Gaetan Nadon <memsize@videotron.ca> Signed-off-by: Arnaud Fontaine <arnau@mini-dweeb.org>
* config: use the default xorg .gitignore fileGaetan Nadon2011-03-072-17/+65
| | | | | | | | This will save future maintenance when module structure/tools change. This patch depends on the util-common-m4 submodule patch in the m4 path Signed-off-by: Gaetan Nadon <memsize@videotron.ca> Signed-off-by: Arnaud Fontaine <arnau@mini-dweeb.org>
* Bump version to 0.3.8Arnaud Fontaine2010-12-231-1/+1
|
* Fix GCC warnings due to functions not being declared as static andArnaud Fontaine2010-12-233-8/+7
| | | | random() being declared as extern
* Check whether tmp_image is not NULL before trying to dereference itArnaud Fontaine2010-12-231-5/+7
|
* Split image up into its own repositoryArnaud Fontaine2010-12-2313-117/+298
|
* test.xbm is part of the source code for test_bitmap.c.Jamey Sharp2010-11-141-1/+1
| | | | | | | This fixes distcheck. Reported-by: Chris Ball <cjb@laptop.org> Signed-off-by: Jamey Sharp <jamey@minilop.net>
* Ensure that xcb-image sample apps get built.Jamey Sharp2010-11-141-1/+1
| | | | | | Otherwise nobody will notice if they bitrot. Signed-off-by: Jamey Sharp <jamey@minilop.net>
* Fix typos in various header commentsAlan Coopersmith2010-11-141-2/+2
| | | | | Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> Signed-off-by: Jamey Sharp <jamey@minilop.net>
* Add AM_MAINTAINER_MODE for vendorsArnaud Fontaine2010-11-141-0/+1
|
* Update autogen.sh to one that does builddir != srcdirJon TURNEY2010-11-141-1/+10
|
* Bump version to 0.3.7Arnaud Fontaine2010-11-141-1/+1
|
* Bump version to 0.3.6Arnaud Fontaine2010-11-141-1/+1
|
* Check for ssize_t in configure for xcb-util-common.hArnaud Fontaine2010-11-141-1/+5
|
* Typo in configure.acMikhail Gusarov2010-11-141-1/+1
| | | | Signed-off-by: Julien Danjou <julien@danjou.info>
* Release xcb-util 0.3.5Julien Danjou2010-11-141-1/+1
| | | | Signed-off-by: Julien Danjou <julien@danjou.info>
* Add a check on xproto version libxcb was compiled withBob Ham2010-11-141-1/+20
| | | | Signed-off-by: Julien Danjou <julien@danjou.info>
* Make sure m4 supports -I flag, if not, try finding gnu m4Alan Coopersmith2010-11-141-2/+18
| | | | | | | | | Solaris m4 does not support -I flag, but gnu m4 is included in recent Solaris & OpenSolaris releases (and must already be installed on any machine that runs autoconf to generate configure scripts) Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com> Signed-off-by: Julien Danjou <julien@danjou.info>
* bump version to 0.3.4Julien Danjou2010-11-141-1/+1
| | | | Signed-off-by: Julien Danjou <julien@danjou.info>
* Release xcb-util 0.3.3Julien Danjou2010-11-141-1/+1
|
* Release xcb-util 0.3.2Julien Danjou2010-11-141-1/+1
| | | | Signed-off-by: Julien Danjou <julien@danjou.info>
* build: add check for xproto >= 7.0.8Julien Danjou2010-11-141-0/+2
| | | | | | This is needed to have _X_INLINE. Signed-off-by: Julien Danjou <julien@danjou.info>
* Fix copyright statementJonathan Landis2010-11-146-1/+140
| | | | Signed-off-by: Julien Danjou <julien@danjou.info>
* Release xcb-util 0.3.1Julien Danjou2010-11-141-1/+1
|
* configure: stop if m4 is not foundJulien Danjou2010-11-141-1/+4
| | | | Signed-off-by: Julien Danjou <julien@danjou.info>
* Do not cast the return value of malloc() in modern C.Ulrich Eckhardt2010-11-141-1/+1
| | | | Signed-off-by: Bart Massey <bart@cs.pdx.edu>
* more endianness patchesPeter Harris2010-11-141-2/+26
| | | | Signed-off-by: Bart Massey <bart@cs.pdx.edu>
* doc: enable doxygen doc in various submoduleJulien Danjou2010-11-141-1/+5
| | | | Signed-off-by: Julien Danjou <julien@danjou.info>
* doc: add various authors, remove old todo itemJulien Danjou2010-11-141-5/+8
| | | | Signed-off-by: Julien Danjou <julien@danjou.info>
* event: define XCB_EVENT_RESPONSE_TYPE_MASKJulien Danjou2010-11-141-1/+2
| | | | | | And use it. Signed-off-by: Julien Danjou <julien@danjou.info>
* [icccm] Bump library version number to 0.3.0.Arnaud Fontaine2010-11-141-1/+1
|
* return on error to avoid null dereference in assertHenning Sten2010-11-141-1/+3
| | | | Signed-off-by: Julien Danjou <julien@danjou.info>
* Add test_swap to image/.gitignoreKeith Packard2010-11-141-0/+1
|
* Rework image format conversion code to pass test_swap test case.Keith Packard2010-11-141-169/+113
| | | | | Numerous bugs were uncovered with the new test case, this fixes all of them. Perhaps this code will work on MSB machines now?
* Add image conversion test case for 'make check'Keith Packard2010-11-142-0/+219
| | | | | test_swap converts between most possible image formats, checking results against a fixed image.