ChangeLog revision ed89697e
1commit 6d773b98f4a7ed7ca3f981f1aabad1f2873e3d6e 2Author: Alan Coopersmith <alan.coopersmith@oracle.com> 3Date: Sat Feb 3 14:44:38 2024 -0800 4 5 xmore 1.0.4 6 7 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 8 9commit 80cfd749eb786776713d9004d28cc184b32c5380 10Author: Alan Coopersmith <alan.coopersmith@oracle.com> 11Date: Tue Sep 26 17:54:22 2023 -0700 12 13 Fix spelling/wording issues 14 15 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 16 17commit 133e08eb45fcff0c8d39e38babb979e1f1c0c2e3 18Author: Alan Coopersmith <alan.coopersmith@oracle.com> 19Date: Tue Sep 26 17:47:35 2023 -0700 20 21 Handle clang -Wunused-parameter warnings 22 23 xmore.c:117:31: warning: unused parameter 'event' [-Wunused-parameter] 24 quitAction(Widget w, XEvent *event, String *params, Cardinal *num_params) 25 ^ 26 xmore.c:117:46: warning: unused parameter 'params' [-Wunused-parameter] 27 quitAction(Widget w, XEvent *event, String *params, Cardinal *num_params) 28 ^ 29 xmore.c:117:64: warning: unused parameter 'num_params' [-Wunused-parameter] 30 quitAction(Widget w, XEvent *event, String *params, Cardinal *num_params) 31 ^ 32 xmore.c:123:32: warning: unused parameter 'client_data' [-Wunused-parameter] 33 quitXtProc(Widget w, XtPointer client_data, XtPointer callData) 34 ^ 35 xmore.c:123:55: warning: unused parameter 'callData' [-Wunused-parameter] 36 quitXtProc(Widget w, XtPointer client_data, XtPointer callData) 37 ^ 38 39 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 40 41commit 88ec82664a95715bf6958462ad810e2da077394c 42Author: Alan Coopersmith <alan.coopersmith@oracle.com> 43Date: Tue Sep 26 17:40:32 2023 -0700 44 45 Handle clang -Wunused-macros warnings 46 47 xmore.c:55:9: warning: macro is not used [-Wunused-macros] 48 #define Error(x) { printf x ; exit(EXIT_FAILURE); } 49 ^ 50 xmore.c:56:9: warning: macro is not used [-Wunused-macros] 51 #define Assertion(expr, msg) { if (!(expr)) { Error msg } } 52 ^ 53 xmore.c:53:9: warning: macro is not used [-Wunused-macros] 54 #define NULLSTR(x) (((x)!=NULL)?(x):("")) 55 ^ 56 xmore.c:57:9: warning: macro is not used [-Wunused-macros] 57 #define Log(x) { if (userOptions.verbose) printf x; } 58 ^ 59 60 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 61 62commit 38c72bc8abf651cbc0ebffcc0d0da10d0bcaf7a5 63Author: Alan Coopersmith <alan.coopersmith@oracle.com> 64Date: Tue Sep 26 17:32:10 2023 -0700 65 66 Handle clang -Wmissing-noreturn warning 67 68 xmore.c:137:1: warning: function 'usage' could be declared with 69 attribute 'noreturn' [-Wmissing-noreturn] 70 71 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 72 73commit 76bf671666c5d5626287788df4e1e5ea9be7dbb2 74Author: Alan Coopersmith <alan.coopersmith@oracle.com> 75Date: Sat Feb 11 16:50:24 2023 -0800 76 77 Add -help and -version options 78 79 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 80 81commit 5c022b0f411e6cd7c35f2905b77fe2a1df2cd760 82Author: Alan Coopersmith <alan.coopersmith@oracle.com> 83Date: Sat Feb 11 16:42:43 2023 -0800 84 85 Print which arguments were unknown before giving usage message 86 87 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 88 89commit c00677ee7745532fc20027f6e67481f1ed1b5e9f 90Author: Alan Coopersmith <alan.coopersmith@oracle.com> 91Date: Thu Jul 28 17:30:21 2022 -0700 92 93 gitlab CI: stop requiring Signed-off-by in commits 94 95 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 96 97commit 6ef82d7d3c12dca6dc24c43465bfafc1a96027a7 98Author: Alan Coopersmith <alan.coopersmith@oracle.com> 99Date: Tue Dec 7 12:42:02 2021 -0800 100 101 Build xz tarballs instead of bzip2 102 103 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 104 105commit cd63cf35b75c298ba9c8d67673054ff9c00507d6 106Author: Alan Coopersmith <alan.coopersmith@oracle.com> 107Date: Tue Dec 7 12:42:00 2021 -0800 108 109 gitlab CI: add a basic build test 110 111 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 112 113commit f1d979d7a304113ab5df35971c440e6a76761ad9 114Author: Samy Mahmoudi <samy.mahmoudi@gmail.com> 115Date: Wed Mar 6 03:44:03 2019 +0100 116 117 COPYING: set license information 118 119 Based on code headers. 120 121commit 2e08823f494fed631a6e8b2d96f9cb37dba6e480 122Author: Alan Coopersmith <alan.coopersmith@oracle.com> 123Date: Sun Mar 3 13:08:40 2019 -0800 124 125 xmore 1.0.3 126 127 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 128 129commit 413abc88ab348523552c6e9b6608d61f7a43904b 130Author: Alan Coopersmith <alan.coopersmith@oracle.com> 131Date: Wed Nov 21 17:16:28 2018 -0800 132 133 Update configure.ac bug URL for gitlab migration 134 135 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 136 137commit 09c20611c1acd04e1fc47bd70ce4d4c2c2f15d76 138Author: Alan Coopersmith <alan.coopersmith@oracle.com> 139Date: Fri Nov 16 22:43:36 2018 -0800 140 141 Update README for gitlab migration 142 143 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 144 145commit eec4604d764a1ed37815012ca1f2c9fba44cdebd 146Author: Emil Velikov <emil.l.velikov@gmail.com> 147Date: Mon Mar 9 12:00:52 2015 +0000 148 149 autogen.sh: use quoted string variables 150 151 Place quotes around the $srcdir, $ORIGDIR and $0 variables to prevent 152 fall-outs, when they contain space. 153 154 Signed-off-by: Emil Velikov <emil.l.velikov@gmail.com> 155 Reviewed-by: Peter Hutterer <peter.hutterer@who-t.net> 156 Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net> 157 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 158 159commit 0fd9c024c1a3d837b460d8b7a978f057867c74cf 160Author: Peter Hutterer <peter.hutterer@who-t.net> 161Date: Tue Jan 24 10:32:07 2017 +1000 162 163 autogen.sh: use exec instead of waiting for configure to finish 164 165 Syncs the invocation of configure with the one from the server. 166 167 Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net> 168 Reviewed-by: Emil Velikov <emil.velikov@collabora.com> 169 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 170 171commit d407ce86fa7a1402eb6d12895a5e97a6ffd3478a 172Author: Alan Coopersmith <alan.coopersmith@oracle.com> 173Date: Sat May 31 23:36:28 2014 -0700 174 175 autogen.sh: Honor NOCONFIGURE=1 176 177 See http://people.gnome.org/~walters/docs/build-api.txt 178 179 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 180 181commit 4168dad45e494982e77b4ed4021313de4d010612 182Author: Alan Coopersmith <alan.coopersmith@oracle.com> 183Date: Sat May 31 23:36:28 2014 -0700 184 185 configure: Drop AM_MAINTAINER_MODE 186 187 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 188 189commit 29d7efd4856aee5578e47684c6aafc1fe47690c2 190Author: Mihail Konev <k.mvc@ya.ru> 191Date: Thu Jan 26 14:00:21 2017 +1000 192 193 autogen: add default patch prefix 194 195 Signed-off-by: Mihail Konev <k.mvc@ya.ru> 196 197commit 3d6277359bd6633238f7043a799f1cf0c6793d3b 198Author: Gaetan Nadon <memsize@videotron.ca> 199Date: Sat Jun 18 10:04:11 2011 -0400 200 201 man page: add __xorgversion__ which was just missing. 202 203 Signed-off-by: Gaetan Nadon <memsize@videotron.ca> 204 205commit e0f87cad8fb25c0ad04032a3d8b57e1a16c2f8ad 206Author: Gaetan Nadon <memsize@videotron.ca> 207Date: Wed Jan 19 10:06:56 2011 -0500 208 209 config: move man pages into their own directory 210 211 Use services provided by XORG_MANPAGE_SECTIONS. 212 Use standard Makefile for man pages. 213 214 Signed-off-by: Gaetan Nadon <memsize@videotron.ca> 215 216commit 8327e05aeeaf57e5a57bbd22920817498c57979d 217Author: Gaetan Nadon <memsize@videotron.ca> 218Date: Thu Jan 13 11:15:48 2011 -0500 219 220 man: remove trailing spaces and tabs 221 222 Using s/[ \t]*$// 223 224 Signed-off-by: Gaetan Nadon <memsize@videotron.ca> 225 226commit b1c040bc30e7a1265d92e2f163eef86a149d20a2 227Author: Gaetan Nadon <memsize@videotron.ca> 228Date: Wed Jan 12 16:28:02 2011 -0500 229 230 config: replace deprecated AM_CONFIG_HEADER with AC_CONFIG_HEADERS 231 232 This silences an Autoconf warning 233 234commit 3ea3f45e8829de2ff5ae3b1bb1ea188af91d80f8 235Author: Gaetan Nadon <memsize@videotron.ca> 236Date: Wed Jan 12 15:29:50 2011 -0500 237 238 config: replace deprecated AC_HELP_STRING with AS_HELP_STRING 239 240 This silences an Automake warning. 241 242 Signed-off-by: Gaetan Nadon <memsize@videotron.ca> 243 244commit a43a582cee97b5c09d272cddf41cba46d8dfcaf3 245Author: Gaetan Nadon <memsize@videotron.ca> 246Date: Wed Jan 12 11:54:40 2011 -0500 247 248 config: use AC_PROG_INSTALL now supplied by XORG_DEFAULT_OPTIONS 249 250 It depends on util-macros 1.8 or later 251 The existing statement can now be removed from the configuration file. 252 253 Signed-off-by: Gaetan Nadon <memsize@videotron.ca> 254 255commit 110abb05bd389f99d9f53c9a95234a8d6d59bec1 256Author: Gaetan Nadon <memsize@videotron.ca> 257Date: Fri Aug 27 20:53:12 2010 -0400 258 259 Change xmore DocBook XML file extension from .sgml to .xml 260 261 This file is used as the input format for the man page. 262 263 Signed-off-by: Gaetan Nadon <memsize@videotron.ca> 264 265commit 999895eddb00cb535802409a46795c363b8d2422 266Author: Alan Coopersmith <alan.coopersmith@oracle.com> 267Date: Fri Jul 23 15:51:09 2010 -0700 268 269 xmore 1.0.2 270 271 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 272 273commit 4772e37779221c32cd9aedf253c5d0097551b63e 274Author: Alan Coopersmith <alan.coopersmith@oracle.com> 275Date: Fri Jul 23 14:14:06 2010 -0700 276 277 Remove several unnecessary macros from configure.ac 278 279 PKG_CHECK_MODULES automatically calls AC_SUBST on the CFLAGS & LIBS 280 variables it sets 281 282 XORG_STRICT_OPTION from XORG_DEFAULT_OPTIONS calls 283 AC_PROG_C_C99. This sets gcc with -std=gnu99. 284 If AC_PROG_CC macro is called afterwards, it resets CC to gcc. 285 286 AM_PROG_CC_C_O is not needed since we are not compiling multiple targets 287 with differing CFLAGS. 288 289 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 290 291commit d5ee44e818b58ad7b2eba005a024cc60720787d8 292Author: Alan Coopersmith <alan.coopersmith@oracle.com> 293Date: Fri Jul 23 14:08:38 2010 -0700 294 295 config: update AC_PREREQ statement to 2.60 296 297 Unrelated to the previous patches, the new value simply reflects 298 the reality that the minimum level for autoconf to configure 299 all x.org modules is 2.60 dated June 2006. 300 301 ftp://ftp.gnu.org/gnu/autoconf/autoconf-2.60.tar.gz 302 303 (Copied from commits to other modules by Gaetan Nadon <memsize@videotron.ca>) 304 305 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 306 307commit 0c2c7bb1951b258b61ec0cd9990adfad32814a52 308Author: Alan Coopersmith <alan.coopersmith@oracle.com> 309Date: Fri Jul 23 14:04:11 2010 -0700 310 311 config: upgrade to util-macros 1.8 for additional man page support 312 313 Use MAN_SUBST now supplied in XORG_MANPAGE_SECTIONS 314 The value of MAN_SUBST is the same for all X.Org packages. 315 316 Use AC_PROG_SED now supplied by XORG_DEFAULT_OPTIONS 317 The existing statement can now be removed from the configuration file. 318 319 Use automake provided $(AM_V_GEN) and XORG_DEFAULT_OPTIONS provided $(SED) 320 Enables silent rule and use platform appropriate version of sed. 321 322 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 323 324commit 4a4187b8ce272e96b760e1e59da980644e99aa0b 325Author: Gaetan Nadon <memsize@videotron.ca> 326Date: Thu Feb 11 10:08:07 2010 -0500 327 328 config: move CWARNFLAGS from configure.ac to Makefile.am 329 330 Compiler warning flags should be explicitly set in the makefile 331 rather than being merged with other packages compiler flags. 332 333 Signed-off-by: Gaetan Nadon <memsize@videotron.ca> 334 335commit 47a2b341aeb6182dc3288850c7a27f36fb436863 336Author: Gaetan Nadon <memsize@videotron.ca> 337Date: Sat Dec 19 20:48:48 2009 -0500 338 339 configure.ac: use backticks rather than $() for cmd subs 340 341 Use "$PKG_CONFIG" rather than hard coded "pkg-config" 342 343 Signed-off-by: Gaetan Nadon <memsize@videotron.ca> 344 345commit 7cf288c20a86151592d62e037cb196b190bf50be 346Author: Gaetan Nadon <memsize@videotron.ca> 347Date: Thu Nov 26 09:19:54 2009 -0500 348 349 Makefile.am: add ChangeLog and INSTALL on MAINTAINERCLEANFILES 350 351 Now that the INSTALL file is generated. 352 Allows running make maintainer-clean. 353 354commit 561a214d1399ba661fc873e310a1ec8cfdf0fd95 355Author: Gaetan Nadon <memsize@videotron.ca> 356Date: Wed Oct 28 14:09:08 2009 -0400 357 358 INSTALL, NEWS, README or AUTHORS files are missing/incorrect #24206 359 360 Add missing INSTALL file. Use standard GNU file on building tarball 361 README may have been updated 362 Remove AUTHORS file as it is empty and no content available yet. 363 Remove NEWS file as it is empty and no content available yet. 364 365commit 1c5982f33817afbc8d004e97ca803f995f9f9473 366Author: Gaetan Nadon <memsize@videotron.ca> 367Date: Tue Oct 27 15:07:25 2009 -0400 368 369 Deploy the new XORG_DEFAULT_OPTIONS #24242 370 371 This macro aggregate a number of existing macros that sets commmon 372 X.Org components configuration options. It shields the configuration file from 373 future changes. 374 375commit 3d5641c03c3d7fe2eeb5980f8a13bdb450be947e 376Author: Gaetan Nadon <memsize@videotron.ca> 377Date: Mon Oct 26 22:08:39 2009 -0400 378 379 Makefile.am: ChangeLog not required: EXTRA_DIST or *CLEANFILES #24432 380 381 ChangeLog filename is known to Automake and requires no further 382 coding in the makefile. 383 384commit b80c24ac28999a1d760eee75e2173ff7e8f8e885 385Author: Gaetan Nadon <memsize@videotron.ca> 386Date: Thu Oct 22 12:34:16 2009 -0400 387 388 .gitignore: use common defaults with custom section # 24239 389 390 Using common defaults will reduce errors and maintenance. 391 Only the very small or inexistent custom section need periodic maintenance 392 when the structure of the component changes. Do not edit defaults. 393 394commit 1ed0b44715c812c7d067841d68e2057944341d5f 395Author: Alan Coopersmith <alan.coopersmith@sun.com> 396Date: Thu Oct 1 14:54:28 2009 -0700 397 398 Add README with pointers to mailing lists, bugzilla, & git 399 400 Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com> 401 402commit ab8110b8978cb965d49e0c2e9c1cb7e7608c185e 403Author: Paulo Cesar Pereira de Andrade <pcpa@mandriva.com.br> 404Date: Thu Jan 22 16:49:25 2009 -0200 405 406 Correct make distcheck and sparse warnings. 407 408commit 747f76737a8e7a7f50bd06fd111e5ada8305884d 409Author: Julien Cristau <jcristau@debian.org> 410Date: Sun Nov 16 21:49:56 2008 +0100 411 412 More xprint pruning 413 414commit d9b5448a77ff3ee06f6128faa69f43066cd16fe1 415Author: Julien Cristau <jcristau@debian.org> 416Date: Thu Aug 21 00:46:51 2008 +0200 417 418 Fix build outside of source dir 419 420commit 7739b19df6a7eba2c35fc34688c40d64a65b79f5 421Author: Julien Cristau <jcristau@debian.org> 422Date: Thu Aug 21 00:42:51 2008 +0200 423 424 Build fix: remove xprint remnants 425 426commit 56ff9e213249bbdc0ecd3b5e7e4cffee60f46ef4 427Author: James Cloos <cloos@jhcloos.com> 428Date: Wed Aug 20 10:32:52 2008 -0400 429 430 xaw8 is gone, use xaw7 431 432commit a85334f153e05119f237ff412a2ff15dce95878d 433Author: Jeremy Huddleston <jeremyhu@freedesktop.org> 434Date: Thu Mar 27 20:29:51 2008 -0700 435 436 Added missing AM_PROG_CC_C_O 437 438commit 8bd714835159aa32a64343a8dc41684d7c36ab43 439Author: Jeremy Huddleston <jeremyhu@freedesktop.org> 440Date: Thu Mar 27 20:07:52 2008 -0700 441 442 Build fix for file systems that are not case sensitive 443 444commit 851f5e3eaedeb6a5bcc4d1f1b669e4b11dbf3687 445Author: James Cloos <cloos@jhcloos.com> 446Date: Thu Dec 6 16:37:25 2007 -0500 447 448 Replace static ChangeLog with dist-hook to generate from git log 449 450commit 8c718d9c360963defae4d056555394fc4d53c81a 451Author: James Cloos <cloos@jhcloos.com> 452Date: Mon Sep 3 05:51:38 2007 -0400 453 454 Add *~ to .gitignore to skip patch/emacs droppings 455 456commit 4a01239ff7c89c56f5dfd5ec5c963422b6dd7184 457Author: James Cloos <cloos@jhcloos.com> 458Date: Thu Aug 23 19:25:02 2007 -0400 459 460 Rename .cvsignore to .gitignore 461 462commit b9d4d0d8877d3c1c69752e0ff4215cdb3d0742d5 463Author: Kevin E Martin <kem@kem.org> 464Date: Wed Dec 21 02:29:52 2005 +0000 465 466 Update package version for X11R7 release. 467 468commit bdc49004296438983d568e0e1bfc3e70e6cadac4 469Author: Adam Jackson <ajax@nwnk.net> 470Date: Mon Dec 19 16:22:46 2005 +0000 471 472 Stub COPYING files 473 474commit 5adf875ac8a1b27b512a796a85f0ed65119385ee 475Author: Kevin E Martin <kem@kem.org> 476Date: Thu Dec 15 00:24:09 2005 +0000 477 478 Update package version number for final X11R7 release candidate. 479 480commit 94c9195eb246474480643c62dd4c5e9e3d610a39 481Author: Kevin E Martin <kem@kem.org> 482Date: Wed Dec 7 16:18:01 2005 +0000 483 484 Change to use the app-defaults default dir configured in libXt. 485 486commit f427001cd1f3efdafa06c381c38fd5a4449b76f2 487Author: Kevin E Martin <kem@kem.org> 488Date: Tue Dec 6 22:48:24 2005 +0000 489 490 Change *man_SOURCES ==> *man_PRE to fix autotools warnings. 491 492commit 5c4880cca850794b05539c21a3a6dfe1531b801b 493Author: Kevin E Martin <kem@kem.org> 494Date: Sat Dec 3 05:49:26 2005 +0000 495 496 Update package version number for X11R7 RC3 release. 497 498commit 6805b1f303fad5c194fd76b9208a981c80b7c7fc 499Author: Alan Coopersmith <Alan.Coopersmith@sun.com> 500Date: Mon Nov 28 22:01:45 2005 +0000 501 502 Change *mandir targets to use new *_MAN_DIR variables set by xorg-macros.m4 503 update to fix bug #5167 (Linux prefers *.1x man pages in man1 subdir) 504 505commit adbc0b1f5584ecbce974446419deb9f76fd486d2 506Author: Eric Anholt <anholt@freebsd.org> 507Date: Mon Nov 21 10:35:05 2005 +0000 508 509 Another pass at .cvsignores for apps. 510 511commit 320a3eb6449b73b2963c3e63ef1a8078b194c992 512Author: Eric Anholt <anholt@freebsd.org> 513Date: Sun Nov 20 22:08:54 2005 +0000 514 515 Add/improve .cvsignore files for apps. 516 517commit 508f26ba0ba5de6936cf9aec782c2f36114be43b 518Author: Alan Coopersmith <Alan.Coopersmith@sun.com> 519Date: Sun Nov 20 04:13:45 2005 +0000 520 521 Add dependency on xp module when building with Xprint support. 522 523commit 5789d54ef03c4dc59faff86084ba7b0eaf79cda5 524Author: Kevin E Martin <kem@kem.org> 525Date: Wed Oct 19 02:47:56 2005 +0000 526 527 Update package version number for RC1 release. 528 529commit b6bc1985f3241a1e8bf4896ddc0ba62cc8d52bbb 530Author: Alan Coopersmith <Alan.Coopersmith@sun.com> 531Date: Tue Oct 18 00:32:55 2005 +0000 532 533 Change default install dir for app-default files from 534 $(sysconfdir)/X11/app-defaults to $(libdir)/X11/app-defaults to match 535 the monolith & allow localization 536 537commit 8a0d8f1a09e3f9f81cd3a254bf129dfb194631c0 538Author: Alan Coopersmith <Alan.Coopersmith@sun.com> 539Date: Mon Oct 17 23:56:24 2005 +0000 540 541 Use @APP_MAN_SUFFIX@ instead of $(APP_MAN_SUFFIX) in macro substitutions to 542 work better with BSD make 543 544commit 339f76a32a41635dda213807baaf163e80305a49 545Author: Alan Coopersmith <Alan.Coopersmith@sun.com> 546Date: Fri Oct 14 00:25:47 2005 +0000 547 548 Use sed to fill in variables in man page 549 550commit 6b9309358a8f2901e30cf4dab5d91d405ee44ff4 551Author: Kevin E Martin <kem@kem.org> 552Date: Wed Oct 5 00:01:35 2005 +0000 553 554 Add xmore.sgml to EXTRA_DIST 555 556commit 634f48bc62e069913e64ded9e068a9fab03f9cb9 557Author: Alan Coopersmith <Alan.Coopersmith@sun.com> 558Date: Mon Aug 1 20:25:31 2005 +0000 559 560 Install man pages to section 1 instead of section m (Patch from Donnie 561 Berkholz) 562 563commit 9c8de9a0c760ce9d06b8593182e0fab89890d229 564Author: Kevin E Martin <kem@kem.org> 565Date: Fri Jul 29 21:22:36 2005 +0000 566 567 Various changes preparing packages for RC0: 568 - Verify and update package version numbers as needed 569 - Implement versioning scheme 570 - Change bug address to point to bugzilla bug entry form 571 - Disable loadable i18n in libX11 by default (use --enable-loadable-i18n to 572 reenable it) 573 - Fix makedepend to use pkgconfig and pass distcheck 574 - Update build script to build macros first 575 - Update modular Xorg version 576 577commit 3aa8309ba62e1a445663c458c0132d0b70c66d66 578Author: Alan Coopersmith <Alan.Coopersmith@sun.com> 579Date: Tue Jul 26 15:44:03 2005 +0000 580 581 Replace more GNU make-ism's with more portable macros 582 583commit eaae9a052fc7eec785e6fc8cf2011ea963030a5b 584Author: Matthieu Herrb <matthieu.herrb@laas.fr> 585Date: Sat Jul 23 16:56:33 2005 +0000 586 587 fix GNU-make only app-defaults rule 588 589commit f63f6eb288ab5b518525e31407f1be1514cf72e7 590Author: Matthieu Herrb <matthieu.herrb@laas.fr> 591Date: Sat Jul 23 16:56:07 2005 +0000 592 593 fix remaining DEP_{CFLAGS,LIBS} refenences 594 595commit f9a60649a815c42cd5ebd9e24dbbb12d62fd90de 596Author: Adam Jackson <ajax@nwnk.net> 597Date: Wed Jul 20 19:32:03 2005 +0000 598 599 Use a unique token for PKG_CHECK_MODULES. Otherwise, if you use a global 600 configure cache, you cache it, and the cached value is probably wrong. 601 602commit bf280e7bc5d6e2c65ea0235fde208274a714d13b 603Author: Søren Sandmann Pedersen <sandmann@daimi.au.dk> 604Date: Tue Jul 5 22:51:11 2005 +0000 605 606 Add build systems for xlogo, xlsatoms, xlsclients, xmag, xman, xmessage, 607 xmh, xmore. lib/Xaw/xaw.m4: Add an AM_CONDITIONAL and a shell variable 608 xaw_use_xprint symlink.sh: add some extra files for xgc, xinit, 609 xkbcomp, xlogo, xmb, and xmodmap xc/programs/xmore/xmore.c: 610 Conditionalize use of xprint 611 612commit 8b721c45d8f8681e59ca145d1ed3839d1b312a99 613Author: Roland Mainz <roland.mainz@nrubsig.org> 614Date: Mon Apr 11 01:06:15 2005 +0000 615 616 xc/programs/Xserver/Xprint/attributes.c 617 xc/programs/glxgears/glxgears.c 618 xc/programs/xdbedizzy/xdbedizzy.c 619 xc/programs/xedit/Imakefile 620 xc/programs/xedit/Xedit-xprint.ad 621 xc/programs/xedit/util.c 622 xc/programs/xedit/xedit.h 623 xc/programs/xlogo/print.c 624 xc/programs/xlogo/xlogo.c 625 xc/programs/xlogo/xlogo.h 626 xc/programs/xman/Imakefile 627 xc/programs/xman/print.h 628 xc/programs/xmore/Imakefile 629 xc/programs/xmore/print.c 630 xc/programs/xmore/print.h 631 xc/programs/xmore/printdialog.c 632 xc/programs/xphelloworld/xpawhelloworld/xpawhelloworld.c 633 xc/programs/xphelloworld/xphelloworld/xphelloworld.c 634 xc/programs/xphelloworld/xpsimplehelloworld/xpsimplehelloworld.c 635 xc/programs/xphelloworld/xpxmhelloworld/xpxmhelloworld.c 636 //bugs.freedesktop.org/show_bug.cgi?id=790) attachment #2379 637 (https://bugs.freedesktop.org/attachment.cgi?id=2379) Implement support 638 client+Xserver support for passing output (stdout+stderr) of the 639 spooler command started by the Xprint server back to the application 640 using the "xp-spooler-command-results" XPJobAttr attribute 641 (applications can fetch the attribute value after the XPEndJobNotify 642 event was received; more details can be found in 643 http://xprint.mozdev.org/docs/dtprint_fspec.ps). 644 645commit 3d9fdcb47537e924e7426d64d838c00414ec58ff 646Author: Roland Mainz <roland.mainz@nrubsig.org> 647Date: Tue Feb 1 23:00:50 2005 +0000 648 649 xc/programs/xmore/xmore.man 650 //bugs.freedesktop.org/show_bug.cgi?id=2410) attachment #1786 651 (https://bugs.freedesktop.org/attachment.cgi?id=1786): Fix formatting 652 problem in the xmore(1x) manual page. Patch by Matthieu Herrb 653 <matthieu.herrb@laas.fr> and Roland Mainz <roland.mainz@nrubsig.org>. 654 Approved in the 2005-01-31 Xorg release-wranglers phone call (the 655 xmore.man diff is an automatic update from the DocBook--->man 656 conversion). 657 658commit 550802b584f89279d8af35ee8a9221dc24ea1f27 659Author: Roland Mainz <roland.mainz@nrubsig.org> 660Date: Mon Jan 3 01:06:36 2005 +0000 661 662 xc/lib/XprintAppUtil/xpapputil.c 663 xc/lib/XprintAppUtil/xpapputil.h 664 xc/lib/XprintUtil/xprintutil.c 665 xc/lib/XprintUtil/xprintutil.h 666 xc/programs/glxgears/glxgears.c 667 xc/programs/xdbedizzy/xdbedizzy.c 668 xc/programs/xedit/Xedit-xprint.ad 669 xc/programs/xedit/commands.c 670 xc/programs/xlogo/print.c 671 xc/programs/xlsfonts/xlsfonts.c 672 xc/programs/xlsfonts/xlsfonts.man 673 xc/programs/xlsfonts/xlsfonts.sgml 674 xc/programs/xman/Xman-xprint.ad 675 xc/programs/xman/handler.c 676 xc/programs/xman/print.c 677 xc/programs/xman/print.h 678 xc/programs/xmore/XMore.ad 679 xc/programs/xmore/print.c 680 xc/programs/xmore/print.h 681 xc/programs/xmore/printdialog.c 682 xc/programs/xmore/printdialog.h 683 xc/programs/xmore/printdialogprivates.h 684 xc/programs/xmore/xmore.c 685 xc/programs/xphelloworld/xpawhelloworld/xpawhelloworld.c 686 xc/programs/xphelloworld/xphelloworld/xphelloworld.c 687 xc/programs/xphelloworld/xpsimplehelloworld/xpsimplehelloworld.c 688 xc/programs/xphelloworld/xpxmhelloworld/xpxmhelloworld.c 689 xc/programs/xphelloworld/xpxthelloworld/xpxthelloworld.c 690 xc/programs/xplsprinters/xplsprinters.c 691 //bugs.freedesktop.org/show_bug.cgi?id=1706) attachment #1615 692 (https://bugs.freedesktop.org/attachment.cgi?id=1615): XprintUtils 693 2004/Q3 update. This adds various new features to the XprintUtils 694 library including support for page resolutions where 695 X_resolution!=Y_resolution, listfonts-mode control and initial 696 framework for the COLORSPACE extension. Patch by Roland Mainz 697 <roland.mainz@nrubsig.org> and Julien Lafon <julien.lafon@gmail.com>. 698 699commit 11d508e4bfec3ecd749123e043768ea3fb21ce12 700Author: Roland Mainz <roland.mainz@nrubsig.org> 701Date: Tue Oct 12 22:46:40 2004 +0000 702 703 Fix for https://freedesktop.org/bugzilla/show_bug.cgi?id=1601 - Fix 704 problems with wrong page counts in xedit&co. when a global "*geometry" 705 resource was overriding the internal geometry management used by 706 XawPrintShell(=usually adjust to current page size, the resource was 707 turning this into a static value). (Original patch by Felix Schulte 708 <felix.schulte@gmail.com>) 709 710commit 71eb560c323df9e78e1381eff41002f1df9cb44b 711Author: Roland Mainz <roland.mainz@nrubsig.org> 712Date: Thu Jul 29 00:40:35 2004 +0000 713 714 Fix for https://freedesktop.org/bugzilla/show_bug.cgi?id=938 - Update 715 XawPrintShell per feedback and review comments. 716 717commit a5c5bd828d0a89ab979ad122c40073e8985e5e6e 718Author: Roland Mainz <roland.mainz@nrubsig.org> 719Date: Tue Jun 8 02:44:35 2004 +0000 720 721 Fix for http://freedesktop.org/bugzilla/show_bug.cgi?id=668 - Add print 722 support to xman 723 724commit b041343bcf05fdf5ce4234655c869251b3f8fafa 725Author: Roland Mainz <roland.mainz@nrubsig.org> 726Date: Sun May 30 22:44:01 2004 +0000 727 728 Fix for http://freedesktop.org/bugzilla/show_bug.cgi?id=695 - Add print 729 support to Xedit 730 731commit 7b5bbd9057eba74e53ec0ed9a306e78a15bd96a8 732Author: Roland Mainz <roland.mainz@nrubsig.org> 733Date: Sun May 30 00:52:30 2004 +0000 734 735 Fix for http://freedesktop.org/bugzilla/show_bug.cgi?id=693 - XMore and 736 XawPrintDialog work-in-progress, fixing various problems and adding 737 framework for i18n. 738 739commit 62ad6298a589dd16820c7d0bbfcd2b5381a2589e 740Author: Roland Mainz <roland.mainz@nrubsig.org> 741Date: Mon May 24 03:17:44 2004 +0000 742 743 Fix for http://pdx.freedesktop.org/cgi-bin/bugzilla/show_bug.cgi?id=611 - 744 Adding simple text viewer (xmore) 745