ChangeLog revision 2256ab8c
1commit df1721c44e0b357f4d8ae80247861b4a6f7a7bbb 2Author: Alan Coopersmith <alan.coopersmith@oracle.com> 3Date: Sun Jun 9 13:44:24 2019 -0700 4 5 xcalc 1.1.0 6 7 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 8 9commit 74a71638ace07252e85106d87f80a62b1f07280f 10Author: Alan Coopersmith <alan.coopersmith@oracle.com> 11Date: Sat Jun 1 17:33:44 2019 -0700 12 13 Fix -Wsign-compare warning in quit() function 14 15 Reported by gcc 7.3: 16 actions.c: In function ‘quit’: 17 actions.c:414:60: warning: comparison between signed and unsigned integer expressions [-Wsign-compare] 18 if (ev->type == ClientMessage && ev->xclient.data.l[0] != wm_delete_window) 19 ^~ 20 21 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 22 23commit 012115650d15697e1cdc13edf770ac9775b108f4 24Author: Alan Coopersmith <alan.coopersmith@oracle.com> 25Date: Sat Jun 1 17:29:15 2019 -0700 26 27 Fix -Wsign-compare warning in Syntax() function 28 29 Reported by gcc 7.3: 30 xcalc.c: In function ‘Syntax’: 31 xcalc.c:322:17: warning: comparison between signed and unsigned integer expressions [-Wsign-compare] 32 for (i=0; i < XtNumber(Options); i++) 33 ^ 34 35 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 36 37commit 7a04d51cb90b9a314eea117bc36fedb2bfaab516 38Author: Alan Coopersmith <alan.coopersmith@oracle.com> 39Date: Sat Jun 1 17:24:20 2019 -0700 40 41 Pass -D_CONST_X_STRING to make libXt declare String as const char * 42 43 Clears up 58 of 62 gcc -Wdiscarded-qualifiers warnings in the xcalc build 44 45 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 46 47commit 519e35d2c5649a995d39ee26e39809a3b7ffabc9 48Author: Alan Coopersmith <alan.coopersmith@oracle.com> 49Date: Sat Jun 1 17:16:11 2019 -0700 50 51 Add bitwise ops and base conversion (DEC/OCT/HEX) to man page 52 53 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 54 55commit c4f1bdb16b560d813e6ded83c2d7a4f4d280a90a 56Author: Tim Hentenaar <tim@hentenaar.com> 57Date: Sat Mar 22 02:47:33 2014 +0100 58 59 Add bitwise ops and base conversion (DEC/OCT/HEX) in TI mode 60 61 These operations implicitly truncate their parameters, and result to 62 integers: 63 64 * not 65 * and 66 * or 67 * xor 68 * shl 69 * shr 70 * mod 71 * trunc 72 73 Base 2 was left out of the base conversion code intentionally as it 74 would require making the UI at least one third wider. 75 76 Attempts to change base with negative values will simply display 77 "error." Note that with larger numbers, the result may be inaccurate 78 due to rounding. 79 80 I've also bound the Return key to the equal() action. 81 82 Signed-off-by: Tim Hentenaar <tim@hentenaar.com> 83 84commit be5114cebfdc29788cf038d349c0ed6cce4bb536 85Author: Alan Coopersmith <alan.coopersmith@oracle.com> 86Date: Sun Feb 17 13:50:58 2019 -0800 87 88 xcalc 1.0.7 89 90 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 91 92commit 85c9feb6e10cea1ef017d702151b14717c40b9d5 93Author: Stéphane Aulery <lkppo@free.fr> 94Date: Sun Jul 7 22:50:30 2013 +0200 95 96 Reduce scope of i (cppcheck --verbose --enable=all) 97 98 Signed-off-by: Stéphane Aulery <lkppo@free.fr> 99 Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com> 100 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 101 102commit aa3d39389bfc752486a83933574d0365c74d4e29 103Author: Stéphane Aulery <lkppo@free.fr> 104Date: Sun Jul 7 22:50:29 2013 +0200 105 106 Reduce scope of cell (cppcheck --verbose --enable=all) 107 108 Signed-off-by: Stéphane Aulery <lkppo@free.fr> 109 Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com> 110 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 111 112commit 8d156f428912aecdd493e075b75e735bfbae7dda 113Author: Alan Coopersmith <alan.coopersmith@oracle.com> 114Date: Wed Nov 21 16:59:17 2018 -0800 115 116 Update configure.ac bug URL for gitlab migration 117 118 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 119 120commit b8f4da1126dd44b4adc5f83ba5c7e06a2de75996 121Author: Alan Coopersmith <alan.coopersmith@oracle.com> 122Date: Fri Nov 16 21:11:40 2018 -0800 123 124 Update README for gitlab migration 125 126 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 127 128commit 8df4b463f69fc3e7e08ce5de284ed7f318935c1e 129Author: Alan Coopersmith <alan.coopersmith@oracle.com> 130Date: Sat May 5 12:20:12 2018 -0700 131 132 Reword fall through comments to appease gcc -Wimplicit-fallthrough 133 134 Gets rid of these warnings: 135 math.c:707:24: warning: this statement may fall through [-Wimplicit-fallthrough=] 136 case kSQR: flagINV = !flagINV; /* fall through to */ 137 ~~~~~~~~^~~~~~~~~~ 138 math.c:708:3: note: here 139 case kSQRT: if (flagINV) dnum=dnum*dnum; 140 ^~~~ 141 math.c:711:24: warning: this statement may fall through [-Wimplicit-fallthrough=] 142 case k10X: flagINV = !flagINV; /* fall through to */ 143 ~~~~~~~~^~~~~~~~~~ 144 math.c:712:3: note: here 145 case kLOG: if (flagINV) dnum=pow(10.0,dnum); 146 ^~~~ 147 math.c:715:24: warning: this statement may fall through [-Wimplicit-fallthrough=] 148 case kEXP: flagINV = !flagINV; /* fall through to */ 149 ~~~~~~~~^~~~~~~~~~ 150 math.c:716:3: note: here 151 case kLN: if (flagINV) dnum=exp(dnum); 152 ^~~~ 153 154 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 155 156commit 7a90211e35841758ff11e79a1633494e2055df88 157Author: Alan Coopersmith <alan.coopersmith@oracle.com> 158Date: Sat May 5 12:15:19 2018 -0700 159 160 Fix misleading indentation in math.c 161 162 math.c: In function ‘numeric’: 163 math.c:267:3: warning: this ‘if’ clause does not guard... [-Wmisleading-indentat 164 ion] 165 if ((int) strlen(dispstr) >= MAXDISP) 166 ^~ 167 math.c:270:5: note: ...this statement, but the latter is misleadingly indented a 168 s if it were guarded by the ‘if’ 169 switch (keynum){ 170 ^~~~~~ 171 172 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 173 174commit d056a3c6843cf5f6c8b392c46bc4f1b637f87d0b 175Author: Mihail Konev <k.mvc@ya.ru> 176Date: Thu Jan 26 14:00:20 2017 +1000 177 178 autogen: add default patch prefix 179 180 Signed-off-by: Mihail Konev <k.mvc@ya.ru> 181 182commit f5982d0175359f7db28127cba3a42e08352f295b 183Author: Emil Velikov <emil.l.velikov@gmail.com> 184Date: Mon Mar 9 12:00:52 2015 +0000 185 186 autogen.sh: use quoted string variables 187 188 Place quotes around the $srcdir, $ORIGDIR and $0 variables to prevent 189 fall-outs, when they contain space. 190 191 Signed-off-by: Emil Velikov <emil.l.velikov@gmail.com> 192 Reviewed-by: Peter Hutterer <peter.hutterer@who-t.net> 193 Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net> 194 195commit 004ce8287f9afab014a44c8bb8ba476ef5930a57 196Author: Peter Hutterer <peter.hutterer@who-t.net> 197Date: Tue Jan 24 10:32:07 2017 +1000 198 199 autogen.sh: use exec instead of waiting for configure to finish 200 201 Syncs the invocation of configure with the one from the server. 202 203 Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net> 204 Reviewed-by: Emil Velikov <emil.velikov@collabora.com> 205 206commit 0fba659f91bebe1f92f4de2660bf806fd049350b 207Author: Alan Coopersmith <alan.coopersmith@oracle.com> 208Date: Mon Jan 19 21:26:22 2015 -0800 209 210 xcalc 1.0.6 211 212 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 213 214commit a647c9bd255c136f9e6e3e274ecf4253e9ead6d6 215Author: Alan Coopersmith <alan.coopersmith@oracle.com> 216Date: Thu Aug 7 19:20:44 2014 -0700 217 218 Replace index() call with strchr() 219 220 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 221 222commit a91574fe283263a3f9d91fb257ecb2c5b0a97541 223Author: Alan Coopersmith <alan.coopersmith@oracle.com> 224Date: Mon Jun 2 22:10:55 2014 -0700 225 226 autogen.sh: Honor NOCONFIGURE=1 227 228 See http://people.gnome.org/~walters/docs/build-api.txt 229 230 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 231 232commit 6387133e231ec16da4204fddaffafe70d077e5d8 233Author: Alan Coopersmith <alan.coopersmith@oracle.com> 234Date: Mon Jun 2 22:10:55 2014 -0700 235 236 configure: Drop AM_MAINTAINER_MODE 237 238 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 239 240commit 8afe5270310698d24fff370276c7fd91eb816720 241Author: Gaetan Nadon <memsize@videotron.ca> 242Date: Tue Dec 17 08:24:45 2013 -0500 243 244 Replace signal_t with void 245 246 Now that Imake SIGNALRETURNSINT has been removed, the signal handler 247 function return type can only be void. 248 249 Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com> 250 Signed-off-by: Gaetan Nadon <memsize@videotron.ca> 251 252commit 40911339c45a880abbe6ad60dac4718a402d88ab 253Author: Gaetan Nadon <memsize@videotron.ca> 254Date: Mon Dec 16 10:04:46 2013 -0500 255 256 Assume signal handlers return void, as C89 requires 257 258 Drops use of Imake's obsolete SIGNALRETURNSINT. 259 260 Reviewd-by: Mark Kettenis <kettenis@openbsd.org> 261 Signed-off-by: Gaetan Nadon <memsize@videotron.ca> 262 263commit 25454313c637f2b6983ba289deed96141cec8000 264Author: Alan Coopersmith <alan.coopersmith@oracle.com> 265Date: Tue Jul 9 23:01:23 2013 -0700 266 267 Mark functions noreturn as suggested by gcc -Wmissing-noreturn 268 269 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 270 271commit de0e13ada857191a59c0e8f985d2317a7c41f43b 272Author: Alan Coopersmith <alan.coopersmith@oracle.com> 273Date: Tue Jul 9 22:56:02 2013 -0700 274 275 Rename "e" arguments to "ev" to avoid shadowing e() function 276 277 Resolves many gcc warnings of the form: 278 actions.c: In function ‘add’: 279 actions.c:142:35: warning: declaration of ‘e’ shadows a global declaration 280 actions.c:57:13: warning: shadowed declaration is here [-Wshadow] 281 282 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 283 284commit 40da34202dffa96197c6248a9d80894611e27921 285Author: Alan Coopersmith <alan.coopersmith@oracle.com> 286Date: Tue Jul 9 22:53:07 2013 -0700 287 288 Remove redundant redeclaration of ‘factorial’ 289 290 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 291 292commit 1de8253f0ede02ec87d28b028de97da79adc12e2 293Author: Alan Coopersmith <alan.coopersmith@oracle.com> 294Date: Tue Jul 9 22:49:21 2013 -0700 295 296 Replace sprintf & strcpy calls with snprintf & strlcpy 297 298 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 299 300commit 3d58c22c4c2729d52b5278c0e6350c0f9f44cfa8 301Author: Alan Coopersmith <alan.coopersmith@oracle.com> 302Date: Sat Jul 6 20:45:40 2013 -0700 303 304 Remove unused min & max macros from math.c 305 306 Flagged by clang: 307 308 math.c:33:9: warning: macro is not used [-Wunused-macros] 309 #define min(a,b) ((a) < (b) ? (a) : (b)) 310 ^ 311 math.c:34:9: warning: macro is not used [-Wunused-macros] 312 #define max(a,b) ((a) > (b) ? (a) : (b)) 313 ^ 314 315 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 316 317commit 3e6d23bb9d57ae3d19e9eb47ced654669fca4d7c 318Author: Stéphane Aulery <lkppo@free.fr> 319Date: Sun Jul 7 02:02:46 2013 +0200 320 321 Use the new M_E symbol from math.h 322 323 Use the new M_E symbol from math.h and fix and a value of the same 324 accuracy if it's necessary to redefine M_E. 325 326 Signed-off-by: Stéphane Aulery <lkppo@free.fr> 327 Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com> 328 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 329 330commit f3b065f03a7b68310b489d5d97b11985ef36e977 331Author: Stéphane Aulery <lkppo@free.fr> 332Date: Sun Jul 7 02:02:38 2013 +0200 333 334 Use the new M_PI symbol from math.h 335 336 Use the new M_PI symbol from math.h and fix and a value of the same 337 accuracy if it's necessary to redefine M_PI. 338 339 Signed-off-by: Stéphane Aulery <lkppo@free.fr> 340 Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com> 341 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 342 343commit b9a89876666a42ad8692e8384a5a826456e6ae56 344Author: Stéphane Aulery <lkppo@free.fr> 345Date: Sat Jul 6 15:39:07 2013 +0200 346 347 Drop CRAY support 348 349 Signed-off-by: Stéphane Aulery <lkppo@free.fr> 350 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 351 352commit 7e67bcb9563302f4e89be7a2afb1ae30c185689e 353Author: Alan Coopersmith <alan.coopersmith@oracle.com> 354Date: Mon Jan 14 23:08:54 2013 -0800 355 356 xcalc 1.0.5 357 358 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 359 360commit fa70ea30be4c1a13d553785da8f6e920471655d4 361Author: Eric S. Raymond <esr@thyrsus.com> 362Date: Thu Aug 23 06:12:20 2012 -0400 363 364 Use table markup rather than tab stops. Aids DocBook translation. 365 366commit 1e885381028c2e94a7f83a6489f11ed00f18b530 367Author: Alan Coopersmith <alan.coopersmith@oracle.com> 368Date: Wed Sep 28 20:28:31 2011 -0700 369 370 Strip trailing whitespace 371 372 Performed with: find * -type f | xargs perl -i -p -e 's{[ \t]+$}{}' 373 git diff -w & git diff -b show no diffs from this change 374 375 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 376 377commit cad47868c99d4eac0ae2ad305399143a9aed3b2d 378Author: Alan Coopersmith <alan.coopersmith@oracle.com> 379Date: Wed Sep 28 20:27:03 2011 -0700 380 381 Add const to parse_double() args to fix gcc -Wwrite-strings warnings 382 383 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 384 385commit c8ef1bb20266365a46ea82dfff79c78b6c61337d 386Author: Gaetan Nadon <memsize@videotron.ca> 387Date: Wed Jan 19 10:06:55 2011 -0500 388 389 config: move man pages into their own directory 390 391 Use services provided by XORG_MANPAGE_SECTIONS. 392 Use standard Makefile for man pages. 393 394 Signed-off-by: Gaetan Nadon <memsize@videotron.ca> 395 396commit c9c8030e71d2a3d6663f177963d8dcf148a46067 397Author: Gaetan Nadon <memsize@videotron.ca> 398Date: Thu Jan 13 17:15:36 2011 -0500 399 400 man: replace hard coded man page section with substitution strings 401 402 Signed-off-by: Gaetan Nadon <memsize@videotron.ca> 403 404commit 8cc897e03ff972d2f2addf54ed54d014845cc9bb 405Author: Gaetan Nadon <memsize@videotron.ca> 406Date: Thu Jan 13 11:15:47 2011 -0500 407 408 man: remove trailing spaces and tabs 409 410 Using s/[ \t]*$// 411 412 Signed-off-by: Gaetan Nadon <memsize@videotron.ca> 413 414commit d1dac5141b2398d5490453e0ff150b3db836a15f 415Author: Gaetan Nadon <memsize@videotron.ca> 416Date: Wed Jan 12 15:29:49 2011 -0500 417 418 config: replace deprecated AC_HELP_STRING with AS_HELP_STRING 419 420 This silences an Automake warning. 421 422 Signed-off-by: Gaetan Nadon <memsize@videotron.ca> 423 424commit 2755eae3be5fc239da792c46a10426281ee77b85 425Author: Alan Coopersmith <alan.coopersmith@oracle.com> 426Date: Fri Nov 26 13:53:42 2010 -0800 427 428 xcalc 1.0.4.1 429 430 Just respinning the tarballs with the correct install-sh instead of the 431 broken copy accidentally included in the 1.0.4 tarballs. 432 433 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 434 435commit 8245b9f8451b92a1aaa7a3520114a4afdd37c2e8 436Author: Alan Coopersmith <alan.coopersmith@oracle.com> 437Date: Wed Nov 24 15:58:04 2010 -0800 438 439 xcalc 1.0.4 440 441 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 442 443commit 4ac002703c8bda62f768f581e1ec81bbf7446365 444Author: Alan Coopersmith <alan.coopersmith@oracle.com> 445Date: Sat Nov 20 11:12:55 2010 -0800 446 447 create_keypad: declare list of button name strings as const 448 449 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 450 451commit 0d7aa29c6209391cf8307c19b5cf84528f8c2184 452Author: Alan Coopersmith <alan.coopersmith@oracle.com> 453Date: Sat Nov 20 10:55:58 2010 -0800 454 455 Purge RCS/CVS version tags 456 457 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 458 459commit 9ede32efd5f840b7728e28e24efe2759e2c3917b 460Author: Alan Coopersmith <alan.coopersmith@oracle.com> 461Date: Sat Nov 20 10:41:45 2010 -0800 462 463 config: Explicitly check for xt & x11 pkgs, since xcalc calls those directly 464 465 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 466 467commit 4be6d1bd7b6293ff4af1042098a6164aa9639595 468Author: Alan Coopersmith <alan.coopersmith@oracle.com> 469Date: Sat Nov 20 10:37:40 2010 -0800 470 471 config: replace deprecated AM_CONFIG_HEADER with AC_CONFIG_HEADERS 472 473 Regroup AC statements under the Autoconf initialization section. 474 Regroup AM statements under the Automake initialization section. 475 Add missing AC_CONFIG_SRCDIR 476 477 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 478 479commit 30e01e9b012c7191c28946a73c2ff5b969d9eec7 480Author: Alan Coopersmith <alan.coopersmith@oracle.com> 481Date: Sat Nov 20 10:35:57 2010 -0800 482 483 config: Remove unnecessary calls from configure.ac 484 485 AC_PROG_CC & AC_PROG_INSTALL are provided by XORG_DEFAULT_OPTIONS now 486 PKG_CONFIG_MODULES handles AC_SUBST of the CFLAGS & LIBS variables 487 488 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 489 490commit 5505a663714c71aa3545889633f36079522edcb5 491Author: Alan Coopersmith <alan.coopersmith@oracle.com> 492Date: Sat Nov 20 10:34:33 2010 -0800 493 494 config: upgrade to util-macros 1.8 for additional man page support 495 496 Use MAN_SUBST now supplied in XORG_MANPAGE_SECTIONS 497 The value of MAN_SUBST is the same for all X.Org packages. 498 499 Use AC_PROG_SED now supplied by XORG_DEFAULT_OPTIONS 500 Enables use of platform appropriate version of sed. 501 502 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 503 504commit 6919c12a985abd335b4890005d572107f833c3ec 505Author: Gaetan Nadon <memsize@videotron.ca> 506Date: Sat Nov 20 10:31:43 2010 -0800 507 508 config: update AC_PREREQ statement to 2.60 509 510 Unrelated to the previous patches, the new value simply reflects 511 the reality that the minimum level for autoconf to configure 512 all x.org modules is 2.60 dated June 2006. 513 514 ftp://ftp.gnu.org/gnu/autoconf/autoconf-2.60.tar.gz 515 516 Signed-off-by: Gaetan Nadon <memsize@videotron.ca> 517 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 518 519commit 8180d8ea42cfdda9ed3828fb28d1a6cd24d951db 520Author: Gaetan Nadon <memsize@videotron.ca> 521Date: Thu Feb 11 10:08:06 2010 -0500 522 523 config: move CWARNFLAGS from configure.ac to Makefile.am 524 525 Compiler warning flags should be explicitly set in the makefile 526 rather than being merged with other packages compiler flags. 527 528 Signed-off-by: Gaetan Nadon <memsize@videotron.ca> 529 530commit 04d8b9bfcd40eee452ba080b654dac9281251115 531Author: Gaetan Nadon <memsize@videotron.ca> 532Date: Sat Dec 19 20:48:47 2009 -0500 533 534 configure.ac: use backticks rather than $() for cmd subs 535 536 Use "$PKG_CONFIG" rather than hard coded "pkg-config" 537 538 Signed-off-by: Gaetan Nadon <memsize@videotron.ca> 539 540commit 6c21e467c805d62593d34da9e83a2fa2f01798a6 541Author: Alan Coopersmith <alan.coopersmith@sun.com> 542Date: Thu Dec 17 19:51:44 2009 -0800 543 544 xcalc 1.0.3 545 546 Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com> 547 548commit 146b1da64e575d330c2599161938140a4233cb6a 549Author: Alan Coopersmith <alan.coopersmith@sun.com> 550Date: Thu Dec 17 19:21:22 2009 -0800 551 552 Apply automake silencer to man page generation rule 553 554 Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com> 555 556commit abb1bf5b74642f8d40ca5fbf87490c5186f41590 557Author: Gaetan Nadon <memsize@videotron.ca> 558Date: Thu Nov 26 09:19:52 2009 -0500 559 560 Makefile.am: add ChangeLog and INSTALL on MAINTAINERCLEANFILES 561 562 Now that the INSTALL file is generated. 563 Allows running make maintainer-clean. 564 565commit 109d08574cf3d951d73668a5a23c97dad94d6e75 566Author: Gaetan Nadon <memsize@videotron.ca> 567Date: Wed Oct 28 14:09:08 2009 -0400 568 569 INSTALL, NEWS, README or AUTHORS files are missing/incorrect #24206 570 571 Add missing INSTALL file. Use standard GNU file on building tarball 572 README may have been updated 573 Remove AUTHORS file as it is empty and no content available yet. 574 Remove NEWS file as it is empty and no content available yet. 575 576commit dc35d949925e76e74403b4aea02c2ff198bf0ec6 577Author: Gaetan Nadon <memsize@videotron.ca> 578Date: Tue Oct 27 15:07:24 2009 -0400 579 580 Deploy the new XORG_DEFAULT_OPTIONS #24242 581 582 This macro aggregate a number of existing macros that sets commmon 583 X.Org components configuration options. It shields the configuration file from 584 future changes. 585 586commit 31a1d8fc1486e6dd0cb9c5ba569c820b3b79d890 587Author: Gaetan Nadon <memsize@videotron.ca> 588Date: Mon Oct 26 22:08:38 2009 -0400 589 590 Makefile.am: ChangeLog not required: EXTRA_DIST or *CLEANFILES #24432 591 592 ChangeLog filename is known to Automake and requires no further 593 coding in the makefile. 594 595commit befb756a62a11a857f20f903b8b892768a58e229 596Author: Gaetan Nadon <memsize@videotron.ca> 597Date: Thu Oct 22 12:34:15 2009 -0400 598 599 .gitignore: use common defaults with custom section # 24239 600 601 Using common defaults will reduce errors and maintenance. 602 Only the very small or inexistent custom section need periodic maintenance 603 when the structure of the component changes. Do not edit defaults. 604 605commit eab3461ac8e9e809094f45ca2084ddf7b4485035 606Author: Gaetan Nadon <memsize@videotron.ca> 607Date: Sun Sep 27 15:37:25 2009 -0400 608 609 Makefile.am: do not include autogen.sh in distribution #24183 610 611 This is a private build script that should not be distributed 612 613commit b685a52aa117e9c7841fdb9b9e6b44fe898cd929 614Author: Alan Coopersmith <alan.coopersmith@sun.com> 615Date: Thu Oct 1 14:54:20 2009 -0700 616 617 Add README with pointers to mailing lists, bugzilla, & git 618 619 Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com> 620 621commit dd6ca812a9e540ade4afd5db9dd13ea7ed3ea3ab 622Author: Paulo Cesar Pereira de Andrade <pcpa@mandriva.com.br> 623Date: Mon Jan 12 20:09:07 2009 -0200 624 625 Ansification and compile warning fixes. 626 627 This also uses XORG_CHANGELOG and XORG_CWARNFLAGS, corrects 628 make distcheck and all gcc 4.3 and sparse warnings. 629 630commit fd75efe1d9b57c483f7cedd9e2dce34b97eef75e 631Author: James Cloos <cloos@jhcloos.com> 632Date: Wed Aug 20 10:32:49 2008 -0400 633 634 xaw8 is gone, use xaw7 635 636commit e8360958ef3dba1e7ab8282c5055b0ccf5650f1c 637Author: Julien Cristau <jcristau@debian.org> 638Date: Fri May 16 14:20:03 2008 +0200 639 640 $(builddir) is the current directory 641 642 Apparently automake doesn't always export the builddir variable. 643 This fixes my previous commit. 644 645commit d3849e5474e65d2cf4212118896883330752c763 646Author: Julien Cristau <jcristau@debian.org> 647Date: Sun Apr 20 19:42:48 2008 +0200 648 649 Fix build with builddir != srcdir 650 651commit 18db0ddc3a18317585172374d0157dbdc76146aa 652Author: Jeremy Huddleston <jeremyhu@freedesktop.org> 653Date: Thu Mar 27 20:07:34 2008 -0700 654 655 Build fix for file systems that are not case sensitive 656 657commit 9f76a0d8684da6dfad67282be213139b6f87a05a 658Author: Matthieu Herrb <matthieu@bluenote.herrb.net> 659Date: Sat Mar 8 22:09:59 2008 +0100 660 661 Makefile.am: nuke RCS Id 662 663commit 19fad31ddef4c1063ee2315dfee94e4ebb5f0ff0 664Author: Alan Coopersmith <alan.coopersmith@sun.com> 665Date: Tue Aug 21 11:23:52 2007 -0700 666 667 Version bump: 1.0.2 668 669commit c4ada4a7ee46f8ab0dfeb2cd311758d9197a59a8 670Author: Alan Coopersmith <alan.coopersmith@sun.com> 671Date: Tue Aug 21 11:19:09 2007 -0700 672 673 Fill in COPYING with copyright/license notices from source files 674 675commit 5ee182a964d0ba16315935ec9bfd91779ed4a2a1 676Author: Alan Coopersmith <alan.coopersmith@sun.com> 677Date: Tue Aug 21 11:15:50 2007 -0700 678 679 Replace static changelog with dist-hook to generate from git log 680 681commit 3c9230230e88f6421ea3549f813eabceb4120734 682Author: Alan Coopersmith <alan.coopersmith@sun.com> 683Date: Tue Aug 21 11:03:07 2007 -0700 684 685 renamed: .cvsignore -> .gitignore 686 687commit b2c489924708b202f33f6528d3269911662f906c 688Author: Alan Coopersmith <alan.coopersmith@sun.com> 689Date: Tue Aug 21 11:02:19 2007 -0700 690 691 Change xcalc_CFLAGS to AM_CFLAGS to make automake-1.10 happier 692 693commit b586f35824d7c3bc061ba96e82b48744041dac59 694Author: Mike Markowski <mm@udel.edu> 695Date: Wed Jul 12 11:28:40 2006 -0700 696 697 Bug #4914: Add HP mode resources to XCalc-color app-defaults 698 699 X.Org bug #4914 <https://bugs.freedesktop.org/show_bug.cgi?id=4914> 700 Patch #3658 <https://bugs.freedesktop.org/attachment.cgi?id=3658> 701 702commit 322a3bd493b99164925e852df5ffa8e1a650f496 703Author: Kevin E Martin <kem@kem.org> 704Date: Wed Dec 21 02:29:48 2005 +0000 705 706 Update package version for X11R7 release. 707 708commit 8b7933c8192364e55b863b3e88ad64dbd6004bcc 709Author: Adam Jackson <ajax@nwnk.net> 710Date: Mon Dec 19 16:22:42 2005 +0000 711 712 Stub COPYING files 713 714commit 543045f1c5effcafe60ee86ab02663ea5253d7b1 715Author: Kevin E Martin <kem@kem.org> 716Date: Thu Dec 15 00:24:05 2005 +0000 717 718 Update package version number for final X11R7 release candidate. 719 720commit ffb4bc9e1bbff3648d9a60d29c8efe8292b2e6d2 721Author: Kevin E Martin <kem@kem.org> 722Date: Wed Dec 7 16:17:58 2005 +0000 723 724 Change to use the app-defaults default dir configured in libXt. 725 726commit f8c6b6ee02de9f4991e4894386fd1f914e71f295 727Author: Kevin E Martin <kem@kem.org> 728Date: Tue Dec 6 22:48:19 2005 +0000 729 730 Change *man_SOURCES ==> *man_PRE to fix autotools warnings. 731 732commit db75d5541e32a82c1a200f5db94258c55144aee9 733Author: Kevin E Martin <kem@kem.org> 734Date: Sat Dec 3 05:49:18 2005 +0000 735 736 Update package version number for X11R7 RC3 release. 737 738commit 217c43175b253fb436dfe2c17c258440efbf1b4d 739Author: Alan Coopersmith <Alan.Coopersmith@sun.com> 740Date: Mon Nov 28 22:01:39 2005 +0000 741 742 Change *mandir targets to use new *_MAN_DIR variables set by xorg-macros.m4 743 update to fix bug #5167 (Linux prefers *.1x man pages in man1 subdir) 744 745commit 35347991b10472019e814b4346f9f55f33fa6850 746Author: Eric Anholt <anholt@freebsd.org> 747Date: Mon Nov 21 10:34:58 2005 +0000 748 749 Another pass at .cvsignores for apps. 750 751commit ec23a703b3dd3ca07bcb67599d2aa20186b812db 752Author: Eric Anholt <anholt@freebsd.org> 753Date: Sun Nov 20 22:08:50 2005 +0000 754 755 Add/improve .cvsignore files for apps. 756 757commit 4b974526a94abe02297f7ecf427cb78681c9bfb3 758Author: Kevin E Martin <kem@kem.org> 759Date: Wed Oct 19 02:47:52 2005 +0000 760 761 Update package version number for RC1 release. 762 763commit b0d618388ae24bb2bbcfbb43b313306b3b8d342f 764Author: Alan Coopersmith <Alan.Coopersmith@sun.com> 765Date: Tue Oct 18 00:32:54 2005 +0000 766 767 Change default install dir for app-default files from 768 $(sysconfdir)/X11/app-defaults to $(libdir)/X11/app-defaults to match 769 the monolith & allow localization 770 771commit 933a86b8c6d64e974b314c5e3617fa2cbb213cce 772Author: Alan Coopersmith <Alan.Coopersmith@sun.com> 773Date: Mon Oct 17 23:56:21 2005 +0000 774 775 Use @APP_MAN_SUFFIX@ instead of $(APP_MAN_SUFFIX) in macro substitutions to 776 work better with BSD make 777 778commit 203bc6e49653660050a874508da2c57e089c3c54 779Author: Alan Coopersmith <Alan.Coopersmith@sun.com> 780Date: Fri Oct 14 00:25:43 2005 +0000 781 782 Use sed to fill in variables in man page 783 784commit e70773cb5c4269627e0d8750f7852ed865fd8eaf 785Author: Alan Coopersmith <Alan.Coopersmith@sun.com> 786Date: Thu Oct 13 20:11:00 2005 +0000 787 788 Fix app-default files to install under the same names as in the monolith 789 instead of their short names used only for 14-character filename length 790 limited ancient filesystems 791 792commit 9648bcddee6779eed395d60f17a13bcf13fa9042 793Author: Alan Coopersmith <Alan.Coopersmith@sun.com> 794Date: Mon Aug 1 20:25:29 2005 +0000 795 796 Install man pages to section 1 instead of section m (Patch from Donnie 797 Berkholz) 798 799commit cdd93a4e3c1dac5f23ad21c5fac4fbc054e0a42d 800Author: Kevin E Martin <kem@kem.org> 801Date: Fri Jul 29 21:22:31 2005 +0000 802 803 Various changes preparing packages for RC0: 804 - Verify and update package version numbers as needed 805 - Implement versioning scheme 806 - Change bug address to point to bugzilla bug entry form 807 - Disable loadable i18n in libX11 by default (use --enable-loadable-i18n to 808 reenable it) 809 - Fix makedepend to use pkgconfig and pass distcheck 810 - Update build script to build macros first 811 - Update modular Xorg version 812 813commit 2347df01911fc8061071cb80018963b79514e4b4 814Author: Alan Coopersmith <Alan.Coopersmith@sun.com> 815Date: Tue Jul 26 15:44:01 2005 +0000 816 817 Replace more GNU make-ism's with more portable macros 818 819commit b7161f370dbabeb536e9dc078f05e1ffd67847fb 820Author: Adam Jackson <ajax@nwnk.net> 821Date: Wed Jul 20 19:31:51 2005 +0000 822 823 Use a unique token for PKG_CHECK_MODULES. Otherwise, if you use a global 824 configure cache, you cache it, and the cached value is probably wrong. 825 826commit 526ab098fe73f9dde13b651ae8c70fbec56594c2 827Author: Matthieu Herrb <matthieu.herrb@laas.fr> 828Date: Sun Jul 17 20:11:02 2005 +0000 829 830 fix rules to work with non-GNU make and outside of $srcdir 831 832commit 392f5dd1907a5110c89b308ef51122b39b23dde5 833Author: Søren Sandmann Pedersen <sandmann@daimi.au.dk> 834Date: Wed Jun 29 23:12:07 2005 +0000 835 836 Build system for Xcalc 837 838commit a72c79567a4f550dfafb532b03be79339c5a4a30 839Author: Alexander Gottwald <alexander.gottwald@s1999.tu-chemnitz.de> 840Date: Tue Jul 6 09:24:58 2004 +0000 841 842 Bugzilla #665: bugs in xcalc -rpn mode decimal_point is a const char* not 843 char. the patch uses strcmp instead of plain char == char operator and 844 allows decimal_point to be of any length. localeconv() is only called 845 if X_LOCALE is _not_ defined 846 847commit bbcc481006d4b5f4e8d1276db2220cf96a355985 848Author: Alan Coopersmith <Alan.Coopersmith@sun.com> 849Date: Sun May 23 20:03:49 2004 +0000 850 851 xc/programs/xcalc/math.c 852 xcalc -rpn mode errors (Geoffery Coram) 853 854commit ed6ab3f1b45a5101a4cddfca754291b4523520a1 855Author: Egbert Eich <eich@suse.de> 856Date: Fri Apr 23 19:54:38 2004 +0000 857 858 Merging XORG-CURRENT into trunk 859 860commit bb536859850357b05511068fab838dd3a1436ef6 861Author: Egbert Eich <eich@suse.de> 862Date: Sun Mar 14 08:35:00 2004 +0000 863 864 Importing vendor version xf86-4_4_99_1 on Sun Mar 14 00:26:39 PST 2004 865 866commit fecd81156f60db136eaf9cf79a34b7d076bbae06 867Author: Egbert Eich <eich@suse.de> 868Date: Wed Mar 3 12:12:55 2004 +0000 869 870 Importing vendor version xf86-4_4_0 on Wed Mar 3 04:09:24 PST 2004 871 872commit 3acc8a33b8eec4fe9164e12507cafb3c161d3cbe 873Author: Egbert Eich <eich@suse.de> 874Date: Thu Feb 26 13:36:16 2004 +0000 875 876 readding XFree86's cvs IDs 877 878commit 70f4b224345cc7c43d1960858c27a11541ea55c4 879Author: Egbert Eich <eich@suse.de> 880Date: Thu Feb 26 09:23:58 2004 +0000 881 882 Importing vendor version xf86-4_3_99_903 on Wed Feb 26 01:21:00 PST 2004 883 884commit c61023614eb9182293f5c26c22a3babf65f1dee1 885Author: Kaleb Keithley <kaleb@freedesktop.org> 886Date: Tue Nov 25 19:29:03 2003 +0000 887 888 XFree86 4.3.99.16 Bring the tree up to date for the Cygwin folks 889 890commit c538606166a71ab7b711de7394cc61add265a209 891Author: Kaleb Keithley <kaleb@freedesktop.org> 892Date: Fri Nov 14 16:48:58 2003 +0000 893 894 XFree86 4.3.0.1 895 896commit 411b0e9e319550a394b0a5945543f39a5affc6a6 897Author: Kaleb Keithley <kaleb@freedesktop.org> 898Date: Fri Nov 14 16:48:58 2003 +0000 899 900 Initial revision 901