1commit a6663cdafe97e3e7a1c60d03fc576dfe62b20d88 2Author: Alan Coopersmith <alan.coopersmith@oracle.com> 3Date: Sat Jun 3 10:23:24 2023 -0700 4 5 xwd 1.0.9 6 7 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 8 9commit 55e90e61eb0ec32b6998ba3c562df3897aebbb43 10Author: Alan Coopersmith <alan.coopersmith@oracle.com> 11Date: Sat Feb 11 18:26:12 2023 -0800 12 13 Make -help & -version work without requiring an open display 14 15 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 16 17commit e9e78bf8f2de870fbf90cc247721df16805ba3da 18Author: Alan Coopersmith <alan.coopersmith@oracle.com> 19Date: Sun Nov 13 15:07:14 2022 -0800 20 21 list.c: Stop building functions that are never called 22 23 This general-purpose list implementation includes functions xwd 24 doesn't use, so we don't need to build those here. 25 26 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 27 28commit 7d59a57f67f1c0be40b7e2ff0323026824b1f403 29Author: Alan Coopersmith <alan.coopersmith@oracle.com> 30Date: Sun Nov 13 15:05:15 2022 -0800 31 32 Delete commented-out local copy of list function prototypes 33 34 Duplicated list.h header contents 35 36 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 37 38commit 0501a64d58ae6c1e9287188de120efbdd6aadd2d 39Author: Alan Coopersmith <alan.coopersmith@oracle.com> 40Date: Sun Nov 13 15:02:11 2022 -0800 41 42 Variable scope reduction as recommended by cppcheck 43 44 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 45 46commit 9bf3f50c2a287a1d455df3e36e751604d7d50381 47Author: Alan Coopersmith <alan.coopersmith@oracle.com> 48Date: Sun Nov 13 14:33:08 2022 -0800 49 50 Remove unnecessary casts from malloc() and free() calls 51 52 Not needed in C89 & later 53 54 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 55 56commit fd5e1e9ee9ed359e0ad0dddfbaa4d9c84dcb1810 57Author: Alan Coopersmith <alan.coopersmith@oracle.com> 58Date: Sun Nov 13 14:27:25 2022 -0800 59 60 Handle -Wcomma warnings from clang 61 62 xwd.c:332:22: warning: possible misuse of comma operator here [-Wcomma] 63 width += absx, absx = 0; 64 ^ 65 xwd.c:334:23: warning: possible misuse of comma operator here [-Wcomma] 66 height += absy, absy = 0; 67 ^ 68 69 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 70 71commit c0601f552aa34af005270f3a65ec0e92421497cb 72Author: Alan Coopersmith <alan.coopersmith@oracle.com> 73Date: Sun Nov 13 14:23:28 2022 -0800 74 75 Remove unused macros 76 77 Found by clang: 78 multiVis.c:977:9: warning: macro is not used [-Wunused-macros] 79 #define DIRECT_COLOR 0x11 80 ^ 81 multiVis.c:976:9: warning: macro is not used [-Wunused-macros] 82 #define TRUE_COLOR 0x10 83 ^ 84 multiVis.c:975:9: warning: macro is not used [-Wunused-macros] 85 #define PSEUDO_COLOR 0x04 86 ^ 87 multiVis.c:974:9: warning: macro is not used [-Wunused-macros] 88 #define GRAY_SCALE 0x02 89 ^ 90 multiVis.c:973:9: warning: macro is not used [-Wunused-macros] 91 #define STATIC_GRAY 0x01 92 ^ 93 94 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 95 96commit da73a432704776e7e78097fb0c93d81e90bc7859 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 d232d25f338fca51d583d5888cb9171fd958536e 105Author: Alan Coopersmith <alan.coopersmith@oracle.com> 106Date: Tue Dec 7 14:35:24 2021 -0800 107 108 Build xz tarballs instead of bzip2 109 110 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 111 112commit 3eeb0d0e145b1ae47d2ec8d638f46960a321cdf7 113Author: Alan Coopersmith <alan.coopersmith@oracle.com> 114Date: Tue Dec 7 14:35:21 2021 -0800 115 116 gitlab CI: add a basic build test 117 118 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 119 120commit e0341cc8ddd76e6af2b11bbcdda25f470aa4160d 121Author: Alan Coopersmith <alan.coopersmith@oracle.com> 122Date: Sun Nov 28 14:14:14 2021 -0800 123 124 Fix spelling/wording issues 125 126 Found by using: 127 codespell --builtin clear,rare,usage,informal,code,names 128 129 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 130 131commit 57586247e0c6bce744c04f072185762e76879baf 132Author: Alan Coopersmith <alan.coopersmith@oracle.com> 133Date: Sun Aug 1 17:14:35 2021 -0700 134 135 xwd 1.0.8 136 137 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 138 139commit ae07bdd696b8e6ba8af4dbeb96c96e378166eede 140Author: Jim Rees <rees@umich.edu> 141Date: Mon Jun 22 19:19:30 2020 -0500 142 143 Zero out uninitialized memory so as not to write stack garbage to dump file 144 145 Also check return from XFetchName() 146 147 Signed-off-by: Jim Rees <rees@umich.edu> 148 149commit aeabe09fdf0750933fdbd970780bd50c8dfda5fd 150Author: Alan Coopersmith <alan.coopersmith@oracle.com> 151Date: Mon Sep 23 10:35:10 2019 -0700 152 153 Elide empty else 154 155 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 156 157commit 68dc9400f0047b10eebd77d60353fb96ccf4914d 158Author: Alan Coopersmith <alan.coopersmith@oracle.com> 159Date: Mon Sep 23 10:28:07 2019 -0700 160 161 Adopt standard X.Org coding style 162 163 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 164 165commit 8026ace54250eba699ad9979586e78d27a7745dc 166Author: Alan Coopersmith <alan.coopersmith@oracle.com> 167Date: Mon Sep 23 08:25:19 2019 -0700 168 169 QueryColorMap() function in multiVis.c may retrieve incorrect colours (#3) 170 171 Fixes: https://gitlab.freedesktop.org/xorg/app/xwd/issues/3 172 173 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 174 175commit 9fe45abd6589dcc501e415926d8aaa3568fb1933 176Author: Alan Coopersmith <alan.coopersmith@oracle.com> 177Date: Sat Mar 9 21:46:46 2019 -0800 178 179 Combine options info into a single string in usage() 180 181 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 182 183commit bab5bb9bbcb7e7424ec3276f6d74ca1a7dfa863f 184Author: Stéphane Aulery <lkppo@free.fr> 185Date: Sun Jul 7 03:03:59 2013 +0200 186 187 Ensure consistency between the manpage and the output of the -help option 188 189 Signed-off-by: Stéphane Aulery <lkppo@free.fr> 190 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 191 192commit fff6825528bc85d20337e4abe284c84d814c5bcd 193Author: Alan Coopersmith <alan.coopersmith@oracle.com> 194Date: Wed Nov 21 17:21:32 2018 -0800 195 196 Update configure.ac bug URL for gitlab migration 197 198 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 199 200commit 5879dad42baf52ddb55dd0405cdb115e41cde0a2 201Author: Alan Coopersmith <alan.coopersmith@oracle.com> 202Date: Fri Nov 16 23:31:44 2018 -0800 203 204 Update README for gitlab migration 205 206 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 207 208commit e325d626acca54aa2b845aa0c0fb328659bd1b80 209Author: Alan Coopersmith <alan.coopersmith@oracle.com> 210Date: Fri Mar 9 20:37:36 2018 -0800 211 212 xwd 1.0.7 213 214 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 215 216commit a0c52a3b6e9e2c3dc3378014ad2a3ea2d13d71bc 217Author: Mihail Konev <k.mvc@ya.ru> 218Date: Thu Jan 26 14:00:21 2017 +1000 219 220 autogen: add default patch prefix 221 222 Signed-off-by: Mihail Konev <k.mvc@ya.ru> 223 224commit fdf611e573574e6848ed60df04bca08800f53d93 225Author: Emil Velikov <emil.l.velikov@gmail.com> 226Date: Mon Mar 9 12:00:52 2015 +0000 227 228 autogen.sh: use quoted string variables 229 230 Place quotes around the $srcdir, $ORIGDIR and $0 variables to prevent 231 fall-outs, when they contain space. 232 233 Signed-off-by: Emil Velikov <emil.l.velikov@gmail.com> 234 Reviewed-by: Peter Hutterer <peter.hutterer@who-t.net> 235 Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net> 236 237commit eda611de20761755b12c0c261a485f20abfe4cd5 238Author: Peter Hutterer <peter.hutterer@who-t.net> 239Date: Tue Jan 24 10:32:07 2017 +1000 240 241 autogen.sh: use exec instead of waiting for configure to finish 242 243 Syncs the invocation of configure with the one from the server. 244 245 Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net> 246 Reviewed-by: Emil Velikov <emil.velikov@collabora.com> 247 248commit 9dca35dc742461f787c89bc32086bb3f2dcff68f 249Author: James Cloos <cloos@jhcloos.com> 250Date: Sun Nov 23 13:11:57 2014 -0500 251 252 Fix a vs an typo in the man page. 253 254 Reported-by: Jens Schweikhardt <schweikh@schweikhardt.net> 255 Signed-off-by: James Cloos <cloos@jhcloos.com> 256 257commit 6f6b4928f0b7de02cb67e5151199976b6c01a8be 258Author: Alan Coopersmith <alan.coopersmith@oracle.com> 259Date: Tue Jun 3 23:48:55 2014 -0700 260 261 Add -version option to print program version 262 263 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 264 265commit 5ee8bcb7134d049abf50a34fcfd7a9d5e99ba323 266Author: Alan Coopersmith <alan.coopersmith@oracle.com> 267Date: Tue Jun 3 23:46:14 2014 -0700 268 269 Print which option was in error along with usage message 270 271 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 272 273commit 00d3b27549902d2d2156888d7fcbabbf01e87c90 274Author: Alan Coopersmith <alan.coopersmith@oracle.com> 275Date: Tue Jun 3 23:37:31 2014 -0700 276 277 autogen.sh: Honor NOCONFIGURE=1 278 279 See http://people.gnome.org/~walters/docs/build-api.txt 280 281 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 282 283commit 74e40e6c76efae504e5016f86238ca52cce03507 284Author: Alan Coopersmith <alan.coopersmith@oracle.com> 285Date: Tue Jun 3 23:37:31 2014 -0700 286 287 configure: Drop AM_MAINTAINER_MODE 288 289 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 290 291commit b71cda30549b7259e337bd05d499c5921ed34f19 292Author: Alan Coopersmith <alan.coopersmith@oracle.com> 293Date: Thu Aug 8 21:12:15 2013 -0700 294 295 xwd 1.0.6 296 297 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 298 299commit 02d3b987ad0007b2b6627d97056d0d77fb607039 300Author: Alan Coopersmith <alan.coopersmith@oracle.com> 301Date: Sat Jul 20 00:08:51 2013 -0700 302 303 Strip trailing whitespace 304 305 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 306 307commit cc51f7fce1cefb7a2318c624a2e1ebc124775ec8 308Author: Alan Coopersmith <alan.coopersmith@oracle.com> 309Date: Sat Jul 20 00:07:30 2013 -0700 310 311 Fix some clang warnings about integer size/sign conversions 312 313 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 314 315commit e89c0797e8b21b543a228fb56957ba3a1e91c38e 316Author: Alan Coopersmith <alan.coopersmith@oracle.com> 317Date: Fri Jul 19 23:45:05 2013 -0700 318 319 Quiet gcc warnings about potentially uninitialized variables 320 321 It should have been impossible for these to be used without being 322 initialized, but following the logic to prove that was trickier 323 than the compiler was willing to unravel. 324 325 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 326 327commit 2bc7b34f2868f7d340c36c20a715d9c36495f236 328Author: Alan Coopersmith <alan.coopersmith@oracle.com> 329Date: Fri Jul 19 23:41:56 2013 -0700 330 331 Remove unused bitmap_unit variable from ReadRegionsInList() 332 333 multiVis.c: In function ‘ReadRegionsInList’: 334 multiVis.c:389:25: warning: variable ‘bitmap_unit’ set but not used [-Wunused-but-set-variable] 335 336 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 337 338commit ad99aa119875151b182c6e3d463d3c297ae3d56b 339Author: Alan Coopersmith <alan.coopersmith@oracle.com> 340Date: Fri Jul 19 23:40:37 2013 -0700 341 342 Rename new_list variable to not shadow new_list function 343 344 Silences gcc warning: 345 list.c: In function ‘dup_list_head’: 346 list.c:104:14: warning: declaration of ‘new_list’ shadows a global 347 declaration [-Wshadow] 348 list.c:80:10: warning: shadowed declaration is here [-Wshadow] 349 350 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 351 352commit 94731abadcd06995c28f140aaffde456a7750807 353Author: Alan Coopersmith <alan.coopersmith@oracle.com> 354Date: Fri Jul 19 23:38:46 2013 -0700 355 356 Add printf attributes as suggested by gcc -Wmissing-format-attribute 357 358 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 359 360commit 9c9ae7363d216933394e6ccd2ba6e0196845a6c6 361Author: Alan Coopersmith <alan.coopersmith@oracle.com> 362Date: Fri Jul 19 23:33:19 2013 -0700 363 364 Fix gcc warnings about discarding const qualifiers 365 366 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 367 368commit c22c121262efcaca5f58774072ac84e1006e43aa 369Author: Alan Coopersmith <alan.coopersmith@oracle.com> 370Date: Mon Mar 19 13:16:20 2012 -0700 371 372 Optionally enable existing code to call XkbStdBell from libxkbfile 373 374 Copied from similar check in oclock/configure.ac 375 376 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 377 Reviewed-by: Jeremy Huddleston <jeremyhu@apple.com> 378 379commit 091e5f0fc73d7cdda2dcb72fbe198a0103476d77 380Author: Alan Coopersmith <alan.coopersmith@oracle.com> 381Date: Mon Mar 19 13:09:52 2012 -0700 382 383 Move Pixel typedef from xwd.c to wsutils.h 384 385 Removes need for including <X11/Intrinsic.h> in multiVis.c just to get 386 the Pixel typedef, which resolves 387 https://bugs.freedesktop.org/show_bug.cgi?id=47462 without adding a 388 dependency on libXt. 389 390 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 391 Reviewed-by: Jeremy Huddleston <jeremyhu@apple.com> 392 393commit 431918bd9644dd5db2216e8ab61959e9a4b74bc0 394Author: Alan Coopersmith <alan.coopersmith@oracle.com> 395Date: Wed Feb 22 20:19:03 2012 -0800 396 397 xwd 1.0.5 398 399 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 400 401commit 61fcdc321919a362bd46853537c136140421d746 402Author: Jeremy Huddleston <jeremyhu@apple.com> 403Date: Tue Dec 13 15:56:47 2011 -0800 404 405 Silence -Wshadow warnings 406 407 Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com> 408 409commit 48ef3b5604dbe05d67c0f6e01d38cb718085b9b6 410Author: Jeremy Huddleston <jeremyhu@apple.com> 411Date: Tue Dec 13 15:54:13 2011 -0800 412 413 Mark usage as _X_NORETURN 414 415 Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com> 416 417commit 8376c9c6098b69a47fc37817ecf9f57302d992fc 418Author: Jeremy Huddleston <jeremyhu@apple.com> 419Date: Tue Dec 13 15:53:02 2011 -0800 420 421 Dead code removal 422 423 Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com> 424 425commit 7d88d8ab44b17247753f7225a1d8133d55d8423e 426Author: Pär Lidberg <par.lidberg@elekta.com> 427Date: Mon Oct 3 00:24:06 2011 -0700 428 429 Fix LP64 bug 430 431 https://bugs.freedesktop.org/show_bug.cgi?id=14321 432 433 Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com> 434 435commit 95315108d25d0a17aef488e2bd4df8e98415d5d7 436Author: Alan Coopersmith <alan.coopersmith@oracle.com> 437Date: Thu Jun 9 20:27:46 2011 -0700 438 439 Replace local checks for gcc with _X_NORETURN from xproto 7.0.17 440 441 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 442 443commit 6d83294bae9ba7394716f62abb08cfb8b89ed373 444Author: Jeremy Huddleston <jeremyhu@apple.com> 445Date: Sun May 8 10:02:16 2011 -0700 446 447 Rewrite parse_long to not fail -Wformat-nonliteral 448 449 Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com> 450 451commit 97085ba43fcd752271a9356c435d28b95211644d 452Author: Jeremy Huddleston <jeremyhu@apple.com> 453Date: Sun May 8 09:52:49 2011 -0700 454 455 Dead code removal 456 457 xwd.c:298:5: warning: Value stored to 'bw' is never read 458 bw = 0; 459 ^ ~ 460 461 Found-by: clang static analyzer 462 Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com> 463 464commit 4a148f172d83d5e7f0ace6f28d4b8894b5e10442 465Author: Gaetan Nadon <memsize@videotron.ca> 466Date: Wed Jan 19 10:06:57 2011 -0500 467 468 config: move man pages into their own directory 469 470 Use services provided by XORG_MANPAGE_SECTIONS. 471 Use standard Makefile for man pages. 472 473 Signed-off-by: Gaetan Nadon <memsize@videotron.ca> 474 475commit 00bdfc48c8249d989282aeb4d14edac49df63a3a 476Author: Gaetan Nadon <memsize@videotron.ca> 477Date: Thu Jan 13 17:15:37 2011 -0500 478 479 man: replace hard coded man page section with substitution strings 480 481 Signed-off-by: Gaetan Nadon <memsize@videotron.ca> 482 483commit 1560946f78332c86e51f5298500bad94d9130181 484Author: Gaetan Nadon <memsize@videotron.ca> 485Date: Thu Jan 13 11:15:48 2011 -0500 486 487 man: remove trailing spaces and tabs 488 489 Using s/[ \t]*$// 490 491 Signed-off-by: Gaetan Nadon <memsize@videotron.ca> 492 493commit d58fa4c8f990abbb12df3cca34ed413683604470 494Author: Alan Coopersmith <alan.coopersmith@oracle.com> 495Date: Sun Nov 7 10:17:48 2010 -0800 496 497 xwd 1.0.4 498 499 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 500 501commit 5f10318237d4327d429db6d94527278466452de2 502Author: Alan Coopersmith <alan.coopersmith@oracle.com> 503Date: Sun Nov 7 10:16:29 2010 -0800 504 505 config: replace deprecated AM_CONFIG_HEADER with AC_CONFIG_HEADERS 506 507 Regroup AC statements under the Autoconf initialization section. 508 Regroup AM sttaements under the Automake initialization section. 509 Add missing AC_CONFIG_SRCDIR 510 511 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 512 513commit ee07a99593b89559e3f77c301fce245da3bcd21f 514Author: Alan Coopersmith <alan.coopersmith@oracle.com> 515Date: Sun Nov 7 10:13:24 2010 -0800 516 517 config: Remove unnecessary calls from configure.ac 518 519 AC_PROG_CC & AC_PROG_INSTALL are provided by XORG_DEFAULT_OPTIONS now 520 PKG_CONFIG_MODULES handles AC_SUBST of the CFLAGS & LIBS variables 521 522 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 523 524commit 78ff57bae1a7cfa3f650ed1bd25e48e1b690a30b 525Author: Alan Coopersmith <alan.coopersmith@oracle.com> 526Date: Sun Nov 7 10:11:24 2010 -0800 527 528 config: upgrade to util-macros 1.8 for additional man page support 529 530 Use MAN_SUBST now supplied in XORG_MANPAGE_SECTIONS 531 The value of MAN_SUBST is the same for all X.Org packages. 532 533 Use AC_PROG_SED now supplied by XORG_DEFAULT_OPTIONS 534 Enables use of platform appropriate version of sed. 535 536 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 537 538commit a9371f05f4c63a7c68ff97a1ef06c82c8fc78b6d 539Author: Gaetan Nadon <memsize@videotron.ca> 540Date: Sun Nov 7 10:10:39 2010 -0800 541 542 config: update AC_PREREQ statement to 2.60 543 544 Unrelated to the previous patches, the new value simply reflects 545 the reality that the minimum level for autoconf to configure 546 all x.org modules is 2.60 dated June 2006. 547 548 ftp://ftp.gnu.org/gnu/autoconf/autoconf-2.60.tar.gz 549 550 Signed-off-by: Gaetan Nadon <memsize@videotron.ca> 551 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 552 553commit e5edfc867b49b785e7859823047f19e4af9c465d 554Author: Jesse Adkins <jesserayadkins@gmail.com> 555Date: Tue Sep 28 13:29:50 2010 -0700 556 557 Purge cvs tags. 558 559 Signed-off-by: Jesse Adkins <jesserayadkins@gmail.com> 560 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 561 562commit 6bb4b240be83cb0074d10602b2532de062ac7966 563Author: Gaetan Nadon <memsize@videotron.ca> 564Date: Thu Nov 26 09:19:55 2009 -0500 565 566 Makefile.am: add ChangeLog and INSTALL on MAINTAINERCLEANFILES 567 568 Now that the INSTALL file is generated. 569 Allows running make maintainer-clean. 570 571commit a8fbe89bbcccf29964e108f5c113c4b1ce094670 572Author: Gaetan Nadon <memsize@videotron.ca> 573Date: Wed Oct 28 14:09:09 2009 -0400 574 575 INSTALL, NEWS, README or AUTHORS files are missing/incorrect #24206 576 577 Add missing INSTALL file. Use standard GNU file on building tarball 578 README may have been updated 579 Remove AUTHORS file as it is empty and no content available yet. 580 Remove NEWS file as it is empty and no content available yet. 581 582commit 4ecee142fb9641b0a165816bf7a26e9bb32b3639 583Author: Gaetan Nadon <memsize@videotron.ca> 584Date: Mon Oct 26 22:08:39 2009 -0400 585 586 Makefile.am: ChangeLog not required: EXTRA_DIST or *CLEANFILES #24432 587 588 ChangeLog filename is known to Automake and requires no further 589 coding in the makefile. 590 591commit 0f7c35e98702dbe2249eb0beeb3419c2b8905fdb 592Author: Gaetan Nadon <memsize@videotron.ca> 593Date: Thu Oct 22 12:34:16 2009 -0400 594 595 .gitignore: use common defaults with custom section # 24239 596 597 Using common defaults will reduce errors and maintenance. 598 Only the very small or inexistent custom section need periodic maintenance 599 when the structure of the component changes. Do not edit defaults. 600 601commit d42b2891295ef8d58dee73d9c37ca3a22a81dc3a 602Author: Jeremy Huddleston <jeremyhu@freedesktop.org> 603Date: Wed Oct 21 12:47:22 2009 -0700 604 605 This is not a GNU project, so declare it foreign. 606 607 On Wed, 2009-10-21 at 13:36 +1000, Peter Hutterer wrote: 608 > On Tue, Oct 20, 2009 at 08:23:55PM -0700, Jeremy Huddleston wrote: 609 > > I noticed an INSTALL file in xlsclients and libXvMC today, and it 610 > > was quite annoying to work around since 'autoreconf -fvi' replaces 611 > > it and git wants to commit it. Should these files even be in git? 612 > > Can I nuke them for the betterment of humanity and since they get 613 > > created by autoreconf anyways? 614 > 615 > See https://bugs.freedesktop.org/show_bug.cgi?id=24206 616 617 As an interim measure, replace AM_INIT_AUTOMAKE([dist-bzip2]) with 618 AM_INIT_AUTOMAKE([foreign dist-bzip2]). This will prevent the generation 619 of the INSTALL file. It is also part of the 24206 solution. 620 621 Signed-off-by: Jeremy Huddleston <jeremyhu@freedesktop.org> 622 623commit 5ba93bf07a4ffb84d86f6d4fad419e81a57358c6 624Author: Alan Coopersmith <alan.coopersmith@sun.com> 625Date: Fri Oct 16 19:59:20 2009 -0700 626 627 xwd 1.0.3 628 629 Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com> 630 631commit 06525a61829053f5aed23efb61046b1a1efb5b79 632Author: Alan Coopersmith <alan.coopersmith@sun.com> 633Date: Fri Oct 16 19:58:59 2009 -0700 634 635 Migrate to xorg macros 1.3 & XORG_DEFAULT_OPTIONS 636 637 Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com> 638 639commit ff06ff5f6eadfa1a6b4c25198b8965e38a260e63 640Author: Alan Coopersmith <alan.coopersmith@sun.com> 641Date: Fri Oct 16 19:58:08 2009 -0700 642 643 Fill in COPYING file with copyright/license notices from code & docs 644 645 Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com> 646 647commit b744604c550dadb04fd773e207626db4fbe6a460 648Author: Alan Coopersmith <alan.coopersmith@sun.com> 649Date: Thu Oct 1 14:54:32 2009 -0700 650 651 Add README with pointers to mailing lists, bugzilla, & git 652 653 Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com> 654 655commit 5d82f32cac19af013c48d01b66aa9f14add30f42 656Author: Paulo Cesar Pereira de Andrade <pcpa@mandriva.com.br> 657Date: Thu Jan 15 15:43:08 2009 -0200 658 659 Ansification and compile warning fixes. 660 661 This also uses XORG_CHANGELOG and XORG_CWARNFLAGS, corrects 662 make distcheck and most gcc 4.3 and sparse warnings. 663 664commit a27df6ee496a1b2df678242cf514490924f44027 665Author: Branden Robinson <branden@debian.org> 666Date: Fri Feb 11 02:14:27 2005 -0500 667 668 Do not spew usage on connection error 669 670 General philosophy: 671 672 The user should only be shown a usage message when: 673 * it is asked for with a --help option or the like. 674 * the command line is syntactically invalid. 675 676commit 37401df6799722d16bc02c52b241cf2ef5070b7d 677Author: James Cloos <cloos@jhcloos.com> 678Date: Sun Jun 29 10:47:22 2008 -0400 679 680 xwd 1.0.2 681 682commit f9725928e875035bd2a96621aa8f861160e85dd7 683Author: Kim Woelders <kim@woelders.dk> 684Date: Sun Jun 22 01:17:12 2008 -0400 685 686 Remove unused code, ANSIfy, add const. 687 688 Signed-off-by: James Cloos <cloos@jhcloos.com> 689 690commit 3dcc66bbbc74c41c2b4509a785c3688fd75387a1 691Author: Kim Woelders <kim@woelders.dk> 692Date: Sun Jun 22 01:16:31 2008 -0400 693 694 Fix window selection by pointer. 695 696 This should fix things in WM’s using virtual roots as well as in tabbing WM’s. 697 698 Signed-off-by: James Cloos <cloos@jhcloos.com> 699 700commit 23b60f871f76878572b2acec59dd6c47e3acd0e0 701Author: Jeremy Huddleston <jeremyhu@freedesktop.org> 702Date: Sun Apr 13 22:30:44 2008 -0700 703 704 Added missing AM_PROG_CC_C_O 705 706commit f686dfebf0816630664d5fe024fae3710ac8c103 707Author: Niveditha Rau <niveditha.rau@sun.com> 708Date: Fri Feb 15 16:41:33 2008 -0800 709 710 Add -silent to options in man page synopsis 711 712commit 2e522aa858ded39209036ebb956c9ea3257d3668 713Author: James Cloos <cloos@jhcloos.com> 714Date: Thu Dec 6 16:37:34 2007 -0500 715 716 Replace static ChangeLog with dist-hook to generate from git log 717 718commit e5d381ba7a3d06090c5352bd5c39601ec1abcfbe 719Author: James Cloos <cloos@jhcloos.com> 720Date: Mon Sep 3 05:51:57 2007 -0400 721 722 Add *~ to .gitignore to skip patch/emacs droppings 723 724commit a905f2d72bc3b09a4a2eb3046771dc4331b920c9 725Author: James Cloos <cloos@jhcloos.com> 726Date: Thu Aug 23 19:25:16 2007 -0400 727 728 Rename .cvsignore to .gitignore 729 730commit 1a6550aebfd3c675c0d75c8a23aaa94baca6761a 731Author: Kevin E Martin <kem@kem.org> 732Date: Wed Dec 21 02:29:54 2005 +0000 733 734 Update package version for X11R7 release. 735 736commit b840d879c0e514728da5f6aad94723c87e17f294 737Author: Adam Jackson <ajax@nwnk.net> 738Date: Mon Dec 19 16:22:47 2005 +0000 739 740 Stub COPYING files 741 742commit 9023b24530ccaf71c2375dc1031baf743f1610c2 743Author: Kevin E Martin <kem@kem.org> 744Date: Thu Dec 15 00:24:12 2005 +0000 745 746 Update package version number for final X11R7 release candidate. 747 748commit 7e0ff968e8dab09792ff802b1433c68d4e3f6d2d 749Author: Kevin E Martin <kem@kem.org> 750Date: Tue Dec 6 22:48:27 2005 +0000 751 752 Change *man_SOURCES ==> *man_PRE to fix autotools warnings. 753 754commit e63fca21475fc1a99937388883868f3d61edfc9d 755Author: Kevin E Martin <kem@kem.org> 756Date: Sat Dec 3 05:49:29 2005 +0000 757 758 Update package version number for X11R7 RC3 release. 759 760commit 750b3f6469c060a3c2826530714183667992d61f 761Author: Alan Coopersmith <Alan.Coopersmith@sun.com> 762Date: Mon Nov 28 22:01:48 2005 +0000 763 764 Change *mandir targets to use new *_MAN_DIR variables set by xorg-macros.m4 765 update to fix bug #5167 (Linux prefers *.1x man pages in man1 subdir) 766 767commit 31f96dce7b65f6879f9cac3302352b45f8b17b56 768Author: Eric Anholt <anholt@freebsd.org> 769Date: Mon Nov 21 10:35:09 2005 +0000 770 771 Another pass at .cvsignores for apps. 772 773commit e1ce2fee75109d460db19ea9bc259c993306ffba 774Author: Alan Coopersmith <Alan.Coopersmith@sun.com> 775Date: Mon Nov 21 03:14:17 2005 +0000 776 777 Change dependency from xmu to xmuu since the full xmu (with all its baggage 778 like Xt) is not needed here. 779 780commit f2872124b38058973d90a9e00490a16ab855eb74 781Author: Eric Anholt <anholt@freebsd.org> 782Date: Sun Nov 20 22:08:56 2005 +0000 783 784 Add/improve .cvsignore files for apps. 785 786commit 70f962e49566a2f5187ce94150ced0dcadcee517 787Author: Kevin E Martin <kem@kem.org> 788Date: Wed Oct 19 02:47:58 2005 +0000 789 790 Update package version number for RC1 release. 791 792commit a1be690262901ca063d1bbfbdedfd15e8a434b85 793Author: Alan Coopersmith <Alan.Coopersmith@sun.com> 794Date: Mon Oct 17 23:56:25 2005 +0000 795 796 Use @APP_MAN_SUFFIX@ instead of $(APP_MAN_SUFFIX) in macro substitutions to 797 work better with BSD make 798 799commit ca2bc3fb574ad4ac5a3de6d591b5046a2548d257 800Author: Alan Coopersmith <Alan.Coopersmith@sun.com> 801Date: Fri Oct 14 00:25:48 2005 +0000 802 803 Use sed to fill in variables in man page 804 805commit 9f14a8229938ddb5d78adb84f1c73eaa2d399e61 806Author: Alan Coopersmith <Alan.Coopersmith@sun.com> 807Date: Mon Aug 1 20:25:33 2005 +0000 808 809 Install man pages to section 1 instead of section m (Patch from Donnie 810 Berkholz) 811 812commit 1ddc8445cc15cd5202de51bdf89b6f9072b44a5c 813Author: Kevin E Martin <kem@kem.org> 814Date: Fri Jul 29 21:22:38 2005 +0000 815 816 Various changes preparing packages for RC0: 817 - Verify and update package version numbers as needed 818 - Implement versioning scheme 819 - Change bug address to point to bugzilla bug entry form 820 - Disable loadable i18n in libX11 by default (use --enable-loadable-i18n to 821 reenable it) 822 - Fix makedepend to use pkgconfig and pass distcheck 823 - Update build script to build macros first 824 - Update modular Xorg version 825 826commit 754d3311ce2773c4eda374fd97f8f326d845a3ca 827Author: Adam Jackson <ajax@nwnk.net> 828Date: Wed Jul 20 19:32:05 2005 +0000 829 830 Use a unique token for PKG_CHECK_MODULES. Otherwise, if you use a global 831 configure cache, you cache it, and the cached value is probably wrong. 832 833commit 504daf4567c93ac5ec425ab122cd88f29089ea7d 834Author: Søren Sandmann Pedersen <sandmann@daimi.au.dk> 835Date: Fri Jul 8 20:59:16 2005 +0000 836 837 Add build system for xwd 838 839commit a26e8f8a7974255f834535976f45de85050845ba 840Author: Roland Mainz <roland.mainz@nrubsig.org> 841Date: Wed Oct 6 19:29:59 2004 +0000 842 843 Fix for https://freedesktop.org/bugzilla/show_bug.cgi?id=1518 - Add filter 844 support to "xlsfonts" that it can filter builtin-, glyph- and/or other 845 kinds of printer fonts (controlled by the xp-listfonts-modes attribute 846 as described in the CDE DtPrint and Xprint specifications). 847 848commit 9d55223b5ae27e8745bec57385a72126ecb8f8f2 849Author: Egbert Eich <eich@suse.de> 850Date: Fri Apr 23 19:55:09 2004 +0000 851 852 Merging XORG-CURRENT into trunk 853 854commit 965e88073aa8c5c4affc0ba934d70f75866aafd8 855Author: Egbert Eich <eich@suse.de> 856Date: Sun Mar 14 08:35:54 2004 +0000 857 858 Importing vendor version xf86-4_4_99_1 on Sun Mar 14 00:26:39 PST 2004 859 860commit 04bed4e3e41764a41016fa7a3d1dd6189e4ebd4d 861Author: Egbert Eich <eich@suse.de> 862Date: Wed Mar 3 12:13:20 2004 +0000 863 864 Importing vendor version xf86-4_4_0 on Wed Mar 3 04:09:24 PST 2004 865 866commit 7fb18f8136d988a305b3a55a584701b8a5d2d620 867Author: Egbert Eich <eich@suse.de> 868Date: Thu Feb 26 13:36:32 2004 +0000 869 870 readding XFree86's cvs IDs 871 872commit f6983fb7f571b827ad5ea1e3e81ee24c65547e1b 873Author: Egbert Eich <eich@suse.de> 874Date: Thu Feb 26 09:24:18 2004 +0000 875 876 Importing vendor version xf86-4_3_99_903 on Wed Feb 26 01:21:00 PST 2004 877 878commit f8547075b021b392855041018de02fdbf84b252c 879Author: Kaleb Keithley <kaleb@freedesktop.org> 880Date: Tue Nov 25 19:29:23 2003 +0000 881 882 XFree86 4.3.99.16 Bring the tree up to date for the Cygwin folks 883 884commit 5c3c7501aceec68da15fda13ab4efb0c5f82ef99 885Author: Kaleb Keithley <kaleb@freedesktop.org> 886Date: Fri Nov 14 16:49:24 2003 +0000 887 888 XFree86 4.3.0.1 889 890commit f7cb26f3488672da827d30962b940f3e11e49b4a 891Author: Kaleb Keithley <kaleb@freedesktop.org> 892Date: Fri Nov 14 15:54:55 2003 +0000 893 894 R6.6 is the Xorg base-line 895