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