1 commit 1f20df4fd7c132f55e924dc5ec3f270cd54704d0 2 Author: Alan Coopersmith <alan.coopersmith (a] oracle.com> 3 Date: Sun Dec 4 15:09:13 2022 -0800 4 5 libXdamage 1.1.6 6 7 Signed-off-by: Alan Coopersmith <alan.coopersmith (a] oracle.com> 8 9 commit 4adcd841e3e09982272b2f79ef3aadfb257814e3 10 Author: Alan Coopersmith <alan.coopersmith (a] oracle.com> 11 Date: Thu Nov 17 11:14:53 2022 -0800 12 13 Handle -Wshorten-64-to-32 warnings from clang 14 15 Xdamage.c:265:28: warning: implicit conversion loses integer precision: 'Drawable' (aka 'unsigned long') to 'CARD32' (aka 'unsigned int') [-Wshorten-64-to-32] 16 awire->drawable = aevent->drawable; 17 ~ ~~~~~~~~^~~~~~~~ 18 Xdamage.c:266:26: warning: implicit conversion loses integer precision: 'Damage' (aka 'unsigned long') to 'CARD32' (aka 'unsigned int') [-Wshorten-64-to-32] 19 awire->damage = aevent->damage; 20 ~ ~~~~~~~~^~~~~~ 21 Xdamage.c:268:29: warning: implicit conversion loses integer precision: 'Time' (aka 'unsigned long') to 'CARD32' (aka 'unsigned int') [-Wshorten-64-to-32] 22 awire->timestamp = aevent->timestamp; 23 ~ ~~~~~~~~^~~~~~~~~ 24 Xdamage.c:326:26: warning: implicit conversion loses integer precision: 'Damage' (aka 'unsigned long') to 'CARD32' (aka 'unsigned int') [-Wshorten-64-to-32] 25 req->damage = damage = XAllocID (dpy); 26 ~ ~~~~~~~^~~~~~~~~~~~~~~~ 27 Xdamage.c:327:21: warning: implicit conversion loses integer precision: 'Drawable' (aka 'unsigned long') to 'CARD32' (aka 'unsigned int') [-Wshorten-64-to-32] 28 req->drawable = drawable; 29 ~ ^~~~~~~~ 30 Xdamage.c:345:19: warning: implicit conversion loses integer precision: 'Damage' (aka 'unsigned long') to 'CARD32' (aka 'unsigned int') [-Wshorten-64-to-32] 31 req->damage = damage; 32 ~ ^~~~~~ 33 Xdamage.c:362:19: warning: implicit conversion loses integer precision: 'Damage' (aka 'unsigned long') to 'CARD32' (aka 'unsigned int') [-Wshorten-64-to-32] 34 req->damage = damage; 35 ~ ^~~~~~ 36 Xdamage.c:363:19: warning: implicit conversion loses integer precision: 'XserverRegion' (aka 'unsigned long') to 'CARD32' (aka 'unsigned int') [-Wshorten-64-to-32] 37 req->repair = repair; 38 ~ ^~~~~~ 39 Xdamage.c:364:18: warning: implicit conversion loses integer precision: 'XserverRegion' (aka 'unsigned long') to 'CARD32' (aka 'unsigned int') [-Wshorten-64-to-32] 40 req->parts = parts; 41 ~ ^~~~~ 42 Xdamage.c:380:21: warning: implicit conversion loses integer precision: 'Drawable' (aka 'unsigned long') to 'CARD32' (aka 'unsigned int') [-Wshorten-64-to-32] 43 req->drawable = drawable; 44 ~ ^~~~~~~~ 45 Xdamage.c:381:19: warning: implicit conversion loses integer precision: 'XserverRegion' (aka 'unsigned long') to 'CARD32' (aka 'unsigned int') [-Wshorten-64-to-32] 46 req->region = region; 47 ~ ^~~~~~ 48 49 Signed-off-by: Alan Coopersmith <alan.coopersmith (a] oracle.com> 50 51 commit ba46dd91f2b2248e459911b38acd49a776c748f2 52 Author: Alan Coopersmith <alan.coopersmith (a] oracle.com> 53 Date: Thu Nov 17 11:07:10 2022 -0800 54 55 Handle -Wconversion warnings from clang 56 57 Xdamage.c:81:30: warning: implicit conversion loses integer precision: 'int' to 'CARD8' (aka 'unsigned char') [-Wconversion] 58 req->reqType = info->codes->major_opcode; 59 ~ ~~~~~~~~~~~~~^~~~~~~~~~~~ 60 Xdamage.c:264:29: warning: implicit conversion loses integer precision: 'int' to 'CARD8' (aka 'unsigned char') [-Wconversion] 61 awire->type = aevent->type | (aevent->send_event ? 0x80 : 0); 62 ~ ~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 63 Xdamage.c:267:31: warning: implicit conversion loses integer precision: 'int' to 'CARD8' (aka 'unsigned char') [-Wconversion] 64 awire->level = aevent->level | (aevent->more ? DamageNotifyMore : 0); 65 ~ ~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 66 Xdamage.c:324:33: warning: implicit conversion loses integer precision: 'int' to 'CARD8' (aka 'unsigned char') [-Wconversion] 67 req->reqType = info->codes->major_opcode; 68 ~ ~~~~~~~~~~~~~^~~~~~~~~~~~ 69 Xdamage.c:328:18: warning: implicit conversion loses integer precision: 'int' to 'CARD8' (aka 'unsigned char') [-Wconversion] 70 req->level = level; 71 ~ ^~~~~ 72 Xdamage.c:343:33: warning: implicit conversion loses integer precision: 'int' to 'CARD8' (aka 'unsigned char') [-Wconversion] 73 req->reqType = info->codes->major_opcode; 74 ~ ~~~~~~~~~~~~~^~~~~~~~~~~~ 75 Xdamage.c:360:33: warning: implicit conversion loses integer precision: 'int' to 'CARD8' (aka 'unsigned char') [-Wconversion] 76 req->reqType = info->codes->major_opcode; 77 ~ ~~~~~~~~~~~~~^~~~~~~~~~~~ 78 Xdamage.c:378:33: warning: implicit conversion loses integer precision: 'int' to 'CARD8' (aka 'unsigned char') [-Wconversion] 79 req->reqType = info->codes->major_opcode; 80 ~ ~~~~~~~~~~~~~^~~~~~~~~~~~ 81 82 Signed-off-by: Alan Coopersmith <alan.coopersmith (a] oracle.com> 83 84 commit 90bb47685ed92df1eb5bbb9b6875a40f3e98bb43 85 Author: Alan Coopersmith <alan.coopersmith (a] oracle.com> 86 Date: Thu Nov 17 10:55:07 2022 -0800 87 88 Remove unnecessary casts from malloc() and free() calls 89 90 Not needed in C89 and later 91 92 Signed-off-by: Alan Coopersmith <alan.coopersmith (a] oracle.com> 93 94 commit 6e16a274610317abc3956291aa498b1ecdccc900 95 Author: Alan Coopersmith <alan.coopersmith (a] oracle.com> 96 Date: Wed Nov 16 19:18:18 2022 -0800 97 98 XDamageCloseDisplay: Mark codes as unused 99 100 Quiets clang warning: 101 102 Xdamage.c:207:47: warning: unused parameter 'codes' [-Wunused-parameter] 103 XDamageCloseDisplay (Display *dpy, XExtCodes *codes) 104 ^ 105 106 Signed-off-by: Alan Coopersmith <alan.coopersmith (a] oracle.com> 107 108 commit 14ecba28e2d2846d0690ee86d3d01a1389558fd6 109 Author: Alan Coopersmith <alan.coopersmith (a] oracle.com> 110 Date: Wed Nov 16 19:14:34 2022 -0800 111 112 Mark two dpy parameters const as suggested by cppcheck 113 114 Signed-off-by: Alan Coopersmith <alan.coopersmith (a] oracle.com> 115 116 commit 98c179ea912e9e420451adeb9bab4b462cab836c 117 Author: Alan Coopersmith <alan.coopersmith (a] oracle.com> 118 Date: Wed Nov 16 19:13:03 2022 -0800 119 120 Variable scope reduction as recommended by cppcheck 121 122 Signed-off-by: Alan Coopersmith <alan.coopersmith (a] oracle.com> 123 124 commit 51cbd370a2fc0d671398d7572c29f00cae34a86f 125 Author: Alan Coopersmith <alan.coopersmith (a] oracle.com> 126 Date: Sun Jul 17 12:01:38 2022 -0700 127 128 gitlab CI: add a basic build test 129 130 Signed-off-by: Alan Coopersmith <alan.coopersmith (a] oracle.com> 131 132 commit 2f1ee1fd079391d239a7c0e4dbb34d80e227ab0f 133 Author: Alan Coopersmith <alan.coopersmith (a] oracle.com> 134 Date: Sun Jul 17 11:59:53 2022 -0700 135 136 Fix spelling/wording issues 137 138 Found by using: 139 codespell --builtin clear,rare,usage,informal,code,names 140 141 Signed-off-by: Alan Coopersmith <alan.coopersmith (a] oracle.com> 142 143 commit 691f0a8d1f6c4eebe0191c29b31598f63dba2f77 144 Author: Alan Coopersmith <alan.coopersmith (a] oracle.com> 145 Date: Sun Jul 17 11:59:20 2022 -0700 146 147 Build xz tarballs instead of bzip2 148 149 Signed-off-by: Alan Coopersmith <alan.coopersmith (a] oracle.com> 150 151 commit fea0f32d268753bb0f322a26d73b31ec9aca80f4 152 Author: Alan Coopersmith <alan.coopersmith (a] oracle.com> 153 Date: Sat Mar 16 12:37:57 2019 -0700 154 155 Update configure.ac bug URL for gitlab migration 156 157 Signed-off-by: Alan Coopersmith <alan.coopersmith (a] oracle.com> 158 159 commit 977b04cd69738806e0b48fcf5c725763d065f06d 160 Author: Alan Coopersmith <alan.coopersmith (a] oracle.com> 161 Date: Sun Mar 10 18:08:06 2019 -0700 162 163 libXdamage 1.1.5 164 165 Signed-off-by: Alan Coopersmith <alan.coopersmith (a] oracle.com> 166 167 commit cd8ddea98992b54b2806c4c36e7460ea5b3a5fd3 168 Author: Alan Coopersmith <alan.coopersmith (a] oracle.com> 169 Date: Mon Nov 19 21:50:10 2018 -0800 170 171 Update README for gitlab migration 172 173 Signed-off-by: Alan Coopersmith <alan.coopersmith (a] oracle.com> 174 175 commit 8c8f9c1e356e9481fdf5a7bd1927dbfdac196310 176 Author: Mihail Konev <k.mvc (a] ya.ru> 177 Date: Thu Jan 26 13:52:49 2017 +1000 178 179 autogen: add default patch prefix 180 181 Signed-off-by: Mihail Konev <k.mvc (a] ya.ru> 182 183 commit 8a647594fbd71b1ad26fa2a6caf69ffff91b6e2b 184 Author: Emil Velikov <emil.l.velikov (a] gmail.com> 185 Date: Mon Mar 9 12:00:52 2015 +0000 186 187 autogen.sh: use quoted string variables 188 189 Place quotes around the $srcdir, $ORIGDIR and $0 variables to prevent 190 fall-outs, when they contain space. 191 192 Signed-off-by: Emil Velikov <emil.l.velikov (a] gmail.com> 193 Reviewed-by: Peter Hutterer <peter.hutterer (a] who-t.net> 194 Signed-off-by: Peter Hutterer <peter.hutterer (a] who-t.net> 195 196 commit e758765e6c943d968a781efc9992813a2c3fb918 197 Author: Peter Hutterer <peter.hutterer (a] who-t.net> 198 Date: Tue Jan 24 10:32:07 2017 +1000 199 200 autogen.sh: use exec instead of waiting for configure to finish 201 202 Syncs the invocation of configure with the one from the server. 203 204 Signed-off-by: Peter Hutterer <peter.hutterer (a] who-t.net> 205 Reviewed-by: Emil Velikov <emil.velikov (a] collabora.com> 206 207 commit 41cc41d5deee6b4f79ddaebbb058951a5a9f1f7f 208 Author: Jeremy Huddleston Sequoia <jeremyhu (a] apple.com> 209 Date: Thu Jan 2 01:23:12 2014 -0800 210 211 Use Xfree rather than XFree for consistency 212 213 Signed-off-by: Jeremy Huddleston Sequoia <jeremyhu (a] apple.com> 214 215 commit 0d35761dc39409b70e04dd0786aef6537f92976a 216 Author: Alan Coopersmith <alan.coopersmith (a] oracle.com> 217 Date: Sat Jan 19 08:19:07 2013 -0800 218 219 Replace deprecated Automake INCLUDES variable with AM_CPPFLAGS 220 221 Excerpt https://lists.gnu.org/archive/html/automake/2012-12/msg00038.html 222 223 - Support for the long-deprecated INCLUDES variable will be removed 224 altogether in Automake 1.14. The AM_CPPFLAGS variable should be 225 used instead. 226 227 This variable was deprecated in Automake releases prior to 1.10, which is 228 the current minimum level required to build X. 229 230 Signed-off-by: Alan Coopersmith <alan.coopersmith (a] oracle.com> 231 232 commit c9fa3ec1a7c9847ccf98377b48c674f1d32c635d 233 Author: Colin Walters <walters (a] verbum.org> 234 Date: Wed Jan 4 17:37:06 2012 -0500 235 236 autogen.sh: Implement GNOME Build API 237 238 http://people.gnome.org/~walters/docs/build-api.txt 239 240 Signed-off-by: Adam Jackson <ajax (a] redhat.com> 241 242 commit d545f97ace8a2842a8e5ac49c8c955fb3252e873 243 Author: Adam Jackson <ajax (a] redhat.com> 244 Date: Tue Jan 15 14:28:48 2013 -0500 245 246 configure: Remove AM_MAINTAINER_MODE 247 248 Signed-off-by: Adam Jackson <ajax (a] redhat.com> 249 250 commit 0c7f26ab7fb41873c2e68d8b136ef098ed663aff 251 Author: Alan Coopersmith <alan.coopersmith (a] oracle.com> 252 Date: Wed Jan 2 21:45:11 2013 -0800 253 254 libXdamage 1.1.4 255 256 Signed-off-by: Alan Coopersmith <alan.coopersmith (a] oracle.com> 257 258 commit 665c80d7af5fc7a73b76e0ddaee3536b37b029e9 259 Author: Alan Coopersmith <alan.coopersmith (a] oracle.com> 260 Date: Fri Sep 16 22:16:01 2011 -0700 261 262 Strip trailing whitespace 263 264 Performed with: find * -type f | xargs perl -i -p -e 's{[ \t]+$}{}' 265 git diff -w & git diff -b show no diffs from this change 266 267 Signed-off-by: Alan Coopersmith <alan.coopersmith (a] oracle.com> 268 269 commit 45e9544d8202b76e20923f4d84667879a3d185ec 270 Author: Gaetan Nadon <memsize (a] videotron.ca> 271 Date: Wed Feb 2 11:43:41 2011 -0500 272 273 config: comment, minor upgrade, quote and layout configure.ac 274 275 Group statements per section as per Autoconf standard layout 276 Quote statements where appropriate. 277 Autoconf recommends not using dnl instead of # for comments 278 279 Use AC_CONFIG_FILES to replace the deprecated AC_OUTPUT with parameters. 280 Add AC_CONFIG_SRCDIR([Makefile.am]) 281 Remove redundant AC_SUBST(*_CFLAGS) and/or *_LIBS 282 Update minimum version of util-macros to at least 1.8. 283 No functional configuration changes 284 285 This helps automated maintenance and release activities. 286 Details can be found in http://wiki.x.org/wiki/NewModuleGuidelines 287 288 commit 8de52f71322015a5d2bd9cef58f46b80052562a9 289 Author: Gaetan Nadon <memsize (a] videotron.ca> 290 Date: Fri Jan 28 19:41:37 2011 -0500 291 292 config: replace deprecated AM_CONFIG_HEADER with AC_CONFIG_HEADERS 293 294 Signed-off-by: Gaetan Nadon <memsize (a] videotron.ca> 295 296 commit b628ca236ee8d26358ea5075a89e6cc7d3497dbd 297 Author: Gaetan Nadon <memsize (a] videotron.ca> 298 Date: Thu Jan 27 18:50:14 2011 -0500 299 300 config: remove AC_PROG_CC as it overrides AC_PROG_C_C99 301 302 XORG_STRICT_OPTION from XORG_DEFAULT_OPTIONS calls 303 AC_PROG_C_C99. This sets gcc with -std=gnu99. 304 If AC_PROG_CC macro is called afterwards, it resets CC to gcc. 305 306 Signed-off-by: Gaetan Nadon <memsize (a] videotron.ca> 307 308 commit a08053121ff1115689b3e5e5322e8b8aaa7cb5fc 309 Author: Fernando Carrijo <fcarrijo (a] yahoo.com.br> 310 Date: Thu Jul 1 06:53:31 2010 -0300 311 312 Purge macros NEED_EVENTS and NEED_REPLIES 313 314 Signed-off-by: Fernando Carrijo <fcarrijo (a] yahoo.com.br> 315 Acked-by: Tiago Vignatti <tiago.vignatti (a] nokia.com> 316 Reviewed-by: Alan Coopersmith <alan.coopersmith (a] oracle.com> 317 318 commit 8abc1c8e920821f5ed68e639d3fb71a4ad90a102 319 Author: Alan Coopersmith <alan.coopersmith (a] oracle.com> 320 Date: Tue Jun 8 18:50:45 2010 -0700 321 322 libXdamage 1.1.3 323 324 Signed-off-by: Alan Coopersmith <alan.coopersmith (a] oracle.com> 325 326 commit 0b0b68a2a06f01ad3e185aafb2e9665779bc0084 327 Author: Matthieu Herrb <matthieu.herrb (a] laas.fr> 328 Date: Sun Mar 9 07:56:45 2008 +0100 329 330 nuke RCS Ids 331 332 Signed-off-by: Matthieu Herrb <matthieu.herrb (a] laas.fr> 333 Reviewed by: Alan Coopersmith <alan.coopersmith (a] oracle.com> 334 335 commit 5a77a5e402ab245f2de08886e5fb2934a6c54571 336 Author: Jamey Sharp <jamey (a] minilop.net> 337 Date: Fri Apr 9 17:26:07 2010 -0700 338 339 Always call SyncHandle after issuing an X request. 340 341 commit a414d85a9da3f5b23975a64c351ad00138092107 342 Author: Gaetan Nadon <memsize (a] videotron.ca> 343 Date: Mon Mar 29 16:50:34 2010 -0400 344 345 config: update AC_PREREQ statement to 2.60 346 347 Unrelated to the previous patches, the new value simply reflects 348 the reality that the minimum level for autoconf to configure 349 all x.org modules is 2.60 dated June 2006. 350 351 ftp://ftp.gnu.org/gnu/autoconf/autoconf-2.60.tar.gz 352 353 Signed-off-by: Gaetan Nadon <memsize (a] videotron.ca> 354 355 commit f8914c5dba4c6514b83c7d8f5c550a2603e4da66 356 Author: Gaetan Nadon <memsize (a] videotron.ca> 357 Date: Mon Mar 29 14:53:48 2010 -0400 358 359 config: remove the pkgconfig pc.in file from EXTRA_DIST 360 361 Automake always includes it in the tarball. 362 363 Signed-off-by: Gaetan Nadon <memsize (a] videotron.ca> 364 365 commit 5dd2b14345ba9b8b88d11dc027dc71625fbf15bc 366 Author: Gaetan Nadon <memsize (a] videotron.ca> 367 Date: Fri Nov 27 20:56:04 2009 -0500 368 369 Makefile.am: add ChangeLog and INSTALL on MAINTAINERCLEANFILES 370 371 Now that the INSTALL file is generated. 372 Allows running make maintainer-clean. 373 374 commit 98333e9afea1c5dfb0f4b90c10f25e6b77e72817 375 Author: Gaetan Nadon <memsize (a] videotron.ca> 376 Date: Wed Oct 28 14:09:10 2009 -0400 377 378 INSTALL, NEWS, README or AUTHORS files are missing/incorrect #24206 379 380 Add missing INSTALL file. Use standard GNU file on building tarball 381 README may have been updated 382 Remove AUTHORS file as it is empty and no content available yet. 383 Remove NEWS file as it is empty and no content available yet. 384 385 commit 62d595bc01c0219254560b72978faa3327959eee 386 Author: Gaetan Nadon <memsize (a] videotron.ca> 387 Date: Tue Oct 27 15:07:25 2009 -0400 388 389 Deploy the new XORG_DEFAULT_OPTIONS #24242 390 391 This macro aggregate a number of existing macros that sets commmon 392 X.Org components configuration options. It shields the configuration file from 393 future changes. 394 395 commit 6852db03b187cfce5a41cc8addbc734091e6b725 396 Author: Gaetan Nadon <memsize (a] videotron.ca> 397 Date: Mon Oct 26 22:08:42 2009 -0400 398 399 Makefile.am: ChangeLog not required: EXTRA_DIST or *CLEANFILES #24432 400 401 ChangeLog filename is known to Automake and requires no further 402 coding in the makefile. 403 404 commit ef9fad1a1f327c1f19009d4206c67762ef0d436a 405 Author: Gaetan Nadon <memsize (a] videotron.ca> 406 Date: Thu Oct 22 13:10:20 2009 -0400 407 408 .gitignore: use common defaults with custom section # 24239 409 410 Using common defaults will reduce errors and maintenance. 411 Only the very small or inexistent custom section need periodic maintenance 412 when the structure of the component changes. Do not edit defaults. 413 414 commit d9ff5ede9989b0312416fd68fc3dd866c551aad9 415 Author: Gaetan Nadon <memsize (a] videotron.ca> 416 Date: Thu Oct 22 12:34:19 2009 -0400 417 418 .gitignore: use common defaults with custom section # 24239 419 420 Using common defaults will reduce errors and maintenance. 421 Only the very small or inexistent custom section need periodic maintenance 422 when the structure of the component changes. Do not edit defaults. 423 424 commit 8a02e2cfe8cfcaa791b81b47e44304f326a0dcb8 425 Author: Jeremy Huddleston <jeremyhu (a] freedesktop.org> 426 Date: Wed Oct 21 12:47:24 2009 -0700 427 428 This is not a GNU project, so declare it foreign. 429 430 On Wed, 2009-10-21 at 13:36 +1000, Peter Hutterer wrote: 431 > On Tue, Oct 20, 2009 at 08:23:55PM -0700, Jeremy Huddleston wrote: 432 > > I noticed an INSTALL file in xlsclients and libXvMC today, and it 433 > > was quite annoying to work around since 'autoreconf -fvi' replaces 434 > > it and git wants to commit it. Should these files even be in git? 435 > > Can I nuke them for the betterment of humanity and since they get 436 > > created by autoreconf anyways? 437 > 438 > See https://bugs.freedesktop.org/show_bug.cgi?id=24206 439 440 As an interim measure, replace AM_INIT_AUTOMAKE([dist-bzip2]) with 441 AM_INIT_AUTOMAKE([foreign dist-bzip2]). This will prevent the generation 442 of the INSTALL file. It is also part of the 24206 solution. 443 444 Signed-off-by: Jeremy Huddleston <jeremyhu (a] freedesktop.org> 445 446 commit 728ae9bda2e536897b630b149df522fa6286a1c5 447 Author: Alan Coopersmith <alan.coopersmith (a] sun.com> 448 Date: Tue Oct 6 11:24:50 2009 -0700 449 450 libXdamage 1.1.2 451 452 Signed-off-by: Alan Coopersmith <alan.coopersmith (a] sun.com> 453 454 commit 229ebbc4acd3de3a4a118f53db013629691b6ce9 455 Author: Alan Coopersmith <alan.coopersmith (a] sun.com> 456 Date: Tue Oct 6 11:18:39 2009 -0700 457 458 Migrate to xorg macros 1.3 & XORG_DEFAULT_OPTIONS 459 460 Signed-off-by: Alan Coopersmith <alan.coopersmith (a] sun.com> 461 462 commit eed319fd48299e49b2f6ae9ff452a5d6c64ea192 463 Author: Peter Hutterer <peter.hutterer (a] who-t.net> 464 Date: Thu Sep 3 15:50:23 2009 +1000 465 466 Require pkg-config to find the packages, no funky x11 lookups. 467 468 Signed-off-by: Peter Hutterer <peter.hutterer (a] who-t.net> 469 Acked-by: Daniel Stone <daniel (a] fooishbar.org> 470 471 commit c3f08b7b0a0b1dd42dd00efe07ebc07f7085b433 472 Author: Peter Hutterer <peter.hutterer (a] who-t.net> 473 Date: Thu Sep 3 15:50:18 2009 +1000 474 475 Fix a comment in configure.ac, this is libXdamage, not libXfixes 476 477 Signed-off-by: Peter Hutterer <peter.hutterer (a] who-t.net> 478 479 commit 02a61d40687f4ee358e2f7903ce0ceacf273e254 480 Author: Alan Coopersmith <alan.coopersmith (a] sun.com> 481 Date: Mon Feb 2 20:34:32 2009 -0800 482 483 Add README with pointers to mailing list, bugzilla & git repos 484 485 Signed-off-by: Alan Coopersmith <alan.coopersmith (a] sun.com> 486 487 commit 0a48e5c663bf2ec3f6870bf9e9cfa90dfddd6fe6 488 Author: Paulo Cesar Pereira de Andrade <pcpa (a] mandriva.com.br> 489 Date: Thu Jan 29 15:41:23 2009 -0200 490 491 Janitor: Correct make distcheck and compiler warnings. 492 493 commit 0ca7d78aeb8035ef52c1415170e1257493d789fd 494 Author: Peter Hutterer <peter (a] cs.unisa.edu.au> 495 Date: Mon May 19 17:24:04 2008 +0930 496 497 Change parameter names for QueryVersion/QueryExtension. 498 499 Simply to clarify the inner workings of the lib and that these parameters are 500 treated as return values only. 501 502 X.Org Bug 14511 <http://bugs.freedesktop.org/show_bug.cgi?id=14511> 503 504 commit 87ebfbc56abe16de6f84f559728a40f63d44006a 505 Author: James Cloos <cloos (a] jhcloos.com> 506 Date: Thu Dec 6 16:38:26 2007 -0500 507 508 Replace static ChangeLog with dist-hook to generate from git log 509 510 commit d9714f03dde2d2b20fb29d46b44bb253e4954ee0 511 Author: Ryan Lortie <desrt (a] desrt.ca> 512 Date: Fri Sep 7 22:02:18 2007 -0700 513 514 libXdamage incorrectly encodes/decodes the 'More' field from the event. 515 516 The client library for xdamage currently fails to fill in the 'more' 517 field. As a result, you get whatever uninitialised junk was there 518 before. 519 520 The server sets the high bit of 'level' when there is 521 'more' (DamageNotifyMore = 0x80). A patch follows to fix the client 522 library. 523 524 commit 7548981a458b091b29d74207884669214f63ee9f 525 Author: James Cloos <cloos (a] jhcloos.com> 526 Date: Mon Sep 3 05:53:36 2007 -0400 527 528 Add *~ to .gitignore to skip patch/emacs droppings 529 530 commit b96e17d8a4fe8e19515c0f183e5e299939c6eca0 531 Author: Adam Jackson <ajax (a] benzedrine.nwnk.net> 532 Date: Mon Mar 5 16:51:06 2007 -0500 533 534 Fix DSO version number to match protocol number. 535 536 Also increment package version number to 1.1.1 for eventual release. 537 538 commit 0b69465a3b118f3fe1c9b0c206996d510ccbec36 539 Author: Eric Anholt <eric (a] anholt.net> 540 Date: Tue Jan 9 16:21:13 2007 -0800 541 542 Track rename of DamagePost to DamageAdd. 543 544 commit 0d7f8e4f151480ee1415bd5a13799ad6385a8df3 545 Author: Eric Anholt <eric (a] anholt.net> 546 Date: Mon Jan 8 15:02:42 2007 -0800 547 548 More doc/copyright updates for Damage 1.1 update. 549 550 commit 716d84889f90880c634136e9c1e754edd587ea9e 551 Author: Eric Anholt <eric (a] anholt.net> 552 Date: Fri Jan 5 17:56:58 2007 -0800 553 554 Add a request to report a region of damage against a drawable. 555 556 This brings the library up to supporting version 1.1 of the protocol. Bump 557 package version accordingly. 558 559 commit c3c2777a7805c95f7d7bf64998e188d0eba65cba 560 Author: Daniel Stone <daniel (a] fooishbar.org> 561 Date: Wed Nov 8 16:10:20 2006 +0200 562 563 bump to 1.0.4 564 565 commit 31829be123a9ce58bf8e0c4718815b7b63d0d512 566 Author: Josh Triplett <josh (a] freedesktop.org> 567 Date: Mon Oct 16 02:58:24 2006 -0700 568 569 Remove incorrect UnlockDisplay and SyncHandle from XDamageQueryVersion 570 571 XDamageQueryVersion calls UnlockDisplay and SyncHandle, without a matching 572 LockDisplay. This triggers an assertion in Xlib/XCB designed to catch these 573 kinds of bugs. Remove the two calls, which fixes the assertion. 574 575 Thanks to Mike Auty <mike.auty (a] gmail.com> for the report. 576 577 commit 62ffc46be52244b252dfab643bdfa1aa862820f0 578 Author: Alan Coopersmith <alan.coopersmith (a] sun.com> 579 Date: Thu Jul 13 14:58:51 2006 -0700 580 581 renamed: .cvsignore -> .gitignore 582 583 commit 7558d929f538ef7c87aeb88a47856f94282ab2a9 584 Author: Adam Jackson <ajax (a] nwnk.net> 585 Date: Thu Apr 27 00:05:40 2006 +0000 586 587 Bump to 1.0.3 588 589 commit e05bfca0a4377cfd137249f7df8c95706372c140 590 Author: Adam Jackson <ajax (a] nwnk.net> 591 Date: Mon Apr 3 01:00:11 2006 +0000 592 593 Coverity #574: Plug a leak on the error path. 594 595 commit 660305b57b0af382dd111d8a9d0a38f663efdf25 596 Author: Kevin E Martin <kem (a] kem.org> 597 Date: Thu Dec 15 00:24:29 2005 +0000 598 599 Update package version number for final X11R7 release candidate. 600 601 commit 75bb1e7a7f32d2bf8e3e80ae370adc0c69585698 602 Author: Kevin E Martin <kem (a] kem.org> 603 Date: Sat Dec 3 05:49:43 2005 +0000 604 605 Update package version number for X11R7 RC3 release. 606 607 commit 5805e223e70e84d07f9203ae30effcbbc40746a6 608 Author: Kevin E Martin <kem (a] kem.org> 609 Date: Sat Nov 19 07:15:41 2005 +0000 610 611 Update pkgconfig files to separate library build-time dependencies from 612 application build-time dependencies, and update package deps to work 613 with separate build roots. 614 615 commit 48527807411901e1d6806a2c9e8a84e1fa684042 616 Author: Kevin E Martin <kem (a] kem.org> 617 Date: Wed Nov 9 21:19:12 2005 +0000 618 619 Update package version number for X11R7 RC2 release. 620 621 commit 077ce8402a1f8413efdede402cb6f89b9ff797dd 622 Author: Kevin E Martin <kem (a] kem.org> 623 Date: Tue Nov 1 15:11:51 2005 +0000 624 625 Update pkgcheck dependencies to work with separate build roots. 626 627 commit c6a8324c38acc33357e6dcf927f482db22383ab2 628 Author: Kevin E Martin <kem (a] kem.org> 629 Date: Fri Jul 29 21:22:51 2005 +0000 630 631 Various changes preparing packages for RC0: 632 - Verify and update package version numbers as needed 633 - Implement versioning scheme 634 - Change bug address to point to bugzilla bug entry form 635 - Disable loadable i18n in libX11 by default (use --enable-loadable-i18n to 636 reenable it) 637 - Fix makedepend to use pkgconfig and pass distcheck 638 - Update build script to build macros first 639 - Update modular Xorg version 640 641 commit b02c66e05a173fd20c7b42f4fccf5bcd069f5931 642 Author: Daniel Stone <daniel (a] fooishbar.org> 643 Date: Sat Jul 16 06:37:24 2005 +0000 644 645 Set soversion to 1.0.0 using -version-number. 646 647 commit 4011ede413408c9a5577617dbcd1124a3ee8dce5 648 Author: Adam Jackson <ajax (a] nwnk.net> 649 Date: Thu Jul 14 06:28:45 2005 +0000 650 651 Thinkos. AC_SUBST on the damageproto CFLAGS, and s/AM__CFLAGS/AM_CFLAGS/. 652 653 commit 657bb1fcc90a08f713c8f97c4f904808ea023c6e 654 Author: Keith Packard <keithp (a] keithp.com> 655 Date: Sat Jul 9 06:14:50 2005 +0000 656 657 Add .cvsignore files Switch _la_CFLAGS for AM_CFLAGS to clean up directory 658 659 commit 575cf8f35bb51df34d31035fcbf7d425f85ac79c 660 Author: Daniel Stone <daniel (a] fooishbar.org> 661 Date: Sun Jul 3 07:00:56 2005 +0000 662 663 Add Xtrans definitions (FONT_t, TRANS_CLIENT) to clean up warnings. 664 Add XSERV_t, TRANS_SERVER, TRANS_REOPEN to quash warnings. 665 Add #include <dix-config.h> or <xorg-config.h>, as appropriate, to all 666 source files in the xserver/xorg tree, predicated on defines of 667 HAVE_{DIX,XORG}_CONFIG_H. Change all Xfont includes to 668 <X11/fonts/foo.h>. 669 670 commit 7a89fded1dac6137a9376bf161da22c1c93a9939 671 Author: Kevin E Martin <kem (a] kem.org> 672 Date: Sat Jul 2 06:35:03 2005 +0000 673 674 Add appropriate lib*_CFLAGS to Makefile.am's -- fixes build problems 675 676 commit c04e1d2204ae972828b19bf422670e480805e9ac 677 Author: Adam Jackson <ajax (a] nwnk.net> 678 Date: Thu May 19 00:22:32 2005 +0000 679 680 revert last change, didn't do right thing at all, sorry for the noise 681 682 commit 00361b6bec032a3be14e2a191b389115ec9767ba 683 Author: Adam Jackson <ajax (a] nwnk.net> 684 Date: Thu May 19 00:10:07 2005 +0000 685 686 Require automake 1.7 in AM_INIT_AUTOMAKE 687 688 commit 4b9f6d209d2833afb58c2f2e648907f460d1be95 689 Author: Sren Sandmann Pedersen <sandmann (a] daimi.au.dk> 690 Date: Tue May 17 17:02:24 2005 +0000 691 692 Conditionally include config.h in xc/lib/Xdamage and xc/lib/Xfixes 693 694 commit daa2ab8a2deff5730713c38322be53ed8facae74 695 Author: Sren Sandmann Pedersen <sandmann (a] daimi.au.dk> 696 Date: Tue May 17 16:47:59 2005 +0000 697 698 Add Xdamage build system 699 700 commit a9055b6135f82bafefd05b140c9ec4a6d0b1fc9f 701 Author: Markus Kuhn <Markus.Kuhn (a] cl.cam.ac.uk> 702 Date: Sat Dec 4 00:42:47 2004 +0000 703 704 Encoding of numerous files changed to UTF-8 705 706 commit 1945ec8dea6d16523f480b423b5e7054928c2eea 707 Author: Eric Anholt <anholt (a] freebsd.org> 708 Date: Sat Jul 31 05:50:39 2004 +0000 709 710 Bring in Xfixes, Xdamage, and Xcomposite userland from xserver CVS: 711 - Update Xfixes headers to protocol major version 3. 712 - Add composite headers. 713 - Add libXfixes, libXdamage, and libXcomposite. 714 - Add imake glue for new libraries, but leave Composite off by default 715 until issues are resolved. 716