1commit 4075ab7c7bec2b26fd23fe9a025f185b83ed8ba3 2Author: Alan Coopersmith <alan.coopersmith@oracle.com> 3Date: Sat Feb 3 14:03:52 2024 -0800 4 5 xditview 1.0.7 6 7 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 8 9commit 5c1b311c8672f0dcbb7824a205f6b9c0a07584be 10Author: Alan Coopersmith <alan.coopersmith@oracle.com> 11Date: Thu Feb 9 18:30:48 2023 -0800 12 13 Add -help and -version options 14 15 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 16 17commit 1293789eca465dfec7c5874b65cafb70c4f90125 18Author: Alan Coopersmith <alan.coopersmith@oracle.com> 19Date: Thu Feb 9 18:26:14 2023 -0800 20 21 Print which argument was unknown before giving usage message 22 23 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 24 25commit 543f75af78446d6456fab89233ae1ab8eaf4c223 26Author: Alan Coopersmith <alan.coopersmith@oracle.com> 27Date: Tue Jan 17 15:45:51 2023 -0800 28 29 Add .git-blame-ignore-revs to hide whitespace commits from git blame 30 31 To use this in your local repo clone, you will need to either run 32 `git blame --ignore-revs-file .git-blame-ignore-revs` 33 or set it permanently with 34 `git config blame.ignoreRevsFile .git-blame-ignore-revs` 35 36 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 37 38commit 591e62a56ba2ab90ad159ae89406b9790bd96a11 39Author: Alan Coopersmith <alan.coopersmith@oracle.com> 40Date: Sun Jan 15 11:12:10 2023 -0800 41 42 GetLine: resolve -Wmaybe-uninitialized warning 43 44 lex.c: In function ‘GetLine’: 45 lex.c:38:8: warning: ‘c’ may be used uninitialized [-Wmaybe-uninitialized] 46 38 | if (c == '\n') 47 | ^ 48 lex.c:29:16: note: ‘c’ was declared here 49 29 | int i = 0, c; 50 | ^ 51 52 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 53 54commit 95c3038f4a7e03c28ec6b209ec111cb2e3444646 55Author: Alan Coopersmith <alan.coopersmith@oracle.com> 56Date: Sun Jan 15 11:00:08 2023 -0800 57 58 Add CWARNFLAGS to AM_CFLAGS 59 60 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 61 62commit f536e9d910088d689ff010259f413d0abea915e5 63Author: Alan Coopersmith <alan.coopersmith@oracle.com> 64Date: Sat Jan 14 18:06:58 2023 -0800 65 66 Mark more char * as const 67 68 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 69 70commit 982c9d064fc05740374ae6fed02045527adb7d6a 71Author: Alan Coopersmith <alan.coopersmith@oracle.com> 72Date: Sat Jan 14 17:58:03 2023 -0800 73 74 configure: Add --with-xft and --without-xft flags to control USE_XFT 75 76 USE_XFT ifdefs have been in since the import from XFree86, but 77 never enabled by the autoconf build, oops! 78 79 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 80 81commit df1c5c7755441c32e26eec37d1b3d0fa0dbeceb3 82Author: Alan Coopersmith <alan.coopersmith@oracle.com> 83Date: Sat Jan 14 16:44:17 2023 -0800 84 85 Initialize more variables in their declarations 86 87 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 88 89commit 282857a907624ce29566b50b60687273dcd56f42 90Author: Alan Coopersmith <alan.coopersmith@oracle.com> 91Date: Sat Jan 14 16:14:57 2023 -0800 92 93 More variable scope reductions as recommended by cppcheck 94 95 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 96 97commit c623f10e9acc9033b2df436126799424eb5830b8 98Author: Alan Coopersmith <alan.coopersmith@oracle.com> 99Date: Sat Jan 14 16:19:00 2023 -0800 100 101 Add bounds check to getstr() 102 103 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 104 105commit 0ca4db4996abd5e6161567575fe318663d8dd117 106Author: Alan Coopersmith <alan.coopersmith@oracle.com> 107Date: Sat Jan 14 12:42:33 2023 -0800 108 109 Replace strcpy() calls with strncpy() or memcpy() 110 111 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 112 113commit 42e0ce4adc008430e32c54a5374b7744c2c2cfe4 114Author: Alan Coopersmith <alan.coopersmith@oracle.com> 115Date: Sat Jan 14 12:28:30 2023 -0800 116 117 lex.c: increment length counters when adding to buffer 118 119 Simple test case: 120 % python -c 'print("A"*60000)' > buf 121 % xditview buf 122 123 Reported-by: constantine110@protonmail.com 124 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 125 126commit f1762e6d2964705887b924b824568aeff352dd46 127Author: Alan Coopersmith <alan.coopersmith@oracle.com> 128Date: Sat Jan 14 12:08:53 2023 -0800 129 130 Convert to X.Org standard code style 131 132 Mostly via util/modular/x-indent-all.sh, plus some manual cleanup 133 134 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 135 136commit 81e3522d79efdc629cd1815b451dac39208673b0 137Author: Alan Coopersmith <alan.coopersmith@oracle.com> 138Date: Sat Jan 14 11:09:20 2023 -0800 139 140 Dvi.c: remove unused XtStrlen macro 141 142 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 143 144commit 13d3bad03a200e953d082b5aa5719b48045a108e 145Author: Alan Coopersmith <alan.coopersmith@oracle.com> 146Date: Tue Dec 20 19:13:32 2022 -0800 147 148 gitlab CI: stop requiring Signed-off-by in commits 149 150 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 151 152commit 13f184b00d1ed1480b5704f8b5eb314039d61fd2 153Author: Alan Coopersmith <alan.coopersmith@oracle.com> 154Date: Tue Dec 20 12:46:32 2022 -0800 155 156 configure: Use AC_SYS_LARGEFILE to enable large file support 157 158 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 159 160commit 065c42427d137053dd4490b8aaee9bf3ecd81539 161Author: Alan Coopersmith <alan.coopersmith@oracle.com> 162Date: Sat Oct 15 10:08:17 2022 -0700 163 164 xditview 1.0.6 165 166 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 167 168commit 4110fd5e57f5b42d37e821cf56ce5fa59728e3f2 169Author: Alan Coopersmith <alan.coopersmith@oracle.com> 170Date: Sun Sep 11 13:06:48 2022 -0700 171 172 Declare guesses const 173 174 As suggested by cppcheck: 175 176 parse.c:163:19: style: Variable 'guesses' can be declared with const [constVariable] 177 static int guesses[] = { 1, 4, 100, 1000, 1 }; 178 ^ 179 180 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 181 182commit f5cb430f246850e8213fe5cd95b4ea44228f3c3b 183Author: Alan Coopersmith <alan.coopersmith@oracle.com> 184Date: Sun Sep 11 12:55:15 2022 -0700 185 186 Avoid leak of new_file if we decide not to use it 187 188 As warned by cppcheck: 189 xditview.c:338:13: error: Resource leak: new_file [resourceLeak] 190 return; 191 ^ 192 xditview.c:342:13: error: Resource leak: new_file [resourceLeak] 193 return; 194 ^ 195 196 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 197 198commit 776e7c4dae63e2541a6f3822c3e9d659f9af101e 199Author: Alan Coopersmith <alan.coopersmith@oracle.com> 200Date: Sun Sep 11 12:45:32 2022 -0700 201 202 Use standard strrchr() instead of ancient rindex() 203 204 As suggested by cppcheck: 205 206 xditview.c:359:32: style: Obsolescent function 'rindex' called. 207 It is recommended to use 'strrchr' instead. [rindexCalled] 208 if (name[0] != '/' && (n = rindex (name, '/'))) 209 210 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 211 212commit 0d1e202f83774543aeb6e66a9dc46160e2bfff5d 213Author: Alan Coopersmith <alan.coopersmith@oracle.com> 214Date: Sun Sep 11 12:35:40 2022 -0700 215 216 Inline *Move & *Goto functions 217 218 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 219 220commit ca9c5d01c44fe3a67389f3e6e0bcc34bac09c1c0 221Author: Alan Coopersmith <alan.coopersmith@oracle.com> 222Date: Sun Sep 11 12:28:28 2022 -0700 223 224 Delete HorizontalMove macro that shadows/duplicates HorizontalMove function 225 226 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 227 228commit 05987580ba303f6d25830bb45ce00229cb8118cc 229Author: Alan Coopersmith <alan.coopersmith@oracle.com> 230Date: Sun Sep 11 12:11:11 2022 -0700 231 232 Fix -Wsign-compare warnings 233 234 xditview.c: In function ‘main’: 235 xditview.c:196:23: warning: comparison between signed and unsigned integer expressions [-Wsign-compare] 236 for (int i = 0; i < XtNumber (popupMenuEntries); i++) { 237 ^ 238 xditview.c:211:23: warning: comparison between signed and unsigned integer expressions [-Wsign-compare] 239 for (int i = 0; i < XtNumber (fileMenuEntries); i++) { 240 ^ 241 242 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 243 244commit 770fc7881a48b8d81c9b04d99d29059033234af6 245Author: Alan Coopersmith <alan.coopersmith@oracle.com> 246Date: Sun Sep 11 12:07:35 2022 -0700 247 248 Clear -Wmissing-field-initializers warnings 249 250 DviChar.c:392:1: warning: missing initializer for field ‘buckets’ of ‘DviCharNameMap {aka struct _dviCharNameMap}’ [-Wmissing-field-initializers] 251 }; 252 ^ 253 In file included from DviChar.c:9:0: 254 DviChar.h:34:22: note: ‘buckets’ declared here 255 DviCharNameHash *buckets[DVI_HASH_SIZE]; 256 ^~~~~~~ 257 DviChar.c:658:1: warning: missing initializer for field ‘buckets’ of ‘DviCharNameMap {aka struct _dviCharNameMap}’ [-Wmissing-field-initializers] 258 }; 259 ^ 260 In file included from DviChar.c:9:0: 261 DviChar.h:34:22: note: ‘buckets’ declared here 262 DviCharNameHash *buckets[DVI_HASH_SIZE]; 263 ^~~~~~~ 264 265 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 266 267commit f5656f8b21291713f32d2667e4fe2d98a8771436 268Author: Alan Coopersmith <alan.coopersmith@oracle.com> 269Date: Sun Sep 11 12:01:16 2022 -0700 270 271 Use _CONST_X_STRING to make libXt declare String as const char * 272 273 Clears 42 out of 66 -Wdiscarded-qualifiers warnings from gcc 274 275 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 276 277commit d5ec989d9d0259f1b8138ea3fe0b59e12053a796 278Author: Alan Coopersmith <alan.coopersmith@oracle.com> 279Date: Sun Sep 11 11:56:06 2022 -0700 280 281 Variable scope reductions as recommended by cppcheck 282 283 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 284 285commit b6f328961cb098ac34df83052d801769fb4a7ff9 286Author: Alan Coopersmith <alan.coopersmith@oracle.com> 287Date: Sat Apr 2 12:50:33 2022 -0700 288 289 man page: remove out-of-date COPYRIGHT section 290 291 The information previously listed here didn't match what is present in 292 the source code or the COPYING file, and the X(7) man page doesn't list 293 any license information as this had claimed. 294 295 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 296 297commit 987a18597716e83eb808fbf33e7da9d7f1503dc7 298Author: Alan Coopersmith <alan.coopersmith@oracle.com> 299Date: Sat Dec 4 11:35:16 2021 -0800 300 301 Build xz tarballs instead of bzip2 302 303 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 304 305commit 703e442fa656a35149df3460c638f79f3d2f0b07 306Author: Alan Coopersmith <alan.coopersmith@oracle.com> 307Date: Sat Dec 4 11:35:13 2021 -0800 308 309 gitlab CI: add a basic build test 310 311 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 312 313commit 2ce24da43a5f8bc7d675b3d061c80bff6172a10c 314Author: Alan Coopersmith <alan.coopersmith@oracle.com> 315Date: Sun Nov 28 14:08:25 2021 -0800 316 317 Fix spelling/wording issues 318 319 Found by using: 320 codespell --builtin clear,rare,usage,informal,code,names 321 322 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 323 324commit 9b5e869ac505bf14b0051dbaabe0de38133f5fd5 325Author: Alan Coopersmith <alan.coopersmith@oracle.com> 326Date: Sun Mar 3 11:12:25 2019 -0800 327 328 xditview 1.0.5 329 330 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 331 332commit 8ec60659b075307e38fab4bcb8fe949830decdee 333Author: Alan Coopersmith <alan.coopersmith@oracle.com> 334Date: Wed Nov 21 17:01:01 2018 -0800 335 336 Update configure.ac bug URL for gitlab migration 337 338 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 339 340commit 36242c559543ffa21570ca961ba950ee0d73c9dd 341Author: Alan Coopersmith <alan.coopersmith@oracle.com> 342Date: Fri Nov 16 21:23:12 2018 -0800 343 344 Update README for gitlab migration 345 346 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 347 348commit 3cd0b7e72ed741bdc26ea7ffd5ea2f4ec3af4f96 349Author: Pat Kane <pekane52@gmail.com> 350Date: Tue Dec 7 22:32:24 2010 -0600 351 352 make sure filename is a regular file. 353 354 This is the second version of patch. 355 356 It now uses fstat instead of stat as recommended in 357 review comments from: 358 Philipp Hagemeister <phihag@phihag.de>. 359 Bug was reported by: 360 Krzysztof Żelechowski <giecrilj@stegny.2a.pl> 361 362 Signed-off-by: Pat Kane <pekane52@gmail.com> 363 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 364 365commit 5383f408b1138913fd6d7d94da70f63bed711857 366Author: Mihail Konev <k.mvc@ya.ru> 367Date: Thu Jan 26 14:00:21 2017 +1000 368 369 autogen: add default patch prefix 370 371 Signed-off-by: Mihail Konev <k.mvc@ya.ru> 372 373commit 27eb7660e2b186c7a4c84ccab14631f5a8d5b571 374Author: Emil Velikov <emil.l.velikov@gmail.com> 375Date: Mon Mar 9 12:00:52 2015 +0000 376 377 autogen.sh: use quoted string variables 378 379 Place quotes around the $srcdir, $ORIGDIR and $0 variables to prevent 380 fall-outs, when they contain space. 381 382 Signed-off-by: Emil Velikov <emil.l.velikov@gmail.com> 383 Reviewed-by: Peter Hutterer <peter.hutterer@who-t.net> 384 Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net> 385 386commit bcf883b274d0d68c56047a9720bb24e9a34d62de 387Author: Peter Hutterer <peter.hutterer@who-t.net> 388Date: Tue Jan 24 10:32:07 2017 +1000 389 390 autogen.sh: use exec instead of waiting for configure to finish 391 392 Syncs the invocation of configure with the one from the server. 393 394 Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net> 395 Reviewed-by: Emil Velikov <emil.velikov@collabora.com> 396 397commit d8b43b22c6432e7c927236b6e729a53f737cedfb 398Author: Alan Coopersmith <alan.coopersmith@oracle.com> 399Date: Thu Apr 16 23:07:15 2015 -0700 400 401 xditview 1.0.4 402 403 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 404 405commit b35fd1fb11d26dbe2be060a77a8a275b98d28251 406Author: Alan Coopersmith <alan.coopersmith@oracle.com> 407Date: Sat Nov 8 09:29:58 2014 -0800 408 409 Use SEEK_* names instead of raw numbers for fseek whence argument 410 411 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 412 413commit 67506ce7948065ae81f370bb821645de4c7daf9b 414Author: Alan Coopersmith <alan.coopersmith@oracle.com> 415Date: Sat Oct 25 13:39:48 2014 -0700 416 417 Remove CVS/RCS $Id tags 418 419 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 420 421commit c14b35a3b958663056a887471a1280842efbb981 422Author: Alan Coopersmith <alan.coopersmith@oracle.com> 423Date: Sat Oct 25 13:27:06 2014 -0700 424 425 Combine usage message strings 426 427 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 428 429commit cb2b3214a0593b0970cd8738d34d0ac3e1268b38 430Author: Alan Coopersmith <alan.coopersmith@oracle.com> 431Date: Sat Oct 25 13:15:46 2014 -0700 432 433 Remove #if 0 code 434 435 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 436 437commit 5134d3eaaeb25a49622d827af7c783b980a10919 438Author: Alan Coopersmith <alan.coopersmith@oracle.com> 439Date: Sat Oct 25 13:12:31 2014 -0700 440 441 unifdef -UNOTDEF -UNOTUSED 442 443commit f7f6ce39ca5f1988f04696581f261bf59c23dc4c 444Author: Alan Coopersmith <alan.coopersmith@oracle.com> 445Date: Sat Oct 25 12:56:45 2014 -0700 446 447 Const cleanup 448 449 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 450 451commit da45a0a835bf2d2abb2810ca7bdb9cbc450f7135 452Author: Alan Coopersmith <alan.coopersmith@oracle.com> 453Date: Mon Jun 2 22:24:37 2014 -0700 454 455 autogen.sh: Honor NOCONFIGURE=1 456 457 See http://people.gnome.org/~walters/docs/build-api.txt 458 459 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 460 461commit bc59f4d3543192e8ccd29f70db9f3dcb4e23fd5a 462Author: Alan Coopersmith <alan.coopersmith@oracle.com> 463Date: Mon Jun 2 22:24:37 2014 -0700 464 465 configure: Drop AM_MAINTAINER_MODE 466 467 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 468 469commit fc869719ccf944905316692c94c236f249aeb8c2 470Author: Alan Coopersmith <alan.coopersmith@oracle.com> 471Date: Mon Jun 2 22:24:25 2014 -0700 472 473 config: Add missing AC_CONFIG_SRCDIR 474 475 Regroup AC statements under the Autoconf initialization section. 476 Regroup AM statements under the Automake initialization section. 477 478 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 479 480commit 4768101b52f5e5324208c5c014bac87e0eb28b39 481Author: Alan Coopersmith <alan.coopersmith@oracle.com> 482Date: Tue Feb 18 18:13:43 2014 -0800 483 484 Convert sprintf calls to snprintf 485 486 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 487 488commit 93986e62c7793ef7bb3123748249302e974b72e6 489Author: Alan Coopersmith <alan.coopersmith@oracle.com> 490Date: Sun Apr 21 15:18:28 2013 -0700 491 492 Close file leak when fdopen() fails in OpenFile() 493 494 Found by parfait 1.1 bug checking tool: 495 Error: File Leak 496 File Descriptor Leak: Leaked File Descriptor fd 497 at line 457 of app/xditview/Dvi.c in function 'OpenFile'. 498 fd initialized at line 449 with mkstemp 499 500 Also reorganize & clean up the code a bit while we're here 501 502 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 503 504commit 23371e39e595056b3db2e361fad8a21ed4a0d9e7 505Author: Alan Coopersmith <alan.coopersmith@oracle.com> 506Date: Sat Jan 12 16:36:26 2013 -0800 507 508 xditview 1.0.3 509 510 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 511 512commit 257b2cdcaeb19a75b3e61e11a038244af89d3179 513Author: Gaetan Nadon <memsize@videotron.ca> 514Date: Wed Jan 19 10:06:56 2011 -0500 515 516 config: move man pages into their own directory 517 518 Use services provided by XORG_MANPAGE_SECTIONS. 519 Use standard Makefile for man pages. 520 521 Signed-off-by: Gaetan Nadon <memsize@videotron.ca> 522 523commit a81efa4ac87783a42ffb5f8099b05016903fb1a4 524Author: Gaetan Nadon <memsize@videotron.ca> 525Date: Thu Jan 13 17:15:36 2011 -0500 526 527 man: replace hard coded man page section with substitution strings 528 529 Signed-off-by: Gaetan Nadon <memsize@videotron.ca> 530 531commit a274cf7cbf58d9e3b40c7146c191a63a995e9f2d 532Author: Gaetan Nadon <memsize@videotron.ca> 533Date: Thu Jan 13 11:15:47 2011 -0500 534 535 man: remove trailing spaces and tabs 536 537 Using s/[ \t]*$// 538 539 Signed-off-by: Gaetan Nadon <memsize@videotron.ca> 540 541commit e65ffae36608a8c7d4cf24d6c1c1a686b70abc00 542Author: Gaetan Nadon <memsize@videotron.ca> 543Date: Wed Jan 12 16:28:02 2011 -0500 544 545 config: replace deprecated AM_CONFIG_HEADER with AC_CONFIG_HEADERS 546 547 This silences an Autoconf warning 548 549commit 78fe41b9f00cd8ad5ee8532ae70771b0e0fe6756 550Author: Gaetan Nadon <memsize@videotron.ca> 551Date: Wed Jan 12 15:29:50 2011 -0500 552 553 config: replace deprecated AC_HELP_STRING with AS_HELP_STRING 554 555 This silences an Automake warning. 556 557 Signed-off-by: Gaetan Nadon <memsize@videotron.ca> 558 559commit 1616e2d2e5c632c7a175dee2b0ae4e2b737bb648 560Author: Gaetan Nadon <memsize@videotron.ca> 561Date: Wed Jan 12 11:54:40 2011 -0500 562 563 config: use AC_PROG_INSTALL now supplied by XORG_DEFAULT_OPTIONS 564 565 It depends on util-macros 1.8 or later 566 The existing statement can now be removed from the configuration file. 567 568 Signed-off-by: Gaetan Nadon <memsize@videotron.ca> 569 570commit b05d3efcd5ecceb73edc9e64cc07a5c7fcfaa321 571Author: Alan Coopersmith <alan.coopersmith@oracle.com> 572Date: Fri Aug 6 16:08:20 2010 -0700 573 574 xditview 1.0.2 575 576 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 577 578commit cc0f7c0855e22a50d2ffca3f3be104d44854ae2c 579Author: Alan Coopersmith <alan.coopersmith@oracle.com> 580Date: Fri Aug 6 16:05:21 2010 -0700 581 582 config: update AC_PREREQ statement to 2.60 583 584 Unrelated to the previous patches, the new value simply reflects 585 the reality that the minimum level for autoconf to configure 586 all X.org modules is 2.60 dated June 2006. 587 588 ftp://ftp.gnu.org/gnu/autoconf/autoconf-2.60.tar.gz 589 590 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 591 592commit 71b679ff4a6680368f3da23b184e081fdf4bedfd 593Author: Alan Coopersmith <alan.coopersmith@oracle.com> 594Date: Fri Aug 6 08:54:56 2010 -0700 595 596 Use AM_CFLAGS instead of requiring AM_PROG_CC_C_O 597 598 Since we don't build different targets with different CFLAGS, 599 simplify configuration and build. 600 601 Also remove AC_PROG_CC since XORG_DEFAULT_OPTIONS handles that now. 602 603 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 604 605commit 8d5842d32d880fab4e076776b669b6cd3d07a8ca 606Author: Alan Coopersmith <alan.coopersmith@oracle.com> 607Date: Fri Aug 6 08:50:47 2010 -0700 608 609 Fill in COPYING file with copyright notices from source code 610 611 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 612 613commit c61d64144df11490353c436d103976dd6949c2e2 614Author: Alan Coopersmith <alan.coopersmith@oracle.com> 615Date: Thu Jul 1 17:46:28 2010 -0700 616 617 Xmu functions are called directly, so include it in PKG_CHECK_MODULES 618 619 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 620 621commit 8861f35c5199902638458d16267e455ac482eb1f 622Author: Alan Coopersmith <alan.coopersmith@oracle.com> 623Date: Wed Jun 30 23:25:03 2010 -0700 624 625 config: upgrade to util-macros 1.8 for additional man page support 626 627 Use MAN_SUBST now supplied in XORG_MANPAGE_SECTIONS 628 The value of MAN_SUBST is the same for all X.Org packages. 629 630 Use AC_PROG_SED now supplied by XORG_DEFAULT_OPTIONS 631 The existing statement can now be removed from the configuration file. 632 633 Use automake provided $(AM_V_GEN) and XORG_DEFAULT_OPTIONS provided $(SED) 634 Enables silent rule and use platform appropriate version of sed. 635 636 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 637 638commit a2453f7648632483c5e229a9c55f232b5ceee6d4 639Author: Gaetan Nadon <memsize@videotron.ca> 640Date: Sat Dec 19 20:48:47 2009 -0500 641 642 configure.ac: use backticks rather than $() for cmd subs 643 644 Use "$PKG_CONFIG" rather than hard coded "pkg-config" 645 646 Signed-off-by: Gaetan Nadon <memsize@videotron.ca> 647 648commit 1c1473782948289aa5747b157853939c0005c86d 649Author: Gaetan Nadon <memsize@videotron.ca> 650Date: Thu Nov 26 09:19:53 2009 -0500 651 652 Makefile.am: add ChangeLog and INSTALL on MAINTAINERCLEANFILES 653 654 Now that the INSTALL file is generated. 655 Allows running make maintainer-clean. 656 657commit c8f4d8fec8d9d267d514069f22bb97d78d9bf02e 658Author: Gaetan Nadon <memsize@videotron.ca> 659Date: Wed Oct 28 14:09:08 2009 -0400 660 661 INSTALL, NEWS, README or AUTHORS files are missing/incorrect #24206 662 663 Add missing INSTALL file. Use standard GNU file on building tarball 664 README may have been updated 665 Remove AUTHORS file as it is empty and no content available yet. 666 Remove NEWS file as it is empty and no content available yet. 667 668commit b20e0836477153bd42955d152c87c0b3652bbd40 669Author: Gaetan Nadon <memsize@videotron.ca> 670Date: Tue Oct 27 15:07:24 2009 -0400 671 672 Deploy the new XORG_DEFAULT_OPTIONS #24242 673 674 This macro aggregate a number of existing macros that sets commmon 675 X.Org components configuration options. It shields the configuration file from 676 future changes. 677 678commit 1d80ad4cc2d12060aa2d263b7775fa1095facf4d 679Author: Gaetan Nadon <memsize@videotron.ca> 680Date: Mon Oct 26 22:08:38 2009 -0400 681 682 Makefile.am: ChangeLog not required: EXTRA_DIST or *CLEANFILES #24432 683 684 ChangeLog filename is known to Automake and requires no further 685 coding in the makefile. 686 687commit 1393c45552fc14e8210470f4e9e5f0ff61c23728 688Author: Gaetan Nadon <memsize@videotron.ca> 689Date: Thu Oct 22 12:34:15 2009 -0400 690 691 .gitignore: use common defaults with custom section # 24239 692 693 Using common defaults will reduce errors and maintenance. 694 Only the very small or inexistent custom section need periodic maintenance 695 when the structure of the component changes. Do not edit defaults. 696 697commit c02e64f7a2cc1a59fb24b6c3bf125dd177d20ed9 698Author: Alan Coopersmith <alan.coopersmith@sun.com> 699Date: Thu Oct 1 14:54:22 2009 -0700 700 701 Add README with pointers to mailing lists, bugzilla, & git 702 703 Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com> 704 705commit 9eed454db87e3d1956298558b8595d4fddd85d05 706Author: Paulo Cesar Pereira de Andrade <pcpa@mandriva.com.br> 707Date: Tue Jan 13 17:18:26 2009 -0200 708 709 Ansification and compile warning fixes. 710 711 This also uses XORG_CHANGELOG and XORG_CWARNFLAGS, corrects 712 make distcheck and all gcc 4.3 and sparse warnings. 713 714commit a73267ed9bca410a83fd2a9ff3bcc0b659804295 715Author: James Cloos <cloos@jhcloos.com> 716Date: Wed Aug 20 10:32:50 2008 -0400 717 718 xaw8 is gone, use xaw7 719 720commit 698cffe8f81447969cf5bab75fff41c0e24d0939 721Author: Jeremy Huddleston <jeremyhu@freedesktop.org> 722Date: Thu Mar 27 20:32:09 2008 -0700 723 724 Added missing AM_PROG_CC_C_O 725 726commit 4ce9072751ab49742a5c1e56846540edd20ade9a 727Author: Jeremy Huddleston <jeremyhu@freedesktop.org> 728Date: Thu Mar 27 20:07:57 2008 -0700 729 730 Build fix for file systems that are not case sensitive 731 732commit 0d6dfa2a57288c749ca84d105644c12ddc3019ec 733Author: James Cloos <cloos@jhcloos.com> 734Date: Thu Dec 6 16:37:11 2007 -0500 735 736 Replace static ChangeLog with dist-hook to generate from git log 737 738commit 96ac95a860acd786cf592057ff1dbf3aff54e12d 739Author: James Cloos <cloos@jhcloos.com> 740Date: Mon Sep 3 05:51:18 2007 -0400 741 742 Add *~ to .gitignore to skip patch/emacs droppings 743 744commit ab06b0738229e92404e4ebce74fcc49e8ea9baff 745Author: James Cloos <cloos@jhcloos.com> 746Date: Thu Aug 23 19:24:42 2007 -0400 747 748 Rename .cvsignore to .gitignore 749 750commit fa5bac56eaa4d1b220be9482758f44d658df8657 751Author: Kevin E Martin <kem@kem.org> 752Date: Wed Dec 21 02:29:49 2005 +0000 753 754 Update package version for X11R7 release. 755 756commit 50b53649ad329f1a5c038deeeafe681924b6eddd 757Author: Adam Jackson <ajax@nwnk.net> 758Date: Mon Dec 19 16:22:43 2005 +0000 759 760 Stub COPYING files 761 762commit d0ecfe6cdfe672b1340ecb1d14b97922a375f91a 763Author: Kevin E Martin <kem@kem.org> 764Date: Thu Dec 15 00:24:05 2005 +0000 765 766 Update package version number for final X11R7 release candidate. 767 768commit 7dfe2ee4c0312d7ca924d77c09098ca5b4948b3b 769Author: Kevin E Martin <kem@kem.org> 770Date: Wed Dec 7 16:17:59 2005 +0000 771 772 Change to use the app-defaults default dir configured in libXt. 773 774commit 66a5572e4d49de7366d9cb6586cfdb4a41e6aa6a 775Author: Kevin E Martin <kem@kem.org> 776Date: Tue Dec 6 22:48:20 2005 +0000 777 778 Change *man_SOURCES ==> *man_PRE to fix autotools warnings. 779 780commit e069c91ac9d5919779dabaaf238a73997cb39411 781Author: Kevin E Martin <kem@kem.org> 782Date: Sat Dec 3 05:49:19 2005 +0000 783 784 Update package version number for X11R7 RC3 release. 785 786commit 837f6e226dfcc1f08669c2a9353706f51c06948e 787Author: Alan Coopersmith <Alan.Coopersmith@sun.com> 788Date: Mon Nov 28 22:01:40 2005 +0000 789 790 Change *mandir targets to use new *_MAN_DIR variables set by xorg-macros.m4 791 update to fix bug #5167 (Linux prefers *.1x man pages in man1 subdir) 792 793commit 86c3aed84692ba2e8abba4e71e095be1c74a1472 794Author: Eric Anholt <anholt@freebsd.org> 795Date: Mon Nov 21 10:34:59 2005 +0000 796 797 Another pass at .cvsignores for apps. 798 799commit a2aaf98c495e0898320085deca662a5352fc6df4 800Author: Eric Anholt <anholt@freebsd.org> 801Date: Sun Nov 20 22:08:51 2005 +0000 802 803 Add/improve .cvsignore files for apps. 804 805commit 98a90f8714b490e32e5a5c9ab95028e0bb877e05 806Author: Kevin E Martin <kem@kem.org> 807Date: Wed Oct 19 02:47:53 2005 +0000 808 809 Update package version number for RC1 release. 810 811commit 6dbb0ac2ad3435721cdbd9e556010926e04379f9 812Author: Alan Coopersmith <Alan.Coopersmith@sun.com> 813Date: Tue Oct 18 00:32:54 2005 +0000 814 815 Change default install dir for app-default files from 816 $(sysconfdir)/X11/app-defaults to $(libdir)/X11/app-defaults to match 817 the monolith & allow localization 818 819commit da0f86782a9172bf23efe514adf2025b936c626e 820Author: Alan Coopersmith <Alan.Coopersmith@sun.com> 821Date: Mon Oct 17 23:56:21 2005 +0000 822 823 Use @APP_MAN_SUFFIX@ instead of $(APP_MAN_SUFFIX) in macro substitutions to 824 work better with BSD make 825 826commit 59535c605a073db09aa1c08a93d056b1b9bd90a9 827Author: Alan Coopersmith <Alan.Coopersmith@sun.com> 828Date: Fri Oct 14 00:25:44 2005 +0000 829 830 Use sed to fill in variables in man page 831 832commit 7cc94256cfb6146ea03f37bcc710f9177032d979 833Author: Alan Coopersmith <Alan.Coopersmith@sun.com> 834Date: Sun Oct 2 19:35:49 2005 +0000 835 836 Add ldblarrow & rdblarrow bitmaps to xditview 837 838commit 2e789b84345923e0718985ed91de1ffe715a0d72 839Author: Alan Coopersmith <Alan.Coopersmith@sun.com> 840Date: Mon Aug 1 20:25:29 2005 +0000 841 842 Install man pages to section 1 instead of section m (Patch from Donnie 843 Berkholz) 844 845commit 8ad58e473b58679bf73128e1396bbd40b4116d93 846Author: Kevin E Martin <kem@kem.org> 847Date: Fri Jul 29 21:22:31 2005 +0000 848 849 Various changes preparing packages for RC0: 850 - Verify and update package version numbers as needed 851 - Implement versioning scheme 852 - Change bug address to point to bugzilla bug entry form 853 - Disable loadable i18n in libX11 by default (use --enable-loadable-i18n to 854 reenable it) 855 - Fix makedepend to use pkgconfig and pass distcheck 856 - Update build script to build macros first 857 - Update modular Xorg version 858 859commit f962df222c7d88dae609679a3fd7dc8bb892c869 860Author: Alan Coopersmith <Alan.Coopersmith@sun.com> 861Date: Tue Jul 26 15:44:02 2005 +0000 862 863 Replace more GNU make-ism's with more portable macros 864 865commit f9a1705a1ff8b5a585bbc04925519992b4c09523 866Author: Adam Jackson <ajax@nwnk.net> 867Date: Wed Jul 20 19:31:52 2005 +0000 868 869 Use a unique token for PKG_CHECK_MODULES. Otherwise, if you use a global 870 configure cache, you cache it, and the cached value is probably wrong. 871 872commit 8f71071ec06b471378321afe3980cb80de111621 873Author: Alan Coopersmith <Alan.Coopersmith@sun.com> 874Date: Sat Jul 16 22:07:13 2005 +0000 875 876 Add #ifdef HAVE_CONFIG_H/#include "config.h" to files that need it to get 877 HAS_MKSTEMP defined in modular builds. 878 879commit d2835ed1c92ed5504455831e861a33b9ebedee7e 880Author: Alan Coopersmith <Alan.Coopersmith@sun.com> 881Date: Sat Jul 16 22:00:11 2005 +0000 882 883 Convert more app-defaults rules to work with non-GNU make 884 885commit 783f6b29ef8cfa45394847eea56362073f552b30 886Author: Alan Coopersmith <Alan.Coopersmith@sun.com> 887Date: Sat Jul 16 21:59:14 2005 +0000 888 889 Define HAS_MKSTEMP if mkstemp() is present (needed for improved protection 890 against tempfile race conditions in many places) 891 892commit a72338b2f0fef721d6388d292ece4b21f19e9def 893Author: Søren Sandmann Pedersen <sandmann@daimi.au.dk> 894Date: Wed Jul 6 19:53:30 2005 +0000 895 896 Build system for xditview 897 898commit f6f89b92dce48d65da1e89debbf15b1ff8b727de 899Author: Egbert Eich <eich@suse.de> 900Date: Fri Apr 23 19:54:42 2004 +0000 901 902 Merging XORG-CURRENT into trunk 903 904commit b932978399dfc078e0216ec6073f237a60ed32fe 905Author: Egbert Eich <eich@suse.de> 906Date: Sun Mar 14 08:35:11 2004 +0000 907 908 Importing vendor version xf86-4_4_99_1 on Sun Mar 14 00:26:39 PST 2004 909 910commit 7d1befb96b2874812e59335b3a560ed1f3c063c3 911Author: Egbert Eich <eich@suse.de> 912Date: Wed Mar 3 12:13:00 2004 +0000 913 914 Importing vendor version xf86-4_4_0 on Wed Mar 3 04:09:24 PST 2004 915 916commit 436d9f6ea33a815a21d7066354a3a6e317901057 917Author: Egbert Eich <eich@suse.de> 918Date: Thu Feb 26 13:36:17 2004 +0000 919 920 readding XFree86's cvs IDs 921 922commit 24d49e45544894cd22fd5fd11145805ccfe88ccc 923Author: Egbert Eich <eich@suse.de> 924Date: Thu Feb 26 09:24:00 2004 +0000 925 926 Importing vendor version xf86-4_3_99_903 on Wed Feb 26 01:21:00 PST 2004 927 928commit c355698ae0f02fcc49a528d57a2070d9b0c64fba 929Author: Kaleb Keithley <kaleb@freedesktop.org> 930Date: Tue Nov 25 19:29:11 2003 +0000 931 932 XFree86 4.3.99.16 Bring the tree up to date for the Cygwin folks 933 934commit de89577b3dd6b405e2fd274afb20eea8dcc651c9 935Author: Kaleb Keithley <kaleb@freedesktop.org> 936Date: Fri Nov 14 16:49:21 2003 +0000 937 938 XFree86 4.3.0.1 939 940commit 84735728ed5f6a07d87254860e2776775c54b85b 941Author: Kaleb Keithley <kaleb@freedesktop.org> 942Date: Fri Nov 14 16:49:21 2003 +0000 943 944 Initial revision 945