1 commit b2b611960b5f11740cb3ca66c6dcd0a3688a82ae 2 Author: Alan Coopersmith <alan.coopersmith (a] oracle.com> 3 Date: Sat Oct 15 09:53:33 2022 -0700 4 5 viewres 1.0.7 6 7 Signed-off-by: Alan Coopersmith <alan.coopersmith (a] oracle.com> 8 9 commit 04afb2de50ff3f7d074299a83f70ba779502eac6 10 Author: Alan Coopersmith <alan.coopersmith (a] oracle.com> 11 Date: Sat Sep 10 14:26:28 2022 -0700 12 13 Add .git-blame-ignore-revs to hide whitespace commits from git blame 14 15 To use this in your local repo clone, you will need to either run 16 `git blame --ignore-revs-file .git-blame-ignore-revs` 17 or set it permanently with 18 `git config blame.ignoreRevsFile .git-blame-ignore-revs` 19 20 Signed-off-by: Alan Coopersmith <alan.coopersmith (a] oracle.com> 21 22 commit 7c75ce13299af68b73563714ca366f891f6a9eb8 23 Author: Alan Coopersmith <alan.coopersmith (a] oracle.com> 24 Date: Sat Sep 10 14:13:58 2022 -0700 25 26 set_node_labels: move dereference of node to after the NULL check 27 28 Found by cppcheck: 29 30 viewres.c:815:22: warning: Either the condition '!node' is redundant or there is possible null pointer dereference: node. [nullPointerRedundantCheck] 31 ViewresData *d = VData(node); 32 ^ 33 viewres.c:817:9: note: Assuming that condition '!node' is not redundant 34 if (!node) 35 ^ 36 viewres.c:815:22: note: Null pointer dereference 37 ViewresData *d = VData(node); 38 ^ 39 40 Signed-off-by: Alan Coopersmith <alan.coopersmith (a] oracle.com> 41 42 commit 73f73d21c22b0220403bc036c6175fb7c2bfafee 43 Author: Alan Coopersmith <alan.coopersmith (a] oracle.com> 44 Date: Sun Aug 14 12:07:10 2022 -0700 45 46 Variable scope reductions as suggested by cppcheck 47 48 Signed-off-by: Alan Coopersmith <alan.coopersmith (a] oracle.com> 49 50 commit 49c9ace57166a4014fafa36ff5cb373846a9b4cf 51 Author: Alan Coopersmith <alan.coopersmith (a] oracle.com> 52 Date: Sun Aug 14 11:54:50 2022 -0700 53 54 Remove obsolete casts on calloc & malloc calls 55 56 Not needed in C89 and later 57 58 Signed-off-by: Alan Coopersmith <alan.coopersmith (a] oracle.com> 59 60 commit f03145544e4390e0bcd462ac5c154a4c474c46ee 61 Author: Alan Coopersmith <alan.coopersmith (a] oracle.com> 62 Date: Sun Aug 14 11:47:02 2022 -0700 63 64 Apply X.Org standard coding style 65 66 Signed-off-by: Alan Coopersmith <alan.coopersmith (a] oracle.com> 67 68 commit 3eca4f7fa432b21db94429cfa8b9c4c71dfeebfd 69 Author: Alan Coopersmith <alan.coopersmith (a] oracle.com> 70 Date: Sat Apr 2 12:59:54 2022 -0700 71 72 man page: remove out-of-date COPYRIGHT section 73 74 The information previously listed here didn't match what is present in 75 the source code or the COPYING file, and the X(7) man page doesn't list 76 any license information as this had claimed. 77 78 Signed-off-by: Alan Coopersmith <alan.coopersmith (a] oracle.com> 79 80 commit baf57b3540ff5a23ecfb3f6c37726cd13875ae95 81 Author: Alan Coopersmith <alan.coopersmith (a] oracle.com> 82 Date: Sat Dec 4 10:27:12 2021 -0800 83 84 Build xz tarballs instead of bzip2 85 86 Signed-off-by: Alan Coopersmith <alan.coopersmith (a] oracle.com> 87 88 commit 89f7c7eb3501abf4506b7374d9f4f45c0f2e990d 89 Author: Alan Coopersmith <alan.coopersmith (a] oracle.com> 90 Date: Sat Dec 4 10:27:08 2021 -0800 91 92 gitlab CI: add a basic build test 93 94 Signed-off-by: Alan Coopersmith <alan.coopersmith (a] oracle.com> 95 96 commit 5661dfdc04572cdbb6ed4e641049657c4ba39252 97 Author: Alan Coopersmith <alan.coopersmith (a] oracle.com> 98 Date: Sun Aug 25 16:11:01 2019 -0700 99 100 viewres 1.0.6 101 102 Signed-off-by: Alan Coopersmith <alan.coopersmith (a] oracle.com> 103 104 commit 85f2a20e7535a5f8dcdeb805f3e30f387d45baf3 105 Author: Alan Coopersmith <alan.coopersmith (a] oracle.com> 106 Date: Sat Jun 8 19:20:26 2019 -0700 107 108 Fix -Wshadow warnings 109 110 viewres.c: In function select_callback: 111 viewres.c:620:18: warning: declaration of node shadows a previous local [-Wshadow] 112 XmuWidgetNode *node = selected_list.elements[i]; 113 ^~~~ 114 viewres.c:593:20: note: shadowed declaration is here 115 XmuWidgetNode *node; 116 ^~~~ 117 viewres.c:658:18: warning: declaration of node shadows a previous local [-Wshadow] 118 XmuWidgetNode *node = selected_list.elements[i]; 119 ^~~~ 120 viewres.c:593:20: note: shadowed declaration is here 121 XmuWidgetNode *node; 122 ^~~~ 123 124 Signed-off-by: Alan Coopersmith <alan.coopersmith (a] oracle.com> 125 126 commit 917269949545cf1ab1e0068cc2ba7c1f9a775012 127 Author: Alan Coopersmith <alan.coopersmith (a] oracle.com> 128 Date: Sat Jun 8 19:16:53 2019 -0700 129 130 Fix -Wsign-compare warnings 131 132 viewres.c: In function set_resource_labels: 133 viewres.c:313:19: warning: comparison between signed and unsigned integer expressions [-Wsign-compare] 134 for (i = 0; i < node->nresources; i++, res++, wn++) { 135 ^ 136 viewres.c:329:19: warning: comparison between signed and unsigned integer expressions [-Wsign-compare] 137 for (i = 0; i < node->nconstraints; i++, res++, wn++) { 138 ^ 139 140 Signed-off-by: Alan Coopersmith <alan.coopersmith (a] oracle.com> 141 142 commit f846695df6b5d9543e12d1c8f04d9d7575df1ac6 143 Author: Alan Coopersmith <alan.coopersmith (a] oracle.com> 144 Date: Sat Jun 8 19:15:34 2019 -0700 145 146 Pass -D_CONST_X_STRING to make libXt declare String as const char * 147 148 Clears up 32 of 38 gcc -Wdiscarded-qualifiers warnings 149 150 Signed-off-by: Alan Coopersmith <alan.coopersmith (a] oracle.com> 151 152 commit 74bd63d6e6768f96c3e6fc2b692a5b012edbcea3 153 Author: Alan Coopersmith <alan.coopersmith (a] oracle.com> 154 Date: Wed Nov 21 16:58:21 2018 -0800 155 156 Update configure.ac bug URL for gitlab migration 157 158 Signed-off-by: Alan Coopersmith <alan.coopersmith (a] oracle.com> 159 160 commit 8ee2177d894c91a4a864b5b182705d72055e0090 161 Author: Alan Coopersmith <alan.coopersmith (a] oracle.com> 162 Date: Fri Nov 16 20:55:55 2018 -0800 163 164 Update README for gitlab migration 165 166 Signed-off-by: Alan Coopersmith <alan.coopersmith (a] oracle.com> 167 168 commit 3b72d922ec82789124d43ef11e601a2f1e620458 169 Author: Alan Coopersmith <alan.coopersmith (a] oracle.com> 170 Date: Sun Mar 4 19:38:27 2018 -0800 171 172 viewres 1.0.5 173 174 Signed-off-by: Alan Coopersmith <alan.coopersmith (a] oracle.com> 175 176 commit 4548245c9f97c6349ea650dac13b5fde71c10915 177 Author: Mihail Konev <k.mvc (a] ya.ru> 178 Date: Thu Jan 26 14:00:20 2017 +1000 179 180 autogen: add default patch prefix 181 182 Signed-off-by: Mihail Konev <k.mvc (a] ya.ru> 183 184 commit 70861277c434f59bbb3c0aa28b73453f9182c847 185 Author: Emil Velikov <emil.l.velikov (a] gmail.com> 186 Date: Mon Mar 9 12:00:52 2015 +0000 187 188 autogen.sh: use quoted string variables 189 190 Place quotes around the $srcdir, $ORIGDIR and $0 variables to prevent 191 fall-outs, when they contain space. 192 193 Signed-off-by: Emil Velikov <emil.l.velikov (a] gmail.com> 194 Reviewed-by: Peter Hutterer <peter.hutterer (a] who-t.net> 195 Signed-off-by: Peter Hutterer <peter.hutterer (a] who-t.net> 196 197 commit ac126cce29dea04fc17d0ba8fb5d3ac5e6a79073 198 Author: Peter Hutterer <peter.hutterer (a] who-t.net> 199 Date: Tue Jan 24 10:32:07 2017 +1000 200 201 autogen.sh: use exec instead of waiting for configure to finish 202 203 Syncs the invocation of configure with the one from the server. 204 205 Signed-off-by: Peter Hutterer <peter.hutterer (a] who-t.net> 206 Reviewed-by: Emil Velikov <emil.velikov (a] collabora.com> 207 208 commit 9a151ffc889ca30450c55da6153640eb38494034 209 Author: Alan Coopersmith <alan.coopersmith (a] oracle.com> 210 Date: Mon Jun 2 22:07:41 2014 -0700 211 212 autogen.sh: Honor NOCONFIGURE=1 213 214 See http://people.gnome.org/~walters/docs/build-api.txt 215 216 Signed-off-by: Alan Coopersmith <alan.coopersmith (a] oracle.com> 217 218 commit 8cd8aed273e3c37e0f1b3a520531bbfe7914e429 219 Author: Alan Coopersmith <alan.coopersmith (a] oracle.com> 220 Date: Mon Jun 2 22:07:41 2014 -0700 221 222 configure: Drop AM_MAINTAINER_MODE 223 224 Signed-off-by: Alan Coopersmith <alan.coopersmith (a] oracle.com> 225 226 commit acac63fea06d4fc937b606a20881528fc61baca0 227 Author: Alan Coopersmith <alan.coopersmith (a] oracle.com> 228 Date: Mon Jun 2 22:07:36 2014 -0700 229 230 config: Add missing AC_CONFIG_SRCDIR 231 232 Regroup AC statements under the Autoconf initialization section. 233 Regroup AM statements under the Automake initialization section. 234 235 Signed-off-by: Alan Coopersmith <alan.coopersmith (a] oracle.com> 236 237 commit a64768656016688f64934e51d52c2d8a7165226f 238 Author: Alan Coopersmith <alan.coopersmith (a] oracle.com> 239 Date: Sat Jan 12 16:19:31 2013 -0800 240 241 viewres 1.0.4 242 243 Signed-off-by: Alan Coopersmith <alan.coopersmith (a] oracle.com> 244 245 commit 7b677ecec00a714cdfde423cad210540ce1222d4 246 Author: Eric S. Raymond <esr (a] thyrsus.com> 247 Date: Thu Aug 23 11:51:45 2012 -0400 248 249 Eliminate use of tab stops. Helps with structural translation to DocBook. 250 251 Signed-off-by: Eric S. Raymond <esr (a] thyrsus.com> 252 253 commit 17fae9c20496a6f3e59abcc30e59d604aa809fed 254 Author: Gaetan Nadon <memsize (a] videotron.ca> 255 Date: Wed Jan 19 10:06:55 2011 -0500 256 257 config: move man pages into their own directory 258 259 Use services provided by XORG_MANPAGE_SECTIONS. 260 Use standard Makefile for man pages. 261 262 Signed-off-by: Gaetan Nadon <memsize (a] videotron.ca> 263 264 commit 5523785a9d17d06a0b3ad9b7c11249625ae5ce2d 265 Author: Gaetan Nadon <memsize (a] videotron.ca> 266 Date: Thu Jan 13 17:15:36 2011 -0500 267 268 man: replace hard coded man page section with substitution strings 269 270 Signed-off-by: Gaetan Nadon <memsize (a] videotron.ca> 271 272 commit 3f2a98f38d8148784cafae46c1a42b0f6c9fc05a 273 Author: Gaetan Nadon <memsize (a] videotron.ca> 274 Date: Thu Jan 13 11:15:47 2011 -0500 275 276 man: remove trailing spaces and tabs 277 278 Using s/[ \t]*$// 279 280 Signed-off-by: Gaetan Nadon <memsize (a] videotron.ca> 281 282 commit 61272b9b95b44422065ad0be82ea4f0b8e098535 283 Author: Gaetan Nadon <memsize (a] videotron.ca> 284 Date: Wed Jan 12 16:28:02 2011 -0500 285 286 config: replace deprecated AM_CONFIG_HEADER with AC_CONFIG_HEADERS 287 288 This silences an Autoconf warning 289 290 commit c6d38d69bf645860e50066ce74839808aaa35bea 291 Author: Gaetan Nadon <memsize (a] videotron.ca> 292 Date: Wed Jan 12 15:29:49 2011 -0500 293 294 config: replace deprecated AC_HELP_STRING with AS_HELP_STRING 295 296 This silences an Automake warning. 297 298 Signed-off-by: Gaetan Nadon <memsize (a] videotron.ca> 299 300 commit a9c50ba456bb60d3ecb4c74cf9a7e3e2b4965e65 301 Author: Alan Coopersmith <alan.coopersmith (a] oracle.com> 302 Date: Sat Oct 30 15:17:31 2010 -0700 303 304 viewres 1.0.3 305 306 Signed-off-by: Alan Coopersmith <alan.coopersmith (a] oracle.com> 307 308 commit 6feac70d18949d787aa7b9aa7911c3dfd757fa94 309 Author: Alan Coopersmith <alan.coopersmith (a] oracle.com> 310 Date: Sat Oct 30 15:15:07 2010 -0700 311 312 config: Remove unnecessary calls from configure.ac 313 314 AC_PROG_CC & AC_PROG_INSTALL are provided by XORG_DEFAULT_OPTIONS now 315 PKG_CONFIG_MODULES handles AC_SUBST of the CFLAGS & LIBS variables 316 317 Signed-off-by: Alan Coopersmith <alan.coopersmith (a] oracle.com> 318 319 commit 0f94067e5185bda3f9f56937ad777bf62fd46d18 320 Author: Gaetan Nadon <memsize (a] videotron.ca> 321 Date: Sat Oct 30 15:14:40 2010 -0700 322 323 config: update AC_PREREQ statement to 2.60 324 325 Unrelated to the previous patches, the new value simply reflects 326 the reality that the minimum level for autoconf to configure 327 all x.org modules is 2.60 dated June 2006. 328 329 ftp://ftp.gnu.org/gnu/autoconf/autoconf-2.60.tar.gz 330 331 Signed-off-by: Gaetan Nadon <memsize (a] videotron.ca> 332 Signed-off-by: Alan Coopersmith <alan.coopersmith (a] oracle.com> 333 334 commit eb5d2cb97c8c77ca625685c813ffc22795262358 335 Author: Alan Coopersmith <alan.coopersmith (a] oracle.com> 336 Date: Thu Jul 1 16:17:56 2010 -0700 337 338 viewres calls Xmu functions directly so include it in PKG_CHECK_MODULES 339 340 Signed-off-by: Alan Coopersmith <alan.coopersmith (a] oracle.com> 341 342 commit 3cdcd33384ae8a5885a38d932d3ad6f48e782c26 343 Author: Alan Coopersmith <alan.coopersmith (a] oracle.com> 344 Date: Wed Jun 30 23:25:03 2010 -0700 345 346 config: upgrade to util-macros 1.8 for additional man page support 347 348 Use MAN_SUBST now supplied in XORG_MANPAGE_SECTIONS 349 The value of MAN_SUBST is the same for all X.Org packages. 350 351 Use AC_PROG_SED now supplied by XORG_DEFAULT_OPTIONS 352 The existing statement can now be removed from the configuration file. 353 354 Use XORG_DEFAULT_OPTIONS provided $(SED) 355 Use platform appropriate version of sed. 356 357 Signed-off-by: Alan Coopersmith <alan.coopersmith (a] oracle.com> 358 359 commit 44b1029b8c28c50768e08651b736c7137ce885df 360 Author: Gaetan Nadon <memsize (a] videotron.ca> 361 Date: Thu Feb 11 10:08:06 2010 -0500 362 363 config: move CWARNFLAGS from configure.ac to Makefile.am 364 365 Compiler warning flags should be explicitly set in the makefile 366 rather than being merged with other packages compiler flags. 367 368 Signed-off-by: Gaetan Nadon <memsize (a] videotron.ca> 369 370 commit 4d72e30530e1ff768999d495aa8c82e8691eaaec 371 Author: Gaetan Nadon <memsize (a] videotron.ca> 372 Date: Sat Dec 19 20:48:47 2009 -0500 373 374 configure.ac: use backticks rather than $() for cmd subs 375 376 Use "$PKG_CONFIG" rather than hard coded "pkg-config" 377 378 Signed-off-by: Gaetan Nadon <memsize (a] videotron.ca> 379 380 commit bb1b70f140f31d17d7ec4744afa379bdd744bcb0 381 Author: Alan Coopersmith <alan.coopersmith (a] sun.com> 382 Date: Wed Dec 16 18:30:22 2009 -0800 383 384 viewres 1.0.2 385 386 Signed-off-by: Alan Coopersmith <alan.coopersmith (a] sun.com> 387 388 commit 73417d5e4b158484a73d082eedcc5ac7534b3f41 389 Author: Alan Coopersmith <alan.coopersmith (a] sun.com> 390 Date: Wed Dec 16 18:29:51 2009 -0800 391 392 Fill in COPYING file with notices from viewres.c & viewres.man 393 394 Signed-off-by: Alan Coopersmith <alan.coopersmith (a] sun.com> 395 396 commit 16db2ab4794064c970177cdce2bfcf94febda94c 397 Author: Alan Coopersmith <alan.coopersmith (a] sun.com> 398 Date: Wed Dec 16 18:26:55 2009 -0800 399 400 Silence sed substitutions in make output 401 402 Signed-off-by: Alan Coopersmith <alan.coopersmith (a] sun.com> 403 404 commit d1698a27d92e1cd81d64328b3013d204e8443982 405 Author: Gaetan Nadon <memsize (a] videotron.ca> 406 Date: Thu Nov 26 09:19:52 2009 -0500 407 408 Makefile.am: add ChangeLog and INSTALL on MAINTAINERCLEANFILES 409 410 Now that the INSTALL file is generated. 411 Allows running make maintainer-clean. 412 413 commit 151c8608aa168f491efd48011392178ed69b601c 414 Author: Gaetan Nadon <memsize (a] videotron.ca> 415 Date: Wed Oct 28 14:09:08 2009 -0400 416 417 INSTALL, NEWS, README or AUTHORS files are missing/incorrect #24206 418 419 Add missing INSTALL file. Use standard GNU file on building tarball 420 README may have been updated 421 Remove AUTHORS file as it is empty and no content available yet. 422 Remove NEWS file as it is empty and no content available yet. 423 424 commit f9167714247e877ae0aa6243984e9ea5e2be7420 425 Author: Gaetan Nadon <memsize (a] videotron.ca> 426 Date: Tue Oct 27 15:07:24 2009 -0400 427 428 Deploy the new XORG_DEFAULT_OPTIONS #24242 429 430 This macro aggregate a number of existing macros that sets commmon 431 X.Org components configuration options. It shields the configuration file from 432 future changes. 433 434 commit 6d6ec7b0ac3d15c24962f302bd28c351bbb46655 435 Author: Gaetan Nadon <memsize (a] videotron.ca> 436 Date: Mon Oct 26 22:08:38 2009 -0400 437 438 Makefile.am: ChangeLog not required: EXTRA_DIST or *CLEANFILES #24432 439 440 ChangeLog filename is known to Automake and requires no further 441 coding in the makefile. 442 443 commit f4f359646572e59cb94ab6f6e0174923499559f4 444 Author: Gaetan Nadon <memsize (a] videotron.ca> 445 Date: Thu Oct 22 12:34:14 2009 -0400 446 447 .gitignore: use common defaults with custom section # 24239 448 449 Using common defaults will reduce errors and maintenance. 450 Only the very small or inexistent custom section need periodic maintenance 451 when the structure of the component changes. Do not edit defaults. 452 453 commit 050b035b8bb98abe6592222fcb238b8217254def 454 Author: Alan Coopersmith <alan.coopersmith (a] sun.com> 455 Date: Thu Oct 1 14:54:20 2009 -0700 456 457 Add README with pointers to mailing lists, bugzilla, & git 458 459 Signed-off-by: Alan Coopersmith <alan.coopersmith (a] sun.com> 460 461 commit 1399da8a60d684a802effc055be6351d1b87612a 462 Author: Paulo Cesar Pereira de Andrade <pcpa (a] mandriva.com.br> 463 Date: Mon Jan 19 18:42:22 2009 -0200 464 465 Add a simple Viewres-color file 466 467 Only grayscale values used. 468 469 commit 8f1476657baae54dcca998c01bd4ffe0233a6ba2 470 Author: Paulo Cesar Pereira de Andrade <pcpa (a] mandriva.com.br> 471 Date: Mon Jan 19 18:40:18 2009 -0200 472 473 Ansification and compile warning fixes. 474 475 This also uses XORG_CHANGELOG and XORG_CWARNFLAGS, corrects 476 make distcheck and all gcc 4.3 and sparse warnings. 477 478 commit 8906fd92f85710d6d7eceac2fb5955e8c56eadcd 479 Author: Peter Breitenlohner <peb (a] mppmu.mpg.de> 480 Date: Mon Nov 10 19:51:13 2008 +0100 481 482 enable VPATH build, reorganize app default files 483 484 commit 24c03bd379eb02abb5cfd88ce51a3a6714112d2f 485 Author: James Cloos <cloos (a] jhcloos.com> 486 Date: Wed Aug 20 10:32:49 2008 -0400 487 488 xaw8 is gone, use xaw7 489 490 commit 600b0945d6b6718fb670b8f0ded2a6d3995ef596 491 Author: Julien Cristau <jcristau (a] debian.org> 492 Date: Sun Apr 20 18:59:46 2008 +0200 493 494 Use AM_CFLAGS instead of viewres_CFLAGS and remove AM_PROG_CC_C_O 495 496 commit 2995e47455e19d8dad7541ac27818c074c0ed8c8 497 Author: Jeremy Huddleston <jeremyhu (a] freedesktop.org> 498 Date: Thu Mar 27 20:22:43 2008 -0700 499 500 Added missing AM_PROG_CC_C_O 501 502 commit 95d17a0414df671b74463264ddc31ed685c5c466 503 Author: Jeremy Huddleston <jeremyhu (a] freedesktop.org> 504 Date: Thu Mar 27 20:07:32 2008 -0700 505 506 Build fix for file systems that are not case sensitive 507 508 commit ce9bab5b851484d943c5130c47624e96f8eb626d 509 Author: James Cloos <cloos (a] jhcloos.com> 510 Date: Thu Dec 6 16:37:08 2007 -0500 511 512 Replace static ChangeLog with dist-hook to generate from git log 513 514 commit c5eebfbdd00a5b36688d29f88835e2383b97d896 515 Author: James Cloos <cloos (a] jhcloos.com> 516 Date: Mon Sep 3 05:51:14 2007 -0400 517 518 Add *~ to .gitignore to skip patch/emacs droppings 519 520 commit 8a01d8bcd3e4916fb808dc6c30c5588ba79fb4e8 521 Author: James Cloos <cloos (a] jhcloos.com> 522 Date: Thu Aug 23 19:24:39 2007 -0400 523 524 Rename .cvsignore to .gitignore 525 526 commit f1733a2d6cb985d1fdb884fd82d5baaa622cb1c8 527 Author: Kevin E Martin <kem (a] kem.org> 528 Date: Wed Dec 21 02:29:48 2005 +0000 529 530 Update package version for X11R7 release. 531 532 commit b55117b16debee5bf96a81352857ac5bafc8cd7f 533 Author: Adam Jackson <ajax (a] nwnk.net> 534 Date: Mon Dec 19 16:22:42 2005 +0000 535 536 Stub COPYING files 537 538 commit 582a85e035a6579c998b24ffb1a11a9639df5c1b 539 Author: Kevin E Martin <kem (a] kem.org> 540 Date: Thu Dec 15 00:24:04 2005 +0000 541 542 Update package version number for final X11R7 release candidate. 543 544 commit b5ad05b072fdbaa48cc4f6b8cb69007fd2661fa5 545 Author: Kevin E Martin <kem (a] kem.org> 546 Date: Wed Dec 7 16:17:58 2005 +0000 547 548 Change to use the app-defaults default dir configured in libXt. 549 550 commit 18957fc0a71ac7eef82a7338bc68e28cf994e1a1 551 Author: Kevin E Martin <kem (a] kem.org> 552 Date: Tue Dec 6 22:48:19 2005 +0000 553 554 Change *man_SOURCES ==> *man_PRE to fix autotools warnings. 555 556 commit 168ab66feb8eb387afc81cbb2f8f699bbc96a999 557 Author: Kevin E Martin <kem (a] kem.org> 558 Date: Sat Dec 3 05:49:18 2005 +0000 559 560 Update package version number for X11R7 RC3 release. 561 562 commit 78dc233c3e7f6903febac88e2aa40429a795ffc4 563 Author: Alan Coopersmith <Alan.Coopersmith (a] sun.com> 564 Date: Mon Nov 28 22:01:39 2005 +0000 565 566 Change *mandir targets to use new *_MAN_DIR variables set by xorg-macros.m4 567 update to fix bug #5167 (Linux prefers *.1x man pages in man1 subdir) 568 569 commit 21bf6fe203c429419d6959b8ed73f1bc3bf3f078 570 Author: Eric Anholt <anholt (a] freebsd.org> 571 Date: Mon Nov 21 10:34:58 2005 +0000 572 573 Another pass at .cvsignores for apps. 574 575 commit 8f348ed9a500cbc265913e8fad23b4d96bcb05ee 576 Author: Eric Anholt <anholt (a] freebsd.org> 577 Date: Sun Nov 20 22:08:50 2005 +0000 578 579 Add/improve .cvsignore files for apps. 580 581 commit 0657c3fe9ee02925ed17b05c4c4ed2b6a0b39c67 582 Author: Kevin E Martin <kem (a] kem.org> 583 Date: Wed Oct 19 02:47:50 2005 +0000 584 585 Update package version number for RC1 release. 586 587 commit 822c3c270bc81705f5ca29c48e2883f0b10a2710 588 Author: Alan Coopersmith <Alan.Coopersmith (a] sun.com> 589 Date: Tue Oct 18 00:32:54 2005 +0000 590 591 Change default install dir for app-default files from 592 $(sysconfdir)/X11/app-defaults to $(libdir)/X11/app-defaults to match 593 the monolith & allow localization 594 595 commit b09ef81f1c0598ffdcb5f98cf4f438aa2118b048 596 Author: Alan Coopersmith <Alan.Coopersmith (a] sun.com> 597 Date: Mon Oct 17 23:56:21 2005 +0000 598 599 Use @APP_MAN_SUFFIX@ instead of $(APP_MAN_SUFFIX) in macro substitutions to 600 work better with BSD make 601 602 commit 6a1fe480cf6f7e1a5fc2f8a6c404843f2655af1d 603 Author: Alan Coopersmith <Alan.Coopersmith (a] sun.com> 604 Date: Fri Oct 14 00:25:42 2005 +0000 605 606 Use sed to fill in variables in man page 607 608 commit 14c4f695a1d952afb8b325d05d7f9b7a5b01bb00 609 Author: Alan Coopersmith <Alan.Coopersmith (a] sun.com> 610 Date: Mon Aug 1 20:25:28 2005 +0000 611 612 Install man pages to section 1 instead of section m (Patch from Donnie 613 Berkholz) 614 615 commit 2274ee2690e5fd48926797a160a4aa2179b484b8 616 Author: Kevin E Martin <kem (a] kem.org> 617 Date: Fri Jul 29 21:22:30 2005 +0000 618 619 Various changes preparing packages for RC0: 620 - Verify and update package version numbers as needed 621 - Implement versioning scheme 622 - Change bug address to point to bugzilla bug entry form 623 - Disable loadable i18n in libX11 by default (use --enable-loadable-i18n to 624 reenable it) 625 - Fix makedepend to use pkgconfig and pass distcheck 626 - Update build script to build macros first 627 - Update modular Xorg version 628 629 commit f83c93bf9a84b944a524aab82be25ca50d240211 630 Author: Alan Coopersmith <Alan.Coopersmith (a] sun.com> 631 Date: Tue Jul 26 15:44:01 2005 +0000 632 633 Replace more GNU make-ism's with more portable macros 634 635 commit cb31d8afa9cafc1b1a841f3c5b1803b13b6702d1 636 Author: Adam Jackson <ajax (a] nwnk.net> 637 Date: Wed Jul 20 19:31:51 2005 +0000 638 639 Use a unique token for PKG_CHECK_MODULES. Otherwise, if you use a global 640 configure cache, you cache it, and the cached value is probably wrong. 641 642 commit a6905c610f37091082698d50fec19e688d74db27 643 Author: Matthieu Herrb <matthieu.herrb (a] laas.fr> 644 Date: Sun Jul 17 20:11:01 2005 +0000 645 646 fix rules to work with non-GNU make and outside of $srcdir 647 648 commit ce1447d0a8b2a7fc3a36f11eed69cd14be397ffe 649 Author: Sren Sandmann Pedersen <sandmann (a] daimi.au.dk> 650 Date: Wed Jun 29 19:22:16 2005 +0000 651 652 Build system for viewres 653 654 commit 697d851cbb7703eae3e3b7041a091c216a241c7a 655 Author: Egbert Eich <eich (a] suse.de> 656 Date: Fri Apr 23 19:54:38 2004 +0000 657 658 Merging XORG-CURRENT into trunk 659 660 commit 291eb594bce4ccdc13424c0301271e586a203c25 661 Author: Egbert Eich <eich (a] suse.de> 662 Date: Sun Mar 14 08:34:58 2004 +0000 663 664 Importing vendor version xf86-4_4_99_1 on Sun Mar 14 00:26:39 PST 2004 665 666 commit 668ebdeb0f4b09b24dd0ce4e56dfc4df885a838c 667 Author: Egbert Eich <eich (a] suse.de> 668 Date: Wed Mar 3 12:12:54 2004 +0000 669 670 Importing vendor version xf86-4_4_0 on Wed Mar 3 04:09:24 PST 2004 671 672 commit ad60b37dea3d8aa56f287c61fb54382b86b95400 673 Author: Egbert Eich <eich (a] suse.de> 674 Date: Thu Feb 26 13:36:16 2004 +0000 675 676 readding XFree86's cvs IDs 677 678 commit 97444432dc8dbc4f5a3512ef06f3f2d8ebad93a4 679 Author: Egbert Eich <eich (a] suse.de> 680 Date: Thu Feb 26 09:23:58 2004 +0000 681 682 Importing vendor version xf86-4_3_99_903 on Wed Feb 26 01:21:00 PST 2004 683 684 commit 5f3e41c55cbfa5a58fc9c4f2861266c94e458c77 685 Author: Kaleb Keithley <kaleb (a] freedesktop.org> 686 Date: Tue Nov 25 19:29:03 2003 +0000 687 688 XFree86 4.3.99.16 Bring the tree up to date for the Cygwin folks 689 690 commit 7aaa7f8641e6306fa9f1fff7dbddcef73adf68ce 691 Author: Kaleb Keithley <kaleb (a] freedesktop.org> 692 Date: Fri Nov 14 16:48:58 2003 +0000 693 694 XFree86 4.3.0.1 695 696 commit 4f7fca9509be5580057f836498b6aa12fe7cd4b1 697 Author: Kaleb Keithley <kaleb (a] freedesktop.org> 698 Date: Fri Nov 14 16:48:58 2003 +0000 699 700 Initial revision 701