ChangeLog revision da4b5163
1commit 1050104d4aef1d09d61e31f313fe484b161fad23 2Author: Alan Coopersmith <alan.coopersmith@oracle.com> 3Date: Sun Nov 13 09:45:35 2022 -0800 4 5 xlsclients 1.1.5 6 7 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 8 9commit 0cf445b33e15df1c194f2a8e2683ba5b1b2e4254 10Author: Alan Coopersmith <alan.coopersmith@oracle.com> 11Date: Mon Oct 24 18:11:31 2022 -0700 12 13 Resolve implicit conversion warnings from clang 14 15 xlsclients.c:303:47: warning: implicit conversion changes signedness: 'int' to 'unsigned long' [-Wsign-conversion] 16 qt_reply = malloc(sizeof(*qt_reply) * cs->list_length); 17 ~ ~~~~^~~~~~~~~~~ 18 xlsclients.c:323:31: warning: implicit conversion changes signedness: 'int' to 'unsigned long' [-Wsign-conversion] 19 cs = malloc(sizeof(*cs) + child_count * (sizeof(*cs->prop_cookie) + sizeof(*cs->tree_cookie) + sizeof(*cs->win))); 20 ^~~~~~~~~~~ ~ 21 xlsclients.c:515:38: warning: implicit conversion changes signedness: 'unsigned int' to 'int' [-Wsign-conversion] 22 class_len = wm_class->value_len - name_len; 23 ~ ~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~ 24 xlsclients.c:515:40: warning: implicit conversion changes signedness: 'int' to 'unsigned int' [-Wsign-conversion] 25 class_len = wm_class->value_len - name_len; 26 ~ ^~~~~~~~ 27 xlsclients.c:514:56: warning: implicit conversion loses integer precision: 'unsigned long' to 'int' [-Wshorten-64-to-32] 28 name_len = strnlen(res_name, wm_class->value_len) + 1; 29 ~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~ 30 xlsclients.c:520:15: warning: implicit conversion loses integer precision: 'unsigned long' to 'int' [-Wshorten-64-to-32] 31 class_len = strlen(res_class); 32 ~ ^~~~~~~~~~~~~~~~~ 33 34 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 35 36commit 70b32490063a227e48fe06ec2e0e2c976b6eff12 37Author: Alan Coopersmith <alan.coopersmith@oracle.com> 38Date: Mon Oct 24 18:02:18 2022 -0700 39 40 usage: add cold & noreturn attributes to function 41 42 As suggested by clang: 43 xlsclients.c:69:1: warning: function 'usage' could be declared with attribute 'noreturn' [-Wmissing-noreturn] 44 { 45 ^ 46 47 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 48 49commit 99c7b421dbd083c3c16158982eabb28758868188 50Author: Alan Coopersmith <alan.coopersmith@oracle.com> 51Date: Mon Oct 24 17:58:51 2022 -0700 52 53 Handle -Wsign-compare warnings 54 55 xlsclients.c: In function ‘show_client_properties’: 56 xlsclients.c:485:19: warning: comparison of integer expressions of different signedness: ‘int’ and ‘uint32_t’ {aka ‘unsigned int’} [-Wsign-compare] 57 485 | for (i = 0; i < command->value_len && charsleft > 0; ) { 58 | ^ 59 xlsclients.c:488:15: warning: comparison of integer expressions of different signedness: ‘int’ and ‘uint32_t’ {aka ‘unsigned int’} [-Wsign-compare] 60 488 | if (i < command->value_len && charsleft > 0) { 61 | ^ 62 63 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 64 65commit 977636f190306bddbe3d09123283484ff5bd1b33 66Author: Alan Coopersmith <alan.coopersmith@oracle.com> 67Date: Mon Oct 24 17:55:37 2022 -0700 68 69 Quiet -Wmaybe-uninitialized warnings from gcc 70 71 I think these were false positives, as the accesses were all inside 72 "if (cs->verbose)" checks, matching the initialization case for them, 73 but this makes gcc stop warning. 74 75 xlsclients.c:531:13: warning: ‘wm_class’ may be used uninitialized [-Wmaybe-uninitialized] 76 531 | free(wm_class); 77 | ^~~~~~~~~~~~~~ 78 xlsclients.c:440:31: note: ‘wm_class’ was declared here 79 440 | xcb_get_property_reply_t *wm_class; 80 | ^~~~~~~~ 81 xlsclients.c:475:35: warning: ‘icon_name’ may be used uninitialized [-Wmaybe-uninitialized] 82 475 | if (icon_name && icon_name->type) 83 | ~~~~~~~~~^~~~~~ 84 xlsclients.c:439:31: note: ‘icon_name’ was declared here 85 439 | xcb_get_property_reply_t *icon_name; 86 | ^~~~~~~~~ 87 xlsclients.c:527:13: warning: ‘name’ may be used uninitialized [-Wmaybe-uninitialized] 88 527 | free(name); 89 | ^~~~~~~~~~ 90 xlsclients.c:438:31: note: ‘name’ was declared here 91 438 | xcb_get_property_reply_t *name; 92 | ^~~~ 93 94 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 95 96commit c8d8a4e66279130605b73b5dcef61c31ae414d57 97Author: Alan Coopersmith <alan.coopersmith@oracle.com> 98Date: Thu Jul 28 17:30:21 2022 -0700 99 100 gitlab CI: stop requiring Signed-off-by in commits 101 102 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 103 104commit c9c4b05c3acf831a1ec96bb71dc685bdf643d015 105Author: Alan Coopersmith <alan.coopersmith@oracle.com> 106Date: Mon Dec 6 15:28:41 2021 -0800 107 108 Build xz tarballs instead of bzip2 109 110 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 111 112commit 226f6b378937ad4569b20657bf8f53a72c2b77e0 113Author: Alan Coopersmith <alan.coopersmith@oracle.com> 114Date: Mon Dec 6 15:28:38 2021 -0800 115 116 gitlab CI: add a basic build test 117 118 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 119 120commit 7d58bc3084517a1cc40364feece4b268a8bef3f7 121Author: Alan Coopersmith <alan.coopersmith@oracle.com> 122Date: Wed Nov 21 17:13:44 2018 -0800 123 124 Update configure.ac bug URL for gitlab migration 125 126 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 127 128commit bbf3525171ac7d643aba3202b47ea482a7fe481f 129Author: Alan Coopersmith <alan.coopersmith@oracle.com> 130Date: Fri Nov 16 22:34:29 2018 -0800 131 132 Update README for gitlab migration 133 134 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 135 136commit e2d28acf38c77cdc95dc7cae558188a472ddab47 137Author: Alan Coopersmith <alan.coopersmith@oracle.com> 138Date: Fri Mar 9 17:54:25 2018 -0800 139 140 xlsclients 1.1.4 141 142 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 143 144commit 6d2d5e0e5c74b85543d3aa727693b9589841efaa 145Author: Mihail Konev <k.mvc@ya.ru> 146Date: Thu Jan 26 14:00:21 2017 +1000 147 148 autogen: add default patch prefix 149 150 Signed-off-by: Mihail Konev <k.mvc@ya.ru> 151 152commit a0ee255f3a74fbac4155a8afdd217aae04222d8a 153Author: Emil Velikov <emil.l.velikov@gmail.com> 154Date: Mon Mar 9 12:00:52 2015 +0000 155 156 autogen.sh: use quoted string variables 157 158 Place quotes around the $srcdir, $ORIGDIR and $0 variables to prevent 159 fall-outs, when they contain space. 160 161 Signed-off-by: Emil Velikov <emil.l.velikov@gmail.com> 162 Reviewed-by: Peter Hutterer <peter.hutterer@who-t.net> 163 Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net> 164 165commit 662a47bd8e9dcdcaccf78ba46f5e1f95c6e5d8f7 166Author: Peter Hutterer <peter.hutterer@who-t.net> 167Date: Tue Jan 24 10:32:07 2017 +1000 168 169 autogen.sh: use exec instead of waiting for configure to finish 170 171 Syncs the invocation of configure with the one from the server. 172 173 Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net> 174 Reviewed-by: Emil Velikov <emil.velikov@collabora.com> 175 176commit 6f1f7f187326b476f0246fd138dfc2539540cde6 177Author: Alan Coopersmith <alan.coopersmith@oracle.com> 178Date: Sat May 31 22:54:41 2014 -0700 179 180 Print which option was in error along with usage message 181 182 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 183 184commit 9f27a314b6e8527491f43c25ecca8344a476c629 185Author: Alan Coopersmith <alan.coopersmith@oracle.com> 186Date: Sat May 31 22:46:24 2014 -0700 187 188 autogen.sh: Honor NOCONFIGURE=1 189 190 See http://people.gnome.org/~walters/docs/build-api.txt 191 192 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 193 194commit bb00c8c00d8076ef5d044544ba3d0ae072e94567 195Author: Alan Coopersmith <alan.coopersmith@oracle.com> 196Date: Sat May 31 22:46:24 2014 -0700 197 198 configure: Drop AM_MAINTAINER_MODE 199 200 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 201 202commit 1bdd68ccb6f107525d27a2963f01f7bc4830e643 203Author: Alan Coopersmith <alan.coopersmith@oracle.com> 204Date: Sun Sep 8 09:56:46 2013 -0700 205 206 xlsclients 1.1.3 207 208 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 209 210commit c5de636fc500d5151ce4a4d0ceb0cbc152d73b49 211Author: Alan Coopersmith <alan.coopersmith@oracle.com> 212Date: Fri Jul 19 00:48:10 2013 -0700 213 214 Fix deconstification warnings from gcc 215 216 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 217 218commit a67a804a43ad75efb3040c9e9e067fc60cde1256 219Author: Alan Coopersmith <alan.coopersmith@oracle.com> 220Date: Fri Jul 19 00:45:13 2013 -0700 221 222 Add -version flag to print version from PACKAGE_STRING 223 224 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 225 226commit 81a64c9112b9d650106a01d8bcd246011d037bc2 227Author: Alan Coopersmith <alan.coopersmith@oracle.com> 228Date: Tue Jan 22 22:46:42 2013 -0800 229 230 Give unique names to the two reply variables in child_info 231 232 Clears compiler warnings: 233 234 xlsclients.c:253:28: warning: declaration shadows a local variable [-Wshadow] 235 xcb_get_property_reply_t *reply; 236 ^ 237 xlsclients.c:250:30: note: previous declaration is here 238 xcb_query_tree_reply_t **reply; 239 240 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 241 242commit 70c0bd30f0f77e70910d10f91ecca617d6b5acb7 243Author: Gaetan Nadon <memsize@videotron.ca> 244Date: Sun Jan 22 20:19:45 2012 -0500 245 246 configure.ac: regroup statements and comment 247 248 Add missing AC_CONFIG_SRCDIR([Makefile.am]) 249 250 Move AC_USE_SYSTEM_EXTENSIONS higher up in Autoconf init section 251 which must come before XORG_DEFAULT_OPTIONS 252 253 Move XORG_DEFAULT_OPTIONS to its usual place with X.Org macros 254 Note that AC_FUNC_STRNLEN calls AC_REQUIRE(AC_USE_SYSTEM_EXTENSIONS) 255 256 Comment the strnlen function replacement. 257 http://pubs.opengroup.org/onlinepubs/9699919799/functions/strlen.html 258 259 No functional changes. Following the layout in 260 http://www.x.org/wiki/NewModuleGuidelines 261 262 Signed-off-by: Gaetan Nadon <memsize@videotron.ca> 263 264commit 395f3573fe0124991eb9a2f33473ea2ed2fd422c 265Author: Gaetan Nadon <memsize@videotron.ca> 266Date: Fri Jan 20 19:57:48 2012 -0500 267 268 Revert "make: remove $(LIBOBJS) dead code" 269 270 AC_FUNC_STRLEN is one of the functions that call AC_LIBOBJ 271 which sets $LIBOBJ. 272 273 This reverts commit 789a5b42a716b14429c67161147151dd57dd5480. 274 275commit 789a5b42a716b14429c67161147151dd57dd5480 276Author: Gaetan Nadon <memsize@videotron.ca> 277Date: Fri Jan 20 15:19:26 2012 -0500 278 279 make: remove $(LIBOBJS) dead code 280 281 Starting at Autoconf 2.53, the use of LIBOBJS is an error. 282 http://www.gnu.org/software/autoconf/manual/autoconf.html# 283 AC_005fLIBOBJ-vs-LIBOBJS 284 285 There are no system functions to override in this module. 286 287 Signed-off-by: Gaetan Nadon <memsize@videotron.ca> 288 289commit 5f064f70b183147578919166bedeca55cdb0af71 290Author: Alan Coopersmith <alan.coopersmith@oracle.com> 291Date: Mon May 2 21:12:31 2011 -0700 292 293 xlsclients 1.1.2 294 295 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 296 297commit 61be3feb4cfc760f63d6b8a4debd3898fdc8fa16 298Author: Arnaud Fontaine <arnau@debian.org> 299Date: Mon May 2 11:37:34 2011 +0900 300 301 Depend on xcb >= 1.6 for XCB_ATOM_*. 302 303 Signed-off-by: Arnaud Fontaine <arnau@debian.org> 304 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 305 306commit 41689f150904be690f3aa96c283a7ee632d566ce 307Author: Dan Nicholson <dbn.lists@gmail.com> 308Date: Mon Mar 7 14:21:09 2011 -0800 309 310 Drop dependency on xcb-atom/xcb-util 311 312 With commit 223851b6, the atom names from xcb/xproto.h are being used 313 and xcb-atom is no longer needed. 314 315 Signed-off-by: Dan Nicholson <dbn.lists@gmail.com> 316 Reviewed-by: Jon TURNEY <jon.turney@dronecode.org.uk> 317 318commit 223851b68fedad730747652bc6560e40ca695ea7 319Author: Jon TURNEY <jon.turney@dronecode.org.uk> 320Date: Mon Mar 7 13:54:53 2011 +0000 321 322 Use XCB_ATOM_* atom names rather than deprecated atom names 323 324 Those deprecated atom names were removed from xcb/util in commit 325 2f0334b3eb49fa3a0d6daf6b9dde10e480a5c59f 326 327 Found by tinderbox, see: 328 329 http://tinderbox.freedesktop.org/builds/2011-03-06-0008/logs/xlsclients/#build 330 http://tinderbox.freedesktop.org/builds/2011-03-07-0001/logs/xlsclients/#build 331 332 Signed-off-by: Jon TURNEY <jon.turney@dronecode.org.uk> 333 Tested-by: Dan Nicholson <dbn.lists@gmail.com> 334 Signed-off-by: Peter Harris <pharris@opentext.com> 335 336commit 1439da945a066c5bdf821a4f1af2bc356452e170 337Author: Gaetan Nadon <memsize@videotron.ca> 338Date: Wed Jan 19 10:06:56 2011 -0500 339 340 config: move man pages into their own directory 341 342 Use services provided by XORG_MANPAGE_SECTIONS. 343 Use standard Makefile for man pages. 344 345 Signed-off-by: Gaetan Nadon <memsize@videotron.ca> 346 347commit 2bb00a3e1d7eea20a232f079d41cd45985e0a721 348Author: Gaetan Nadon <memsize@videotron.ca> 349Date: Thu Jan 13 17:15:36 2011 -0500 350 351 man: replace hard coded man page section with substitution strings 352 353 Signed-off-by: Gaetan Nadon <memsize@videotron.ca> 354 355commit 9a2a65ddea132b64d43b8f853ad7d3ca229d34fe 356Author: Gaetan Nadon <memsize@videotron.ca> 357Date: Thu Jan 13 11:15:47 2011 -0500 358 359 man: remove trailing spaces and tabs 360 361 Using s/[ \t]*$// 362 363 Signed-off-by: Gaetan Nadon <memsize@videotron.ca> 364 365commit d2dba124d303cf7b031c5f64293ac38b5a8418ab 366Author: Gaetan Nadon <memsize@videotron.ca> 367Date: Wed Jan 12 16:28:02 2011 -0500 368 369 config: replace deprecated AM_CONFIG_HEADER with AC_CONFIG_HEADERS 370 371 This silences an Autoconf warning 372 373commit c1c91e1545ef34d0eeb4fb9b5577174121e28859 374Author: Jesse Adkins <jesserayadkins@gmail.com> 375Date: Tue Sep 28 13:29:50 2010 -0700 376 377 Purge cvs tags. 378 379 Signed-off-by: Jesse Adkins <jesserayadkins@gmail.com> 380 381commit 29ad1d40dbd77d6efedd5d7db53e35650732dd6e 382Author: Alan Coopersmith <alan.coopersmith@oracle.com> 383Date: Fri Sep 24 09:43:42 2010 -0700 384 385 xlsclients 1.1.1 386 387 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 388 389commit 050eb2ca576e11cf5781af38db1442f2c9dd2f56 390Author: Alan Coopersmith <alan.coopersmith@oracle.com> 391Date: Fri Sep 24 09:23:51 2010 -0700 392 393 config: Remove unnecessary calls from configure.ac 394 395 AC_PROG_CC & AC_PROG_INSTALL are provided by XORG_DEFAULT_OPTIONS now 396 PKG_CONFIG_MODULES handles AC_SUBST of the CFLAGS & LIBS variables 397 398 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 399 400commit ca8d92fe63776474f3aa166bbedd9220ec560177 401Author: Alan Coopersmith <alan.coopersmith@oracle.com> 402Date: Fri Sep 24 09:11:05 2010 -0700 403 404 config: upgrade to util-macros 1.8 for additional man page support 405 406 Use MAN_SUBST now supplied in XORG_MANPAGE_SECTIONS 407 The value of MAN_SUBST is the same for all X.Org packages. 408 409 Use AC_PROG_SED now supplied by XORG_DEFAULT_OPTIONS 410 Enables use of platform appropriate version of sed. 411 412 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 413 414commit ffdf25c57b0e1b040523789b1e21fb24c0ec2e07 415Author: Gaetan Nadon <memsize@videotron.ca> 416Date: Tue Jul 20 18:45:18 2010 -0400 417 418 config: update AC_PREREQ statement to 2.60 419 420 Unrelated to the previous patches, the new value simply reflects 421 the reality that the minimum level for autoconf to configure 422 all x.org modules is 2.60 dated June 2006. 423 424 ftp://ftp.gnu.org/gnu/autoconf/autoconf-2.60.tar.gz 425 426 Signed-off-by: Gaetan Nadon <memsize@videotron.ca> 427 428commit a8bd97c46f9671a02ad0d436142c9ff80cd5bc15 429Author: Alan Coopersmith <alan.coopersmith@oracle.com> 430Date: Wed Jun 23 21:07:39 2010 -0700 431 432 strnlen.h should be added to EXTRA_DIST, not overwrite it 433 434 Fixes 'make distcheck' failure found by tinderbox: 435 make[2]: *** No rule to make target `xlsclients.1', needed by `all-am'. Stop. 436 437 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 438 439commit f30f41b8dc37e775279835c97f2bea83a513dc10 440Author: Jeremy Huddleston <jeremyhu@apple.com> 441Date: Fri Jun 4 22:14:23 2010 -0700 442 443 Add strnlen.h to EXTRA_DIST 444 445 Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com> 446 447commit cc6dbd2c1e7966b32e333142ab7630ed19700414 448Author: Alan Coopersmith <alan.coopersmith@oracle.com> 449Date: Thu Jun 3 16:05:20 2010 -0700 450 451 xlsclients 1.1.0 452 453 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 454 455commit 1a4649f30813b02caac49de85e2f8b52b7a967fb 456Author: Gaetan Nadon <memsize@videotron.ca> 457Date: Thu Nov 26 09:19:54 2009 -0500 458 459 Makefile.am: add ChangeLog and INSTALL on MAINTAINERCLEANFILES 460 461 Now that the INSTALL file is generated. 462 Allows running make maintainer-clean. 463 464commit 677599f014077c139d42d1c081f24cfcd15882da 465Author: Gaetan Nadon <memsize@videotron.ca> 466Date: Wed Oct 28 14:09:08 2009 -0400 467 468 INSTALL, NEWS, README or AUTHORS files are missing/incorrect #24206 469 470 Add missing INSTALL file. Use standard GNU file on building tarball 471 README may have been updated 472 Remove AUTHORS file as it is empty and no content available yet. 473 Remove NEWS file as it is empty and no content available yet. 474 475commit d3a3f207f7ee1a4d6ee854d262f9875449bca29f 476Author: Gaetan Nadon <memsize@videotron.ca> 477Date: Mon Oct 26 22:08:39 2009 -0400 478 479 Makefile.am: ChangeLog not required: EXTRA_DIST or *CLEANFILES #24432 480 481 ChangeLog filename is known to Automake and requires no further 482 coding in the makefile. 483 484commit ca9714918eaa05fb631448519c60457d00bb66ae 485Author: Gaetan Nadon <memsize@videotron.ca> 486Date: Thu Oct 22 12:34:15 2009 -0400 487 488 .gitignore: use common defaults with custom section # 24239 489 490 Using common defaults will reduce errors and maintenance. 491 Only the very small or inexistent custom section need periodic maintenance 492 when the structure of the component changes. Do not edit defaults. 493 494commit 8dda84e71446de8726846a2fa5c83b4354e4811b 495Author: Alan Coopersmith <alan.coopersmith@sun.com> 496Date: Tue Oct 27 12:54:51 2009 -0700 497 498 Add Copyright/License notice for xcb & strnlen changes to COPYING 499 500 Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com> 501 502commit 9745fd920083438ef2c1566947f179b105bf8deb 503Author: Alan Coopersmith <alan.coopersmith@sun.com> 504Date: Tue Oct 20 16:20:18 2009 -0700 505 506 Fix check for xcb_connect failure 507 508 Prevents core dump when display can't be opened 509 510 Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com> 511 512commit 222dc9735d6fd2ab1b22003eb00348b98b87afe7 513Author: Gaetan Nadon <memsize@videotron.ca> 514Date: Wed Oct 21 12:25:58 2009 -0700 515 516 xlsclients is not a GNU project, so declare it foreign. 517 518 On Wed, 2009-10-21 at 13:36 +1000, Peter Hutterer wrote: 519 > On Tue, Oct 20, 2009 at 08:23:55PM -0700, Jeremy Huddleston wrote: 520 > > I noticed an INSTALL file in xlsclients and libXvMC today, and it 521 > > was quite annoying to work around since 'autoreconf -fvi' replaces 522 > > it and git wants to commit it. Should these files even be in git? 523 > > Can I nuke them for the betterment of humanity and since they get 524 > > created by autoreconf anyways? 525 > 526 > See https://bugs.freedesktop.org/show_bug.cgi?id=24206 527 528 As an interim measure, replace AM_INIT_AUTOMAKE([dist-bzip2]) with 529 AM_INIT_AUTOMAKE([foreign dist-bzip2]). This will prevent the generation 530 of the INSTALL file. It is also part of the 24206 solution. 531 532commit 7720fa29dfe664c363c27c0038a269bc8aeea74f 533Author: Yaakov Selkowitz <yselkowitz@users.sourceforge.net> 534Date: Wed Oct 21 00:18:26 2009 -0500 535 536 Use inttypes.h for correct printf formats 537 538 xcb_atom_t and xcb_window_t are both typedef'd as uint32_t. 539 540 Since PRI*32 are a C99 feature that may not be available, fallbacks 541 are provided based on the assumption of a 32-bit int. 542 543 Signed-off-by: Yaakov Selkowitz <yselkowitz@users.sourceforge.net> 544 Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com> 545 Signed-off-by: Jamey Sharp <jamey@minilop.net> 546 547commit 2793689cc2eda675ec11a3a0cfed5e470fa83ee3 548Author: Jeremy Huddleston <jeremyhu@freedesktop.org> 549Date: Tue Oct 20 15:40:13 2009 -0700 550 551 Add implementation of strnlen for systems without this function 552 553 Signed-off-by: Yaakov Selkowitz <yselkowitz@users.sourceforge.net> 554 Signed-off-by: Jeremy Huddleston <jeremyhu@freedesktop.org> 555 556commit 1839eabbdd697039a264fe7ebb3f4d26f08ddabe 557Author: Peter Harris <pharris@opentext.com> 558Date: Mon Oct 19 18:21:26 2009 -0700 559 560 Rewrite xlsclients to use XCB, avoiding many (many) round trips 561 562 This version spends bandwidth to reduce latency; in particular, it 563 aggressively calls query_tree before the answer to get_property(WM_STATE) is 564 available. 565 566 Even on my local box, this version is 4-10 times faster (30ms typical, vs 567 200ms typical for Xlib). I get similar results over the local network. 568 569 At least one person reports this version takes less than 2 seconds over ssh, 570 vs over a minute for the Xlib version (~30x faster). 571 572 Reviewed-by: Jamey Sharp <jamey@minilop.net> 573 574commit 47f2d188a231a1c59d5d3030a1a2470c774d1e0d 575Author: Alan Coopersmith <alan.coopersmith@sun.com> 576Date: Fri Oct 16 18:56:01 2009 -0700 577 578 xlsclients 1.0.2 579 580 Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com> 581 582commit 376f461667f06939ff442163e15feff96ce716b6 583Author: Alan Coopersmith <alan.coopersmith@sun.com> 584Date: Fri Oct 16 18:54:25 2009 -0700 585 586 Fill in COPYING file with copyright/license notice from code & docs 587 588 Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com> 589 590commit 5e7259ed47251b2969a57b078f1e505d960bfd1a 591Author: Alan Coopersmith <alan.coopersmith@sun.com> 592Date: Mon Oct 12 18:10:46 2009 -0700 593 594 Migrate to xorg macros 1.3 & XORG_DEFAULT_OPTIONS 595 596 Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com> 597 598commit 0f1f71e0338bb06ae70297f3215ce8489599c907 599Author: Alan Coopersmith <alan.coopersmith@sun.com> 600Date: Thu Oct 1 14:54:26 2009 -0700 601 602 Add README with pointers to mailing lists, bugzilla, & git 603 604 Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com> 605 606commit bc6a081e2d51bf41c9c4e2f02b82601a7bd4a33e 607Author: Paulo Cesar Pereira de Andrade <pcpa@mandriva.com.br> 608Date: Thu Jan 22 15:52:43 2009 -0200 609 610 Correct make distcheck and sparse warnings. 611 612commit e5161d278fcfbf7ec3c4a73b6580993ad563e7ea 613Author: James Cloos <cloos@jhcloos.com> 614Date: Thu Dec 6 16:37:23 2007 -0500 615 616 Replace static ChangeLog with dist-hook to generate from git log 617 618commit 6ca14b864bbbc1b50bdf42806e0f1762a7cf9ca1 619Author: James Cloos <cloos@jhcloos.com> 620Date: Mon Sep 3 05:51:36 2007 -0400 621 622 Add *~ to .gitignore to skip patch/emacs droppings 623 624commit a594d26e113c64ff534692d868a5dcdbd548a48b 625Author: James Cloos <cloos@jhcloos.com> 626Date: Thu Aug 23 19:24:59 2007 -0400 627 628 Rename .cvsignore to .gitignore 629 630commit c7648ac811f6c959e6e74201c37f0774bc1159e0 631Author: Kevin E Martin <kem@kem.org> 632Date: Wed Dec 21 02:29:52 2005 +0000 633 634 Update package version for X11R7 release. 635 636commit 5d13f433f12ec1564c9cf9b3d0493bc8b8163b73 637Author: Adam Jackson <ajax@nwnk.net> 638Date: Mon Dec 19 16:22:45 2005 +0000 639 640 Stub COPYING files 641 642commit 7955793d1713f9917ec2e0ba7a175eead9da5694 643Author: Kevin E Martin <kem@kem.org> 644Date: Thu Dec 15 00:24:08 2005 +0000 645 646 Update package version number for final X11R7 release candidate. 647 648commit de5dc90f5febe52daab9a089fcb226149a7d37a2 649Author: Kevin E Martin <kem@kem.org> 650Date: Tue Dec 6 22:48:23 2005 +0000 651 652 Change *man_SOURCES ==> *man_PRE to fix autotools warnings. 653 654commit f88b24ebe74ddb225f12f10d2c74ef852e30668f 655Author: Kevin E Martin <kem@kem.org> 656Date: Sat Dec 3 05:49:26 2005 +0000 657 658 Update package version number for X11R7 RC3 release. 659 660commit 2b00b194bf146d22f89449dc55cfedfb66633042 661Author: Alan Coopersmith <Alan.Coopersmith@sun.com> 662Date: Mon Nov 28 22:01:44 2005 +0000 663 664 Change *mandir targets to use new *_MAN_DIR variables set by xorg-macros.m4 665 update to fix bug #5167 (Linux prefers *.1x man pages in man1 subdir) 666 667commit f183cb257095d2a8d02cbb99d6fe8121fdac2196 668Author: Eric Anholt <anholt@freebsd.org> 669Date: Mon Nov 21 10:35:02 2005 +0000 670 671 Another pass at .cvsignores for apps. 672 673commit 7b29ef60ab764a0d662f934b6133ecdd15001183 674Author: Alan Coopersmith <Alan.Coopersmith@sun.com> 675Date: Mon Nov 21 03:14:16 2005 +0000 676 677 Change dependency from xmu to xmuu since the full xmu (with all its baggage 678 like Xt) is not needed here. 679 680commit 1fbf3bec38cec44ba7a14890925104b0a8e97c8a 681Author: Eric Anholt <anholt@freebsd.org> 682Date: Sun Nov 20 22:08:53 2005 +0000 683 684 Add/improve .cvsignore files for apps. 685 686commit daf42472d8b8dea164258f9a4d3a2d362cc04d87 687Author: Kevin E Martin <kem@kem.org> 688Date: Wed Oct 19 02:47:55 2005 +0000 689 690 Update package version number for RC1 release. 691 692commit 4b6c61e82c0665be51157f7ea611024b2a8c344a 693Author: Alan Coopersmith <Alan.Coopersmith@sun.com> 694Date: Mon Oct 17 23:56:24 2005 +0000 695 696 Use @APP_MAN_SUFFIX@ instead of $(APP_MAN_SUFFIX) in macro substitutions to 697 work better with BSD make 698 699commit 95f73789ffc2f1e1f85624a00215a539f84f309e 700Author: Alan Coopersmith <Alan.Coopersmith@sun.com> 701Date: Fri Oct 14 00:25:46 2005 +0000 702 703 Use sed to fill in variables in man page 704 705commit 231c23c7e1f424dc4075fdecf16d291cf60cd533 706Author: Alan Coopersmith <Alan.Coopersmith@sun.com> 707Date: Thu Oct 6 03:47:12 2005 +0000 708 709 Fix file names of beforelight, x11perfcomp, and xlsclients man pages 710 711commit 33bb15df1f98464203100cc71026bca16d4f1f42 712Author: Alan Coopersmith <Alan.Coopersmith@sun.com> 713Date: Mon Aug 1 20:25:30 2005 +0000 714 715 Install man pages to section 1 instead of section m (Patch from Donnie 716 Berkholz) 717 718commit 8a7081e92b71fa14864ecd1aa47d433ae25d92b7 719Author: Kevin E Martin <kem@kem.org> 720Date: Fri Jul 29 21:22:35 2005 +0000 721 722 Various changes preparing packages for RC0: 723 - Verify and update package version numbers as needed 724 - Implement versioning scheme 725 - Change bug address to point to bugzilla bug entry form 726 - Disable loadable i18n in libX11 by default (use --enable-loadable-i18n to 727 reenable it) 728 - Fix makedepend to use pkgconfig and pass distcheck 729 - Update build script to build macros first 730 - Update modular Xorg version 731 732commit 9428b06892b05ff2382d1bf2032b062bc10a1013 733Author: Adam Jackson <ajax@nwnk.net> 734Date: Wed Jul 20 19:32:02 2005 +0000 735 736 Use a unique token for PKG_CHECK_MODULES. Otherwise, if you use a global 737 configure cache, you cache it, and the cached value is probably wrong. 738 739commit bc737d5ade74d17b7b7af4d83b3a03cd570061c3 740Author: Søren Sandmann Pedersen <sandmann@daimi.au.dk> 741Date: Tue Jul 5 22:51:10 2005 +0000 742 743 Add build systems for xlogo, xlsatoms, xlsclients, xmag, xman, xmessage, 744 xmh, xmore. lib/Xaw/xaw.m4: Add an AM_CONDITIONAL and a shell variable 745 xaw_use_xprint symlink.sh: add some extra files for xgc, xinit, 746 xkbcomp, xlogo, xmb, and xmodmap xc/programs/xmore/xmore.c: 747 Conditionalize use of xprint 748 749commit 208df1618f1509e8a3ffc2677a60a3bb0a98d4ca 750Author: Egbert Eich <eich@suse.de> 751Date: Fri Apr 23 19:54:58 2004 +0000 752 753 Merging XORG-CURRENT into trunk 754 755commit 4143e84ebf67868f0123063061250e46d2f54b61 756Author: Egbert Eich <eich@suse.de> 757Date: Sun Mar 14 08:35:37 2004 +0000 758 759 Importing vendor version xf86-4_4_99_1 on Sun Mar 14 00:26:39 PST 2004 760 761commit 36452911208fb2afee18850aace32043150b518b 762Author: Egbert Eich <eich@suse.de> 763Date: Wed Mar 3 12:13:14 2004 +0000 764 765 Importing vendor version xf86-4_4_0 on Wed Mar 3 04:09:24 PST 2004 766 767commit c6d0786cde8ad0f09f623bcff358263488f7f696 768Author: Egbert Eich <eich@suse.de> 769Date: Thu Feb 26 13:36:26 2004 +0000 770 771 readding XFree86's cvs IDs 772 773commit eb6565bd3bf035fbbf9ee67a71c10b5a0fdc2f15 774Author: Egbert Eich <eich@suse.de> 775Date: Thu Feb 26 09:24:14 2004 +0000 776 777 Importing vendor version xf86-4_3_99_903 on Wed Feb 26 01:21:00 PST 2004 778 779commit 863c432062bcfd43a04c19162ce61383b9ea8e3d 780Author: Kaleb Keithley <kaleb@freedesktop.org> 781Date: Fri Nov 14 16:49:23 2003 +0000 782 783 XFree86 4.3.0.1 784 785commit c687123ca586b6f54caec1c8c2c22f21c751c237 786Author: Kaleb Keithley <kaleb@freedesktop.org> 787Date: Fri Nov 14 15:54:54 2003 +0000 788 789 R6.6 is the Xorg base-line 790