ChangeLog revision 6654de8b
1commit 6dcc9c8064baeb2f9d853309123cd9736809a4fd 2Author: Alan Coopersmith <alan.coopersmith@oracle.com> 3Date: Sun Feb 10 13:01:27 2019 -0800 4 5 bitmap 1.0.9 6 7 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 8 9commit d0e0bdea390b0640c5b6345dcd6b7fd6f2d0231e 10Author: Alan Coopersmith <alan.coopersmith@oracle.com> 11Date: Wed Nov 21 16:45:12 2018 -0800 12 13 Update configure.ac bug URL for gitlab migration 14 15 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 16 17commit b674422cc1aa98875fc0d740aab118fcd42b94d0 18Author: Alan Coopersmith <alan.coopersmith@oracle.com> 19Date: Fri Nov 16 19:40:13 2018 -0800 20 21 Update README for gitlab migration 22 23 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 24 25commit 99b0d80d4cf8d4b2365d6f7785296ae3cfb0887a 26Author: Walter Harms <wharms@bfs.de> 27Date: Sun Sep 24 16:19:40 2017 +0200 28 29 same time ago the user Frederic Baldit complained (on xorg) that 30 the ability to set single dots in the programm Bitmap depend on the state 31 of num_lock. This is a long standing bug that affect all versions 32 of bitmap. 33 34 the problem was that the corresponding function was erroneously checking 35 event->xbutton.state. Removing that check solved the problem for the user. 36 37 Signed-off-by: wharms <wharms@bfs.de> 38 39commit f9174d18c950ca998084da6d68903a32cae72d84 40Author: Mihail Konev <k.mvc@ya.ru> 41Date: Thu Jan 26 14:00:20 2017 +1000 42 43 autogen: add default patch prefix 44 45 Signed-off-by: Mihail Konev <k.mvc@ya.ru> 46 47commit 24c90b9fa17236caf2c946bcfff4e6bc441a82c3 48Author: Emil Velikov <emil.l.velikov@gmail.com> 49Date: Mon Mar 9 12:00:52 2015 +0000 50 51 autogen.sh: use quoted string variables 52 53 Place quotes around the $srcdir, $ORIGDIR and $0 variables to prevent 54 fall-outs, when they contain space. 55 56 Signed-off-by: Emil Velikov <emil.l.velikov@gmail.com> 57 Reviewed-by: Peter Hutterer <peter.hutterer@who-t.net> 58 Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net> 59 60commit 37d922c37a4de2ab29bdd13d55eabd369f0616dd 61Author: Peter Hutterer <peter.hutterer@who-t.net> 62Date: Tue Jan 24 10:32:07 2017 +1000 63 64 autogen.sh: use exec instead of waiting for configure to finish 65 66 Syncs the invocation of configure with the one from the server. 67 68 Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net> 69 Reviewed-by: Emil Velikov <emil.velikov@collabora.com> 70 71commit 2f5eae70cd2e9c1e09dcbd8a2a58eaf58207fe00 72Author: Alan Coopersmith <alan.coopersmith@oracle.com> 73Date: Fri Jan 16 21:57:03 2015 -0800 74 75 bitmap 1.0.8 76 77 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 78 79commit dacae58710f7033d5295c50cf6262783350e938d 80Author: Alan Coopersmith <alan.coopersmith@oracle.com> 81Date: Mon Dec 29 18:28:00 2014 -0800 82 83 Stop memory leak in XmuWriteBitmapDataToFile() 84 85 StripFilename() allocates a new string for its result, so after we're 86 done with it, free it instead of just losing the pointer to it. 87 88 Fixes errors found by Oracle Parfait 1.5.1 bug checking tool: 89 90 Error: Memory leak (CWE 401) 91 Memory leak of pointer basename allocated with StripFilename(filename) 92 at line 712 of Bitmap.c in function 'XmuWriteBitmapDataToFile'. 93 basename allocated at line 691 with StripFilename(filename). 94 basename leaks when i >= data_length at line 702. 95 Error: Memory leak (CWE 401) 96 Memory leak of pointer basename allocated with StripFilename(filename) 97 at line 715 of Bitmap.c in function 'XmuWriteBitmapDataToFile'. 98 basename allocated at line 691 with StripFilename(filename). 99 100 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 101 102commit 8df1a843a3a9f92399113688a350873a141bf995 103Author: Alan Coopersmith <alan.coopersmith@oracle.com> 104Date: Mon Dec 29 18:15:57 2014 -0800 105 106 Stop memory leaks from XtNewString(StripFilename(filename)) 107 108 StripFilename() already allocates a new string for its result, 109 we don't need to duplicate it and then lose the pointer to the 110 first one. 111 112 Fixes errors found by Oracle Parfait 1.5.1 bug checking tool: 113 114 Error: Memory leak (CWE 401) 115 Memory leak of pointer pointer allocated with StripFilename(filename) 116 at line 1119 of Bitmap.c in function 'BWReadFile'. 117 pointer allocated at line 1106 with StripFilename(filename). 118 pointer leaks when StripFilename(filename) != NULL at line 1106. 119 Error: Memory leak (CWE 401) 120 Memory leak of pointer pointer allocated with StripFilename(filename) 121 at line 1119 of Bitmap.c in function 'BWReadFile'. 122 pointer allocated at line 1106 with StripFilename(filename). 123 124 Error: Memory leak (CWE 401) 125 Memory leak of pointer pointer allocated with StripFilename(filename) 126 at line 1222 of Bitmap.c in function 'BWWriteFile'. 127 pointer allocated at line 1202 with StripFilename(filename). 128 pointer leaks when StripFilename(filename) != NULL at line 1202. 129 Error: Memory leak (CWE 401) 130 Memory leak of pointer pointer allocated with StripFilename(filename) 131 at line 1222 of Bitmap.c in function 'BWWriteFile'. 132 pointer allocated at line 1202 with StripFilename(filename). 133 134 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 135 136commit a0db0f6c7996b282aa9027d3b670597d88fe3353 137Author: Alan Coopersmith <alan.coopersmith@oracle.com> 138Date: Sun Jun 1 21:03:14 2014 -0700 139 140 autogen.sh: Honor NOCONFIGURE=1 141 142 See http://people.gnome.org/~walters/docs/build-api.txt 143 144 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 145 146commit 8fb1efccb5f24eab51cefafedb1a5a60217db35f 147Author: Alan Coopersmith <alan.coopersmith@oracle.com> 148Date: Sun Jun 1 21:03:13 2014 -0700 149 150 configure: Drop AM_MAINTAINER_MODE 151 152 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 153 154commit d0911d130b870da0951b56f5103c6b4dfb9eeb28 155Author: Jeremy Huddleston Sequoia <jeremyhu@apple.com> 156Date: Wed Jan 1 23:02:48 2014 -0800 157 158 Use '& 7' instead '% 8' to silence clang analyzer warning 159 160 Graphics.c:569:10: warning: The result of the '<<' expression is undefined 161 while (!QueryFlood(BW, x, y, value) && (x < x_right)) 162 ^~~~~~~~~~~~~~~~~~~~~~~~~~~ 163 Graphics.c:470:7: note: expanded from macro 'QueryFlood' 164 ((GetBit(BW->bitmap.image, x, y) !=\ 165 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 166 Graphics.c:66:9: note: expanded from macro 'GetBit' 167 (1 << ((x) % 8))) ? 1 : 0)) 168 ~~^~~~~~~~~~~~ 169 170 Signed-off-by: Jeremy Huddleston Sequoia <jeremyhu@apple.com> 171 172commit e3fe79502a4a1b0f0b148659948d541ce26ed7bf 173Author: Jeremy Huddleston Sequoia <jeremyhu@apple.com> 174Date: Wed Jan 1 22:58:23 2014 -0800 175 176 Demacro modernization of NewSList to plug a memory leak during error handling 177 178 atobm.c:248:6: warning: Potential leak of memory pointed to by 'slist' 179 NewSList (); 180 ^~~~~~~~~~~ 181 atobm.c:209:3: note: expanded from macro 'NewSList' 182 fprintf (stderr, "%s: unable to allocate char array\n", \ 183 ^~~~~~~ 184 atobm.c:259:6: warning: Potential leak of memory pointed to by 'old' 185 NewSList (); 186 ^~~~~~~~~~~ 187 atobm.c:209:3: note: expanded from macro 'NewSList' 188 fprintf (stderr, "%s: unable to allocate char array\n", \ 189 ^~~~~~~ 190 atobm.c:259:6: warning: Potential leak of memory pointed to by 'slist' 191 NewSList (); 192 ^~~~~~~~~~~ 193 atobm.c:209:3: note: expanded from macro 'NewSList' 194 fprintf (stderr, "%s: unable to allocate char array\n", \ 195 ^~~~~~~ 196 3 warnings generated. 197 198 Signed-off-by: Jeremy Huddleston Sequoia <jeremyhu@apple.com> 199 200commit a59538d5d57bd2f8b2101e398a97fe8466b8eef7 201Author: Jeremy Huddleston Sequoia <jeremyhu@apple.com> 202Date: Wed Jan 1 22:43:26 2014 -0800 203 204 Silence -Wbad-function-cast 205 206 Signed-off-by: Jeremy Huddleston Sequoia <jeremyhu@apple.com> 207 208commit e7086abb4576a777a4b0aff8553047077cdd08ce 209Author: Jeremy Huddleston Sequoia <jeremyhu@apple.com> 210Date: Wed Jan 1 22:29:45 2014 -0800 211 212 Avoid shadow declarations 213 214 Bitmap.c:906:17: warning: declaration shadows a local variable [-Wshadow] 215 unsigned char *image_data; 216 ^ 217 Bitmap.c:799:11: note: previous declaration is here 218 char *image_data, *buffer_data; 219 ^ 220 Bitmap.c:907:8: warning: declaration shadows a local variable [-Wshadow] 221 char *buffer_data; 222 ^ 223 Bitmap.c:799:24: note: previous declaration is here 224 char *image_data, *buffer_data; 225 ^ 226 227 Signed-off-by: Jeremy Huddleston Sequoia <jeremyhu@apple.com> 228 229commit 1e236565459d10c7ad85ebed285d2acfc4b15b69 230Author: Jeremy Huddleston Sequoia <jeremyhu@apple.com> 231Date: Wed Jan 1 22:27:36 2014 -0800 232 233 assert to avoid a NULL dereference 234 235 Bitmap.c:1246:8: warning: Dereference of null pointer 236 **str = '\0'; 237 ~~~~~~^~~~~~ 238 1 warning generated. 239 240 Signed-off-by: Jeremy Huddleston Sequoia <jeremyhu@apple.com> 241 242commit 15d326027827c168511f923e72c64e2131515e19 243Author: Alan Coopersmith <alan.coopersmith@oracle.com> 244Date: Mon Nov 4 23:14:22 2013 -0800 245 246 Print which option was in error along with usage message 247 248 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 249 Reviewed-by: Gaetan Nadon <memsize@videotron.ca> 250 251commit 64bc2b97d408d6fea16716e37f7b5ff1661d57fd 252Author: Gaetan Nadon <memsize@videotron.ca> 253Date: Fri Oct 25 21:51:37 2013 -0400 254 255 config: replace deprecated use of AC_OUTPUT with AC_CONFIG_FILES 256 257 Fix Automake warning: AC_OUTPUT should be used without arguments. 258 www.gnu.org/software/autoconf/manual/autoconf.html#Configuration-Files 259 260 Signed-off-by: Gaetan Nadon <memsize@videotron.ca> 261 262commit a78fc882fac9a3334a77744be4c617b51997a5bb 263Author: Eric S. Raymond <esr@thyrsus.com> 264Date: Thu Jun 6 14:24:08 2013 -0400 265 266 Use table markup in preference to various low-level constructions. 267 268commit 10584a7e5f476c5adb5ec6de9f0b519380abd6df 269Author: Alan Coopersmith <alan.coopersmith@oracle.com> 270Date: Fri May 17 21:12:44 2013 -0700 271 272 bitmap 1.0.7 273 274 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 275 276commit d028190d036f25472dba587863322a8fe03dda95 277Author: Alan Coopersmith <alan.coopersmith@oracle.com> 278Date: Sun Apr 21 15:02:52 2013 -0700 279 280 Mark usage() functions as noreturn, as suggested by gcc 281 282 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 283 284commit f36566239cc9119882a36273c3eefb90962d6ee5 285Author: Alan Coopersmith <alan.coopersmith@oracle.com> 286Date: Sun Apr 21 14:52:01 2013 -0700 287 288 Simplify & unify error path between mktemp & mkstemp versions 289 290 This also now catches errors when fopen() or fdopen() fail, before 291 we try to fwrite() to a null FILE pointer. 292 293 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 294 295commit 249695649bb25f500d1525f655ca317428ea6044 296Author: Alan Coopersmith <alan.coopersmith@oracle.com> 297Date: Sun Apr 21 14:46:24 2013 -0700 298 299 Fix genererate typo in bmtoa error messages 300 301 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 302 303commit 7b5ba88d06ca88e11a8127d12f3d7685a473684e 304Author: Alan Coopersmith <alan.coopersmith@oracle.com> 305Date: Sun Jan 20 23:16:46 2013 -0800 306 307 Combine usage messages into a single string 308 309 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 310 311commit 0d42abaefc427f7c354f4cff3d098775df5c9cb4 312Author: Bjarni Ingi Gislason <bjarniig@rhi.hi.is> 313Date: Sat Sep 22 19:46:01 2012 -0400 314 315 bitmap.man: Fix some typos. 316 317 Remove stray backslash. 318 (Added sometime between X11R4 and X11R5; 21+ years old.) 319 320 Use two spaces between sentences, not one or two or three. 321 322 Signed-off-by: Bjarni Ingi Gislason <bjarniig@rhi.hi.is> 323 Signed-off-by: James Cloos <cloos@jhcloos.com> 324 325commit 53d99608451ade88d59d8baae6fc543d6922fb0a 326Author: Alan Coopersmith <alan.coopersmith@oracle.com> 327Date: Tue May 29 23:22:35 2012 -0700 328 329 Fix pixmap leak in error paths of BWGetUnzoomedPixmap 330 331 Found by Parfait 0.5.0.1 bug checking tool: 332 Leaked X Resource pix 333 at line 393 of Bitmap.c in function 'BWGetUnzoomedPixmap'. 334 pix initialized at line 388 with XCreatePixmap(...). 335 at line 414 of Bitmap.c in function 'BWGetUnzoomedPixmap'. 336 pix initialized at line 409 with XCreatePixmap(...). 337 338 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 339 340commit a7909448b89f42ad0bb4834e347e6d3ecb20d7da 341Author: Alan Coopersmith <alan.coopersmith@oracle.com> 342Date: Thu Mar 8 21:40:10 2012 -0800 343 344 bitmap 1.0.6 345 346 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 347 348commit 67ab447959b62454f4e0273177baa19711babb96 349Author: Alan Coopersmith <alan.coopersmith@oracle.com> 350Date: Tue Dec 20 21:47:56 2011 -0800 351 352 Use lrint() from math library if available 353 354 Moves -lm from being hardcoded in Makefile.am to being added via 355 AC_SEARCH_LIBS in configure.ac setting it in $(MATH_LIBS) 356 357 Using lrint() [returns long int] instead of rint() [returns double] 358 clears a bunch of gcc warnings of the form: 359 "cast from function call of type ‘double’ to non-matching type ‘short int’" 360 361 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 362 363commit 1c2b70d13c42f5461a2d7c3cae7adf8d9b2e3cea 364Author: Alan Coopersmith <alan.coopersmith@oracle.com> 365Date: Fri Oct 14 22:48:31 2011 -0700 366 367 Constify strings in atobm 368 369 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 370 371commit 3fc1a649f1e81c4d93c6e00119267208877a8f02 372Author: Alan Coopersmith <alan.coopersmith@oracle.com> 373Date: Fri Oct 14 22:38:44 2011 -0700 374 375 Constify strings in bmtoa 376 377 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 378 379commit a8ee8e937e8d939522f18fa5723afea084221467 380Author: Alan Coopersmith <alan.coopersmith@oracle.com> 381Date: Fri Oct 14 21:25:06 2011 -0700 382 383 Strip trailing whitespace 384 385 Performed with: find * -type f | xargs perl -i -p -e 's{[ \t]+$}{}' 386 git diff -w & git diff -b show no diffs from this change 387 388 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 389 390commit 64eacd3665306283d126d0df7cf63a071e576c38 391Author: Alan Coopersmith <alan.coopersmith@oracle.com> 392Date: Fri Oct 14 21:22:26 2011 -0700 393 394 Constify filename string handling 395 396 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 397 398commit ca7bf97b6e83b25e7142b321e5f2325b1e47c2d0 399Author: Alan Coopersmith <alan.coopersmith@oracle.com> 400Date: Fri Oct 14 21:03:48 2011 -0700 401 402 Add const to char * in BWRequest typedef 403 404 Fixes many gcc --Wwrite-string warnings of the form: 405 406 Bitmap.c: In function ‘BWTPaste’: 407 Bitmap.c:1913:7: warning: passing argument 2 of ‘BWEngageRequest’ discards qualifiers from pointer target type 408 Bitmap.h:190:16: note: expected ‘BWRequest’ but argument is of type ‘const char *’ 409 410 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 411 412commit 6e997556a17a1b4a9d6773602af770b9e9f3751e 413Author: Gaetan Nadon <memsize@videotron.ca> 414Date: Fri Mar 4 20:44:37 2011 -0500 415 416 man: use correct section number when referring to X 417 418 Signed-off-by: Gaetan Nadon <memsize@videotron.ca> 419 420commit 98e43d4e49c599fc633b4bb9c58d99abbdd0068a 421Author: Alan Coopersmith <alan.coopersmith@oracle.com> 422Date: Thu Feb 17 23:38:40 2011 -0800 423 424 atobm only depends on xproto, not x11 425 426 It only includes <X11/Xos.h>, no headers or functions from libX11. 427 Due to a typo in Makefile.am (also fixed) it wasn't actually linking 428 with libX11 even though it had x11 in its PKG_CHECK_MODULES list. 429 430 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 431 432commit b3f10a08922f568b7cbc791354cf0d4267cd88c1 433Author: Alan Coopersmith <alan.coopersmith@oracle.com> 434Date: Sat Jan 15 10:19:20 2011 -0800 435 436 Use autoconf standard HAVE_MKSTEMP define instead of old imake HAS_MKSTEMP 437 438 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 439 440commit ff81a4e4e894915bb6b8aece8314ca1a854140a4 441Author: Alan Coopersmith <alan.coopersmith@oracle.com> 442Date: Sat Jan 15 10:16:17 2011 -0800 443 444 config: Add missing AC_CONFIG_SRCDIR 445 446 Regroup AC statements under the Autoconf initialization section. 447 Regroup AM statements under the Automake initialization section. 448 449 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 450 451commit 2afe9a69417cbd25fc5379faf22eba1a8e94b348 452Author: Alan Coopersmith <alan.coopersmith@oracle.com> 453Date: Fri Jan 14 14:05:14 2011 -0800 454 455 Use fputs instead of fprintf with no format arg to print usage message. 456 457 Clear gcc warning of: 458 BitEdit.c:986: warning: format not a string literal and no format arguments 459 460 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 461 Reviewed-by: Dirk Wallenstein <halsmit@t-online.de> 462 463commit fcfa5f0dee6549994d8c4640fb61612d33369e74 464Author: Alan Coopersmith <alan.coopersmith@oracle.com> 465Date: Fri Jan 14 14:00:30 2011 -0800 466 467 Call snprintf() directly instead of XmuSnprintf() 468 469 All platforms still supported by X.Org have long had snprintf() 470 471 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 472 473commit e3ecaf24ea4187516a1a0679783278e34e56499f 474Author: Trevor Woerner <twoerner@gmail.com> 475Date: Sat Jan 8 20:15:50 2011 -0500 476 477 Remove unused, leaky scanline. 478 479 The pointer, scanline, doesn't appear to be used anymore, and is 480 leaking memory. 481 482 Signed-off-by: Trevor Woerner <twoerner@gmail.com> 483 Reviewed-by: Adam Jackson <ajax@redhat.com> 484 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 485 486commit f705edec1b9aa80d3b93f587048ad33887aca5b6 487Author: Gaetan Nadon <memsize@videotron.ca> 488Date: Wed Jan 12 16:28:01 2011 -0500 489 490 config: replace deprecated AM_CONFIG_HEADER with AC_CONFIG_HEADERS 491 492 This silences an Autoconf warning 493 494commit 0a2eef9a48863dde8b3c7f60f5eb3b9a667fa505 495Author: Gaetan Nadon <memsize@videotron.ca> 496Date: Wed Jan 12 15:29:49 2011 -0500 497 498 config: replace deprecated AC_HELP_STRING with AS_HELP_STRING 499 500 This silences an Automake warning. 501 502 Signed-off-by: Gaetan Nadon <memsize@videotron.ca> 503 504commit 38f9d56ce050baabc72254240df875a3450f798e 505Author: Gaetan Nadon <memsize@videotron.ca> 506Date: Wed Jan 12 13:10:21 2011 -0500 507 508 config: remove AC_PROG_CC as it overrides AC_PROG_C_C99 509 510 XORG_STRICT_OPTION from XORG_DEFAULT_OPTIONS calls 511 AC_PROG_C_C99. This sets gcc with -std=gnu99. 512 If AC_PROG_CC macro is called afterwards, it resets CC to gcc. 513 514 Signed-off-by: Gaetan Nadon <memsize@videotron.ca> 515 516commit 2fee85a59998a805ca8161606c5c32953f02f659 517Author: Gaetan Nadon <memsize@videotron.ca> 518Date: Wed Jan 12 11:54:40 2011 -0500 519 520 config: use AC_PROG_INSTALL now supplied by XORG_DEFAULT_OPTIONS 521 522 It depends on util-macros 1.8 or later 523 The existing statement can now be removed from the configuration file. 524 525 Signed-off-by: Gaetan Nadon <memsize@videotron.ca> 526 527commit 99be515efe95cb3eb4bcb29b2bc194f416b31758 528Author: Alan Coopersmith <alan.coopersmith@oracle.com> 529Date: Thu Oct 7 20:04:23 2010 -0700 530 531 bitmap 1.0.5 532 533 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 534 535commit de28fe485f07bb9f5a326fb9fed87a3aa8a8f1b5 536Author: Gaetan Nadon <memsize@videotron.ca> 537Date: Tue Jul 20 18:45:18 2010 -0400 538 539 config: update AC_PREREQ statement to 2.60 540 541 Unrelated to the previous patches, the new value simply reflects 542 the reality that the minimum level for autoconf to configure 543 all x.org modules is 2.60 dated June 2006. 544 545 ftp://ftp.gnu.org/gnu/autoconf/autoconf-2.60.tar.gz 546 547 Signed-off-by: Gaetan Nadon <memsize@videotron.ca> 548 549commit 824fa229593040c2d8a795dadc359aa313fd182d 550Author: Gaetan Nadon <memsize@videotron.ca> 551Date: Mon Aug 9 20:26:12 2010 -0400 552 553 Remove unused file bitmap.icon 554 555 The file originally came with the the rest of the source in 2003 556 Two years later it was added to EXTRA_DIST without explanantion 557 It has never been installed and is not present in Debian distro 558 It's not used during configuration and not used by the build. 559 560 Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com> 561 Signed-off-by: Gaetan Nadon <memsize@videotron.ca> 562 563commit 3216eaa1b5bbb7ce5038caf9fbf22ae248eba1b6 564Author: Gaetan Nadon <memsize@videotron.ca> 565Date: Mon Aug 9 17:37:04 2010 -0400 566 567 man: remove whitespace as per git diff --check 568 569 Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com> 570 Signed-off-by: Gaetan Nadon <memsize@videotron.ca> 571 572commit 18cf79ac73c59829603cd56a04ab3b79a4a6a3c3 573Author: Gaetan Nadon <memsize@videotron.ca> 574Date: Mon Aug 9 17:24:30 2010 -0400 575 576 make: reshuffle lines and shorten the makefile 577 578 The previous patch did some aesthetic damage to it. 579 580 Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com> 581 Signed-off-by: Gaetan Nadon <memsize@videotron.ca> 582 583commit 7c55725e4eaf2296d4ea047a155d0ec7bc4976fd 584Author: Gaetan Nadon <memsize@videotron.ca> 585Date: Mon Aug 9 16:30:19 2010 -0400 586 587 config: simplify building of shadow man pages 588 589 Store the shadow files in git as any other man page. 590 Move man pages to man dir and use the common makefile 591 592 Local fix for bug 5628 in commit 593 d8f719a352cd4d4ace60566b73a077175940a351 594 is not required as the problem has been fixed in 595 util-macros d9062e4077ebfd0985baf8418f3d0f111b9ddbba 596 597 Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com> 598 Signed-off-by: Gaetan Nadon <memsize@videotron.ca> 599 600commit 85b1eda6ac104850add5a98fc4caca7f59d7cb19 601Author: Gaetan Nadon <memsize@videotron.ca> 602Date: Sun Aug 8 10:15:51 2010 -0400 603 604 config: merge BITMAP dependencies into one statement 605 606 PKG_CHECK_MODULES will merge -I and lib directives. 607 It will also AC_SUBST BITMAP_CFLAGS and BITMAP_LIBS 608 609 Signed-off-by: Gaetan Nadon <memsize@videotron.ca> 610 611commit d4de9e32fd109562a31609b338843b396c848995 612Author: Alan Coopersmith <alan.coopersmith@oracle.com> 613Date: Thu Jul 1 16:05:01 2010 -0700 614 615 bitmap calls Xmu functions directly so should include in PKG_CHECK_MODULES 616 617 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 618 619commit 5eb2fe08c0210ae110ae75ac52ed6a8db298c178 620Author: Alan Coopersmith <alan.coopersmith@oracle.com> 621Date: Wed Jun 30 23:25:03 2010 -0700 622 623 config: upgrade to util-macros 1.8 for additional man page support 624 625 Use MAN_SUBST now supplied in XORG_MANPAGE_SECTIONS 626 The value of MAN_SUBST is the same for all X.Org packages. 627 628 Use AC_PROG_SED now supplied by XORG_DEFAULT_OPTIONS 629 The existing statement can now be removed from the configuration file. 630 631 Use automake provided $(AM_V_GEN) and XORG_DEFAULT_OPTIONS provided $(SED) 632 Enables silent rule and use platform appropriate version of sed. 633 634 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 635 636commit 8aa8f77d4570a0a5030ec825bc8785ac03079267 637Author: Gaetan Nadon <memsize@videotron.ca> 638Date: Sat Dec 19 20:48:47 2009 -0500 639 640 configure.ac: use backticks rather than $() for cmd subs 641 642 Use "$PKG_CONFIG" rather than hard coded "pkg-config" 643 644 Signed-off-by: Gaetan Nadon <memsize@videotron.ca> 645 646commit 5fae54a562f9dcb4b9c5e5a21c604e9a2ef924b7 647Author: Gaetan Nadon <memsize@videotron.ca> 648Date: Thu Nov 26 09:19:52 2009 -0500 649 650 Makefile.am: add ChangeLog and INSTALL on MAINTAINERCLEANFILES 651 652 Now that the INSTALL file is generated. 653 Allows running make maintainer-clean. 654 655commit 7077c21c0803ac7ff56edba75bfa4e18949e0ae7 656Author: Gaetan Nadon <memsize@videotron.ca> 657Date: Wed Oct 28 14:09:07 2009 -0400 658 659 INSTALL, NEWS, README or AUTHORS files are missing/incorrect #24206 660 661 Add missing INSTALL file. Use standard GNU file on building tarball 662 README may have been updated 663 Remove AUTHORS file as it is empty and no content available yet. 664 Remove NEWS file as it is empty and no content available yet. 665 666commit dbbb35c25e8e0159b09a6756a143ac43720fe41a 667Author: Gaetan Nadon <memsize@videotron.ca> 668Date: Tue Oct 27 15:07:24 2009 -0400 669 670 Deploy the new XORG_DEFAULT_OPTIONS #24242 671 672 This macro aggregate a number of existing macros that sets commmon 673 X.Org components configuration options. It shields the configuration file from 674 future changes. 675 676commit b14f17671753e5c9c393fd1e972da93d8d94a366 677Author: Gaetan Nadon <memsize@videotron.ca> 678Date: Mon Oct 26 22:08:37 2009 -0400 679 680 Makefile.am: ChangeLog not required: EXTRA_DIST or *CLEANFILES #24432 681 682 ChangeLog filename is known to Automake and requires no further 683 coding in the makefile. 684 685commit 8218cc8ac7e6763c068ad0cbae81c07de899ca62 686Author: Gaetan Nadon <memsize@videotron.ca> 687Date: Thu Oct 22 12:34:14 2009 -0400 688 689 .gitignore: use common defaults with custom section # 24239 690 691 Using common defaults will reduce errors and maintenance. 692 Only the very small or inexistent custom section need periodic maintenance 693 when the structure of the component changes. Do not edit defaults. 694 695commit 05b524c70ec06d18ca1d305c98bcd480e2482eb2 696Author: Gaetan Nadon <memsize@videotron.ca> 697Date: Sun Sep 27 16:09:14 2009 -0400 698 699 Makefile.am: do not include autogen.sh in distribution #24183 700 701 This is a private build script that should not be distributed 702 703commit 7c4c903a1612528e09858554c6fdaab05d2ba095 704Author: Alan Coopersmith <alan.coopersmith@sun.com> 705Date: Tue Sep 22 19:49:57 2009 -0700 706 707 bitmap 1.0.4 708 709 Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com> 710 711commit 4abbf05633f16cae587f9f24881d18c22e43800d 712Author: Alan Coopersmith <alan.coopersmith@sun.com> 713Date: Tue Sep 22 19:39:08 2009 -0700 714 715 Migrate to xorg macros 1.3 & XORG_DEFAULT_OPTIONS 716 717 Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com> 718 719commit fb4778c1a6a114df03f3cefc87e747fab983355f 720Author: Alan Coopersmith <alan.coopersmith@sun.com> 721Date: Tue Sep 22 19:30:35 2009 -0700 722 723 Strip RCS/CVS ids 724 725 Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com> 726 727commit 948a119b19bf2e1822c63c2e6e86482e36df0cc0 728Author: Alan Coopersmith <alan.coopersmith@sun.com> 729Date: Tue Sep 22 19:25:04 2009 -0700 730 731 Fill in COPYING, README, & AUTHORS 732 733 Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com> 734 735commit 8337c277db59b5fb8e13428ab65a43725546bcdb 736Author: Paulo Cesar Pereira de Andrade <pcpa@mandriva.com.br> 737Date: Tue Jan 13 14:29:53 2009 -0200 738 739 Rename app-defaults files to match "pattern" used on other applications. 740 741commit e23fbaa033e064efc7fcfa6ec49901c241736340 742Author: Paulo Cesar Pereira de Andrade <pcpa@mandriva.com.br> 743Date: Mon Jan 12 16:11:00 2009 -0200 744 745 Ansification and compile warning fixes. 746 747 This also uses XORG_CHANGELOG and XORG_CWARNFLAGS, and corrects 748 make distcheck. 749 750commit 7527b67979d61609bff5bc8c54d2b11874a7bbfa 751Author: James Cloos <cloos@jhcloos.com> 752Date: Wed Aug 20 10:32:48 2008 -0400 753 754 xaw8 is gone, use xaw7 755 756commit 3dc6744ae0332efc9c4a621401c1257e4d4c3c6d 757Author: Julien Cristau <jcristau@debian.org> 758Date: Fri May 16 14:22:16 2008 +0200 759 760 $(builddir) is the current directory 761 762 Apparently automake doesn't always export the builddir variable. 763 This fixes my previous commit. 764 765commit 3154399310460759466d66cb17e723548e205776 766Author: Julien Cristau <jcristau@debian.org> 767Date: Sun Apr 20 19:25:40 2008 +0200 768 769 Fix build with builddir != srcdir 770 771commit 5d6bff83b62c3c9626503b36d2e5190a602bf43b 772Author: Julien Cristau <jcristau@debian.org> 773Date: Sun Apr 20 19:22:40 2008 +0200 774 775 Fix typo in bitmap.man 776 777commit 8003d22d2c12fe47d1fc06216c60dc813ed39f98 778Author: Jeremy Huddleston <jeremyhu@freedesktop.org> 779Date: Thu Mar 27 19:22:22 2008 -0700 780 781 Build fix for case-insensitive file systems 782 783commit 088006f9bb62db2523117dac568d028bd96db488 784Author: James Cloos <cloos@jhcloos.com> 785Date: Thu Dec 6 15:51:03 2007 -0500 786 787 Add missing PHONY line for automatic ChangeLog generation 788 789commit d79bd0857961669aff4c155f4c3205af4c89b18e 790Author: Alan Coopersmith <alan.coopersmith@sun.com> 791Date: Fri Aug 10 15:47:13 2007 -0700 792 793 Add AM_PROG_CC_C_O to configure.ac to make automake-1.10 happier 794 795 Makefile.am:53: compiling `atobm.c' with per-target flags requires `AM_PROG_CC_C_O' in `configure.ac' 796 797commit 0fa2f5aa4b0e62ceb4685123182bf018c27e293a 798Author: Alan Coopersmith <alan.coopersmith@sun.com> 799Date: Tue Jan 23 13:42:25 2007 -0800 800 801 Version bump: 1.0.3 802 803commit 4d02bf25b4e64d0a3fb2270491d3dbe4fc18effc 804Author: Alan Coopersmith <alan.coopersmith@sun.com> 805Date: Tue Jan 23 13:42:01 2007 -0800 806 807 Replace static changelog with dist-hook to generate from git log 808 809commit 2c5045d72ee4120c52cfc7e008237a438a1c2d30 810Author: Alan Coopersmith <alan.coopersmith@sun.com> 811Date: Mon Jan 22 19:45:08 2007 -0800 812 813 Remove on/off form of options from bitmap.man man page 814 815 Turns out the previous formatting error that hid these was an attempt 816 to comment them out since they aren't implemented, so we'll just delete them. 817 818commit 5c1c01c8222eac13e9a65a36d3b953ae6f75ae6b 819Author: Alan Coopersmith <alan.coopersmith@sun.com> 820Date: Tue Jan 2 14:37:42 2007 -0800 821 822 renamed: .cvsignore -> .gitignore 823 824commit ad55b1108f61ae0e3643bdffe430c71973d3d7ae 825Author: Eric S. Raymond <esr@thyrsus.com> 826Date: Tue Jan 2 14:34:17 2007 -0800 827 828 Bug 9511: Garbled macro invocation in bitmap.1x manual page. 829 830 <https://bugs.freedesktop.org/show_bug.cgi?id=9511> 831 832commit 3537d2121dcc68e3ecb93eaa2b341d759b0fbc88 833Author: Adam Jackson <ajax@nwnk.net> 834Date: Fri May 12 16:19:54 2006 +0000 835 836 Bump to 1.0.2 837 838commit d8f719a352cd4d4ace60566b73a077175940a351 839Author: Kevin E Martin <kem@kem.org> 840Date: Tue May 9 21:55:08 2006 +0000 841 842 Bug #5628 <https://bugs.freedesktop.org/show_bug.cgi?id=5628> Shadow pages 843 not created correctly when MANDIR & MANSUFFIX don't match. 844 845commit 545a878fa367a32059b33a21b9253a69ed95ccf6 846Author: Kevin E Martin <kem@kem.org> 847Date: Wed Dec 21 02:29:42 2005 +0000 848 849 Update package version for X11R7 release. 850 851commit 038d4cc67674fcecd638489625cedfdc57f4bcea 852Author: Adam Jackson <ajax@nwnk.net> 853Date: Mon Dec 19 16:22:39 2005 +0000 854 855 Stub COPYING files 856 857commit ab8a9596b7c9729914b1444208521e939f35535f 858Author: Kevin E Martin <kem@kem.org> 859Date: Thu Dec 15 00:24:01 2005 +0000 860 861 Update package version number for final X11R7 release candidate. 862 863commit d1ae6091d49c8af843e6895cb438225078a0f797 864Author: Kevin E Martin <kem@kem.org> 865Date: Wed Dec 7 16:17:58 2005 +0000 866 867 Change to use the app-defaults default dir configured in libXt. 868 869commit 07cfe6f6de483aefcc18836fd3f03bdc5d6cd823 870Author: Kevin E Martin <kem@kem.org> 871Date: Tue Dec 6 22:48:16 2005 +0000 872 873 Change *man_SOURCES ==> *man_PRE to fix autotools warnings. 874 875commit f0e1e5f67882635777fa9a25496265a661c40a02 876Author: Kevin E Martin <kem@kem.org> 877Date: Sat Dec 3 05:49:15 2005 +0000 878 879 Update package version number for X11R7 RC3 release. 880 881commit d1dac2d6d7470212e3b2366702923a03950b9834 882Author: Alan Coopersmith <Alan.Coopersmith@sun.com> 883Date: Mon Nov 28 22:01:36 2005 +0000 884 885 Change *mandir targets to use new *_MAN_DIR variables set by xorg-macros.m4 886 update to fix bug #5167 (Linux prefers *.1x man pages in man1 subdir) 887 888commit c361bb94796e409437ac71714c9a3746da0136dc 889Author: Eric Anholt <anholt@freebsd.org> 890Date: Mon Nov 21 10:34:55 2005 +0000 891 892 Another pass at .cvsignores for apps. 893 894commit eb1544cfc467a48074e11118a85fec3b4980460d 895Author: Eric Anholt <anholt@freebsd.org> 896Date: Sun Nov 20 22:08:47 2005 +0000 897 898 Add/improve .cvsignore files for apps. 899 900commit 0909ff9192c30720ce6a82043d10b4f7ce6fab83 901Author: Kevin E Martin <kem@kem.org> 902Date: Wed Oct 19 02:47:47 2005 +0000 903 904 Update package version number for RC1 release. 905 906commit 905ded4a3825727326ccacd48a76ca221ff59a81 907Author: Alan Coopersmith <Alan.Coopersmith@sun.com> 908Date: Tue Oct 18 00:32:54 2005 +0000 909 910 Change default install dir for app-default files from 911 $(sysconfdir)/X11/app-defaults to $(libdir)/X11/app-defaults to match 912 the monolith & allow localization 913 914commit fde7c43f092eba195a4a93391d9518f321ec9e40 915Author: Alan Coopersmith <Alan.Coopersmith@sun.com> 916Date: Mon Oct 17 23:56:19 2005 +0000 917 918 Use @APP_MAN_SUFFIX@ instead of $(APP_MAN_SUFFIX) in macro substitutions to 919 work better with BSD make 920 921commit 0dbcf2d9436b3860ed33563e0f2daf0b2bc78dd9 922Author: Alan Coopersmith <Alan.Coopersmith@sun.com> 923Date: Mon Oct 17 21:13:15 2005 +0000 924 925 Rename .shadows.DONE to shadows.DONE to avoid some make's thinking it's a 926 suffix rule (reported by Matthieu Herrb) 927 928commit 00b3817d8c24dd400ff870bb02bc1c6ba2db1f05 929Author: Alan Coopersmith <Alan.Coopersmith@sun.com> 930Date: Fri Oct 14 01:12:07 2005 +0000 931 932 Add shadow man pages for atobm and bmtoa. 933 934commit ba5f0c8d40af187191bcda8c8e72b3e554f3c50a 935Author: Alan Coopersmith <Alan.Coopersmith@sun.com> 936Date: Fri Oct 14 00:25:41 2005 +0000 937 938 Use sed to fill in variables in man page 939 940commit 358ae071207882e6202bfaa4c0dd341f7239c307 941Author: Kevin E Martin <kem@kem.org> 942Date: Tue Oct 4 23:15:11 2005 +0000 943 944 Add bitmap.icon to EXTRA_DIST 945 946commit c3f282e1aa6176896089ea79be84b7250888a65c 947Author: Kristian Høgsberg <krh@redhat.com> 948Date: Thu Sep 29 18:22:01 2005 +0000 949 950 Add Bitmap-nocase app default file to APPDEFAULTFILES. 951 952commit 53c51b2407108d9bcdca53c4d3757449465b3417 953Author: Alan Coopersmith <Alan.Coopersmith@sun.com> 954Date: Mon Aug 1 20:25:27 2005 +0000 955 956 Install man pages to section 1 instead of section m (Patch from Donnie 957 Berkholz) 958 959commit 5135ddd5eb135237ea780d7e8c4a4074557ac23c 960Author: Kevin E Martin <kem@kem.org> 961Date: Fri Jul 29 21:22:28 2005 +0000 962 963 Various changes preparing packages for RC0: 964 - Verify and update package version numbers as needed 965 - Implement versioning scheme 966 - Change bug address to point to bugzilla bug entry form 967 - Disable loadable i18n in libX11 by default (use --enable-loadable-i18n to 968 reenable it) 969 - Fix makedepend to use pkgconfig and pass distcheck 970 - Update build script to build macros first 971 - Update modular Xorg version 972 973commit 6df7e0644c9f0ce2f306331910d8adf903610c1a 974Author: Alan Coopersmith <Alan.Coopersmith@sun.com> 975Date: Tue Jul 26 15:44:01 2005 +0000 976 977 Replace more GNU make-ism's with more portable macros 978 979commit 55c2178d52dd695a31676bb7b48c1d19b3c77152 980Author: Alan Coopersmith <Alan.Coopersmith@sun.com> 981Date: Sat Jul 16 22:07:12 2005 +0000 982 983 Add #ifdef HAVE_CONFIG_H/#include "config.h" to files that need it to get 984 HAS_MKSTEMP defined in modular builds. 985 986commit 40fc1a66cc817dad40851d61011e0a90fa48fe46 987Author: Alan Coopersmith <Alan.Coopersmith@sun.com> 988Date: Sat Jul 16 22:00:11 2005 +0000 989 990 Convert more app-defaults rules to work with non-GNU make 991 992commit 1bef5390ae91148e61c613235e7db3729d7e8781 993Author: Alan Coopersmith <Alan.Coopersmith@sun.com> 994Date: Sat Jul 16 21:59:14 2005 +0000 995 996 Define HAS_MKSTEMP if mkstemp() is present (needed for improved protection 997 against tempfile race conditions in many places) 998 999commit cc48a5df41c59071eab0f58818366e10cb1ff4ac 1000Author: Søren Sandmann Pedersen <sandmann@daimi.au.dk> 1001Date: Fri Jul 15 16:52:07 2005 +0000 1002 1003 Add dependency on xbitmaps 1004 1005commit c6129c090ad25cd2f8b191f503ac6e8cd452a31d 1006Author: Søren Sandmann Pedersen <sandmann@daimi.au.dk> 1007Date: Wed Jul 6 15:47:38 2005 +0000 1008 1009 Build system for bitmap 1010 1011commit 9b6257bdb5461131e42a3d81330c76d7a2bc670a 1012Author: Egbert Eich <eich@suse.de> 1013Date: Fri Apr 23 19:54:31 2004 +0000 1014 1015 Merging XORG-CURRENT into trunk 1016 1017commit 5285b60deac481a96007a45bad4da61e8ead2552 1018Author: Egbert Eich <eich@suse.de> 1019Date: Sun Mar 14 08:34:49 2004 +0000 1020 1021 Importing vendor version xf86-4_4_99_1 on Sun Mar 14 00:26:39 PST 2004 1022 1023commit 9f0d53b85896e1c67f770b45edc0dfa5373110c0 1024Author: Egbert Eich <eich@suse.de> 1025Date: Wed Mar 3 12:12:50 2004 +0000 1026 1027 Importing vendor version xf86-4_4_0 on Wed Mar 3 04:09:24 PST 2004 1028 1029commit 632e06aaad484b25e1c1931a8eb579679372d416 1030Author: Egbert Eich <eich@suse.de> 1031Date: Thu Feb 26 13:36:15 2004 +0000 1032 1033 readding XFree86's cvs IDs 1034 1035commit c83dc161b34afe817ed47abacbf5bad132c73888 1036Author: Egbert Eich <eich@suse.de> 1037Date: Thu Feb 26 09:23:53 2004 +0000 1038 1039 Importing vendor version xf86-4_3_99_903 on Wed Feb 26 01:21:00 PST 2004 1040 1041commit a9a10f80d2b5d444c38eb54e99a6bccb07e0cbd6 1042Author: Kaleb Keithley <kaleb@freedesktop.org> 1043Date: Tue Nov 25 19:29:01 2003 +0000 1044 1045 XFree86 4.3.99.16 Bring the tree up to date for the Cygwin folks 1046 1047commit 5b64274abaf585d108e65cb1dae497e74cad856e 1048Author: Kaleb Keithley <kaleb@freedesktop.org> 1049Date: Fri Nov 14 16:48:57 2003 +0000 1050 1051 XFree86 4.3.0.1 1052 1053commit 0bd1f9d8ccaf46397745779f5964f3b843186896 1054Author: Kaleb Keithley <kaleb@freedesktop.org> 1055Date: Fri Nov 14 16:48:57 2003 +0000 1056 1057 Initial revision 1058 1059commit 9711ac0a780f686806c135045d2db9b99fbe923f 1060Author: Kaleb Keithley <kaleb@freedesktop.org> 1061Date: Fri Nov 14 15:54:52 2003 +0000 1062 1063 R6.6 is the Xorg base-line 1064