1commit 7be3bb410ecc996ec6d76ced622439ac3334da62 2Author: Alan Coopersmith <alan.coopersmith@oracle.com> 3Date: Sun Apr 28 10:24:08 2024 -0700 4 5 xconsole 1.1.0 6 7 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 8 9commit ba41ed406510d2c88ba6bc97be16dc24c9621426 10Author: Alan Coopersmith <alan.coopersmith@oracle.com> 11Date: Sat Feb 17 13:11:48 2024 -0800 12 13 unifdef _AIX 14 15 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 16 17commit ba6892385cc20505bd20e807d37597e699571948 18Author: Alan Coopersmith <alan.coopersmith@oracle.com> 19Date: Sat Feb 17 13:10:24 2024 -0800 20 21 Remove ifdefs for non-Solaris SysV systems 22 23 Also removes USE_OSM which was only defined for these systems 24 25 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 26 27commit 5b1208eb8c2f21a07518a6757408faf30c98dfe2 28Author: Alan Coopersmith <alan.coopersmith@oracle.com> 29Date: Sat Feb 17 13:07:29 2024 -0800 30 31 unifdef SCO325 32 33 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 34 35commit 58c7c229abd0ee9cbf64feec7c01e97ff7db8e3c 36Author: Alan Coopersmith <alan.coopersmith@oracle.com> 37Date: Sat Feb 17 13:06:13 2024 -0800 38 39 unifdef __UNIXWARE__ 40 41 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 42 43commit 27e5b6bfc66cd25f4106a8933647db7c49e97505 44Author: Alan Coopersmith <alan.coopersmith@oracle.com> 45Date: Sat Feb 17 13:05:25 2024 -0800 46 47 unifdef hpux 48 49 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 50 51commit fb0222f988a54fa16a91b8028e5bf0204cc422c7 52Author: Alan Coopersmith <alan.coopersmith@oracle.com> 53Date: Sat Feb 17 13:04:55 2024 -0800 54 55 unifdef __hpux 56 57 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 58 59commit f3b3a43af011b2e98e6d4de54bce3b0e19e40a06 60Author: Alan Coopersmith <alan.coopersmith@oracle.com> 61Date: Sat Feb 18 14:37:03 2023 -0800 62 63 Allow scrolling in text area with mouse wheel 64 65 Previously translations for buttons 4 & 5 were only set for the 66 scrollbar, so required the mouse to be over the scrollbar to use 67 the mouse wheel. This enables the translations when the mouse is 68 over the text area as well. 69 70 Fixes: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=201994 71 72 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 73 74commit d2a382f55e646cb3ffedb47629911681006321b1 75Author: Alan Coopersmith <alan.coopersmith@oracle.com> 76Date: Sun Feb 5 10:04:09 2023 -0800 77 78 man page: resync SYNOPSIS and DESCRIPTION sections 79 80 Add missing options to both sections 81 82 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 83 84commit 2f5f53c0d9c7114231de026f772cdfc877d61e49 85Author: Alan Coopersmith <alan.coopersmith@oracle.com> 86Date: Sun Feb 5 09:48:05 2023 -0800 87 88 Add -help option and usage message when unknown options are given 89 90 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 91 92commit 851c85cba5ec8c0e59fba3aebed7c91e5711431b 93Author: Alan Coopersmith <alan.coopersmith@oracle.com> 94Date: Sun Feb 5 09:36:55 2023 -0800 95 96 Fix -version handling to not require opening a display first 97 98 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 99 100commit c19461e94f457173b06efa634d9eb540271ea6ae 101Author: Alan Coopersmith <alan.coopersmith@oracle.com> 102Date: Sat Jan 28 12:21:08 2023 -0800 103 104 Add -version option 105 106 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 107 108commit 9b8e87a0f7bbe5ae2772f2c8acc66e25880e80bf 109Author: Alan Coopersmith <alan.coopersmith@oracle.com> 110Date: Tue Dec 20 12:32:48 2022 -0800 111 112 configure: Use AC_SYS_LARGEFILE to enable large file support 113 114 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 115 116commit 025697278897648e33be6b5d662fbeda2a14871f 117Author: Alan Coopersmith <alan.coopersmith@oracle.com> 118Date: Sun Jul 10 15:07:08 2022 -0700 119 120 xconsole 1.0.8 121 122 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 123 124commit 6c8e22bcc450bcd6c0697fab4d89d99bae168b8c 125Author: Alan Coopersmith <alan.coopersmith@oracle.com> 126Date: Sat Apr 16 07:50:50 2022 -0700 127 128 gitlab CI: stop requiring Signed-off-by in commits 129 130 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 131 132commit a5a13a9eb0cb2ab0627192dce684ccb61e59678a 133Author: Alan Coopersmith <alan.coopersmith@oracle.com> 134Date: Fri Apr 8 08:29:40 2022 -0700 135 136 Reduce scope of ttydev & ptydev 137 138 Eliminates them completely if HAS_OPENPTY is set. 139 140 Resolves gcc warnings: 141 xconsole.c: In function ‘get_pty’: 142 xconsole.c:792:35: warning: declaration of ‘ttydev’ shadows a 143 global declaration [-Wshadow] 144 get_pty(int *pty, int *tty, char *ttydev, char *ptydev) 145 ^~~~~~ 146 xconsole.c:181:13: note: shadowed declaration is here 147 static char ttydev[64], ptydev[64]; 148 ^~~~~~ 149 xconsole.c:792:49: warning: declaration of ‘ptydev’ shadows a 150 global declaration [-Wshadow] 151 get_pty(int *pty, int *tty, char *ttydev, char *ptydev) 152 ^~~~~~ 153 xconsole.c:181:25: note: shadowed declaration is here 154 static char ttydev[64], ptydev[64]; 155 ^~~~~~ 156 157 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 158 159commit c374939e9e2cf36fcb6aa1984a472d73b05a821d 160Author: Alan Coopersmith <alan.coopersmith@oracle.com> 161Date: Thu Apr 7 18:17:32 2022 -0700 162 163 unifdef sgi 164 165 SGI Irix end of support life was in 2013 166 167 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 168 169commit a223524f5f4b62cf8bd85bd7467314629de93a9a 170Author: Alan Coopersmith <alan.coopersmith@oracle.com> 171Date: Thu Apr 7 18:08:23 2022 -0700 172 173 Use _CONST_X_STRING to make libXt declare String as const char * 174 175 Clears 18 out of 44 -Wdiscarded-qualifiers warnings from gcc 176 177 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 178 179commit 85a37c5a06633022723cd44a3d8d35cd317e1c53 180Author: Alan Coopersmith <alan.coopersmith@oracle.com> 181Date: Sat Dec 4 11:27:53 2021 -0800 182 183 Build xz tarballs instead of bzip2 184 185 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 186 187commit 32c9d454a20b4c55b08b27f06f9c4da239153a31 188Author: Alan Coopersmith <alan.coopersmith@oracle.com> 189Date: Sat Dec 4 11:27:51 2021 -0800 190 191 gitlab CI: add a basic build test 192 193 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 194 195commit cfc99aa8eb3beb9da60e14240c6edf3e43eee859 196Author: Alan Coopersmith <alan.coopersmith@oracle.com> 197Date: Wed Nov 21 17:00:33 2018 -0800 198 199 Update configure.ac bug URL for gitlab migration 200 201 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 202 203commit 2e23fd38e1cb43d552ad6e27f491a2550bc3cea4 204Author: Alan Coopersmith <alan.coopersmith@oracle.com> 205Date: Fri Nov 16 21:20:23 2018 -0800 206 207 Update README for gitlab migration 208 209 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 210 211commit 61318786d4c171423cea84071da1bc7ab1a36427 212Author: Matt Turner <mattst88@gmail.com> 213Date: Sun Jan 29 11:17:53 2017 -0800 214 215 xconsole 1.0.7 216 217 Signed-off-by: Matt Turner <mattst88@gmail.com> 218 219commit 73b530c4843bf0c6712b954cdfb5edc46e759ed8 220Author: Mihail Konev <k.mvc@ya.ru> 221Date: Thu Jan 26 14:00:20 2017 +1000 222 223 autogen: add default patch prefix 224 225 Signed-off-by: Mihail Konev <k.mvc@ya.ru> 226 227commit 2e8afc7e7f24003a5b8804bf990590ca41ec48a2 228Author: Emil Velikov <emil.l.velikov@gmail.com> 229Date: Mon Mar 9 12:00:52 2015 +0000 230 231 autogen.sh: use quoted string variables 232 233 Place quotes around the $srcdir, $ORIGDIR and $0 variables to prevent 234 fall-outs, when they contain space. 235 236 Signed-off-by: Emil Velikov <emil.l.velikov@gmail.com> 237 Reviewed-by: Peter Hutterer <peter.hutterer@who-t.net> 238 Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net> 239 240commit 16fa2630b198c80b07311022a0d71858363f15c0 241Author: Peter Hutterer <peter.hutterer@who-t.net> 242Date: Tue Jan 24 10:32:07 2017 +1000 243 244 autogen.sh: use exec instead of waiting for configure to finish 245 246 Syncs the invocation of configure with the one from the server. 247 248 Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net> 249 Reviewed-by: Emil Velikov <emil.velikov@collabora.com> 250 251commit 649966c9f22e868e7623507e098a03be6e13e6a7 252Author: Alan Coopersmith <alan.coopersmith@oracle.com> 253Date: Thu May 7 23:03:38 2015 -0700 254 255 config: add AC_USE_SYSTEM_EXTENSIONS 256 257 Might fix https://bugs.freedesktop.org/show_bug.cgi?id=6336 on 64-bit Linux 258 Shouldn't hurt anyone 259 260 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 261 262commit 8536b831dbaef02a547b9fc637347a1459413e2b 263Author: Alan Coopersmith <alan.coopersmith@oracle.com> 264Date: Mon Jun 2 22:20:38 2014 -0700 265 266 autogen.sh: Honor NOCONFIGURE=1 267 268 See http://people.gnome.org/~walters/docs/build-api.txt 269 270 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 271 272commit 7bc0c3346c5311317f013e4b4796b20dd7502f77 273Author: Alan Coopersmith <alan.coopersmith@oracle.com> 274Date: Mon Jun 2 22:20:38 2014 -0700 275 276 configure: Drop AM_MAINTAINER_MODE 277 278 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 279 280commit f4ba22c10b9b1bd175fa39d25118bf904ba82eec 281Author: Alan Coopersmith <alan.coopersmith@oracle.com> 282Date: Thu Jul 18 21:24:07 2013 -0700 283 284 xconsole 1.0.6 285 286 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 287 288commit ba74b1a1dfa5d3411817e0c436b378945c410ec7 289Author: Alan Coopersmith <alan.coopersmith@oracle.com> 290Date: Sun Apr 21 14:01:12 2013 -0700 291 292 Use fstat() on the fd from open(), instead of stat() on the same pathname 293 294 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 295 296commit 73be08929d1d418370ae235e5261e64f72054cbf 297Author: Alan Coopersmith <alan.coopersmith@oracle.com> 298Date: Sun Apr 21 13:56:23 2013 -0700 299 300 Fix file leak if fdopen() fails 301 302 Reported by parfait 1.1: 303 File Descriptor Leak: Leaked File Descriptor fd 304 at line 313 of xconsole.c in function 'OpenConsole'. 305 fd initialized at line 285 with open 306 fd leaks when fd != -1 at line 287. 307 308 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 309 310commit 22a09b77093970423e721ebd8004a593d5f88a21 311Author: Alan Coopersmith <alan.coopersmith@oracle.com> 312Date: Sun Feb 24 08:14:32 2013 -0800 313 314 unifdef -ULynx 315 316 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 317 318commit 676edb80c54ac5ace45e641a3dde17751a3ab224 319Author: Alan Coopersmith <alan.coopersmith@oracle.com> 320Date: Sun Feb 24 08:13:14 2013 -0800 321 322 unifdef -UISC 323 324 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 325 326commit 9567b4e2b70552963189ac90a3ff91c351cd482a 327Author: Alan Coopersmith <alan.coopersmith@oracle.com> 328Date: Sun Feb 24 08:12:31 2013 -0800 329 330 unifdef -Uultrix 331 332 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 333 334commit 78492fd74051af9d717ec07503a7173858793528 335Author: Alan Coopersmith <alan.coopersmith@oracle.com> 336Date: Sun Feb 24 08:07:47 2013 -0800 337 338 config: Add missing AC_CONFIG_SRCDIR 339 340 Regroup AC statements under the Autoconf initialization section. 341 Regroup AM statements under the Automake initialization section. 342 343 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 344 345commit 2831823f608c1906211d5c55a098f48c8fad1a37 346Author: Niclas Zeising <zeising@daemonic.se> 347Date: Wed Jan 16 01:30:20 2013 +0100 348 349 Fix build on FreeBSD 350 351 libutil.h is needed on FreeBSD to get the definition of openpty(), add a 352 configure check for this include, and include it in xconsole.c if it 353 exists. 354 355 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 356 357commit cc0cf84461cfe2c31ddce34863c6433183e8a55d 358Author: Alan Coopersmith <alan.coopersmith@oracle.com> 359Date: Sat Jan 12 16:24:44 2013 -0800 360 361 xconsole 1.0.5 362 363 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 364 365commit 98f941d218108a314f979332b19c612f51ace08d 366Author: Alan Coopersmith <alan.coopersmith@oracle.com> 367Date: Fri Jan 4 18:21:23 2013 -0800 368 369 Fix implicit conversion from size_t to int warnings in Deiconified() 370 371 xconsole.c:423:14: warning: implicit conversion loses integer precision: 'size_t' (aka 'unsigned long') to 'int' [-Wshorten-64-to-32] 372 oldlen = strlen (oldName); 373 ~ ^~~~~~~~~~~~~~~~ 374 375 xconsole.c:426:27: warning: implicit conversion changes signedness: 'int' to 'size_t' (aka 'unsigned long') [-Wsign-conversion] 376 newName = malloc (oldlen - 1); 377 ~~~~~~ ~~~~~~~^~~ 378 379 xconsole.c:429:36: warning: implicit conversion changes signedness: 'int' to 'size_t' (aka 'unsigned long') [-Wsign-conversion] 380 strncpy (newName, oldName, oldlen - 2); 381 ~~~~~~~ ~~~~~~~^~~ 382 383 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 384 385commit 60d4a9dc01c9a1bf7a29c4a64ad52a6e27307682 386Author: Alan Coopersmith <alan.coopersmith@oracle.com> 387Date: Fri Jan 4 18:17:18 2013 -0800 388 389 unifdef -U__UNIXOS2__ 390 391 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 392 393commit a7a54829dc89b38bbad7fcd6e70cf001d2274c26 394Author: Arvind Umrao <arvind.umrao@oracle.com> 395Date: Fri Aug 24 09:44:23 2012 +0530 396 397 Open /dev/console with NOCTTY and O_NONBLOCK flags 398 399 In some cases, for SPARC servers, special files like fifo need 400 to open in nonblocking mode otherwise whole xconsole GUI freezes. 401 Also /dev/console is often a terminal device. So I am opening 402 /dev/console with NOCTTY and O_NONBLOCK flags. 403 404 Signed-off-by: Arvind Umrao <arvind.umrao@oracle.com> 405 Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com> 406 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 407 408commit 2e2ccc86fd4e778268ee44897a56535ce37b25e3 409Author: Eric S. Raymond <esr@thyrsus.com> 410Date: Thu Aug 23 06:19:16 2012 -0400 411 412 Don't rely on being able to set tab stops. 413 414 Signed-off-by: Eric S. Raymond <esr@thyrsus.com> 415 416commit 1dad4492bf1a6668de2b6ef56fd16ef4fc0e380d 417Author: Alan Coopersmith <alan.coopersmith@oracle.com> 418Date: Tue Jun 5 18:25:30 2012 -0700 419 420 unifdef CRAY 421 422 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 423 424commit ada6e8761138d3e7af42726de15e88204bed1686 425Author: Alan Coopersmith <alan.coopersmith@oracle.com> 426Date: Tue Jun 5 18:22:40 2012 -0700 427 428 unifdef umips 429 430 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 431 432commit f9b34c2eae4c3abe40904e4274c5d82cd16fc7af 433Author: Alan Coopersmith <alan.coopersmith@oracle.com> 434Date: Tue Jun 5 18:20:49 2012 -0700 435 436 Mark functions _X_NORETURN that gcc warnings suggest 437 438 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 439 440commit a12b6b391ab96241aa14f918e36a2fbd92734c7d 441Author: Alan Coopersmith <alan.coopersmith@oracle.com> 442Date: Tue Jun 5 18:16:59 2012 -0700 443 444 Remove old Xorg & XFree86 CVS version tags 445 446 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 447 448commit f7bcc00522e06e33ddb1ff4974c3b15a44d1005f 449Author: Alan Coopersmith <alan.coopersmith@oracle.com> 450Date: Wed Sep 28 20:30:46 2011 -0700 451 452 Strip trailing whitespace 453 454 Performed with: find * -type f | xargs perl -i -p -e 's{[ \t]+$}{}' 455 git diff -w & git diff -b show no diffs from this change 456 457 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 458 459commit a03d98d49cd2f2ef6aa6d2ecaf611cccfad7a919 460Author: Jeremy Huddleston <jeremyhu@apple.com> 461Date: Sun Sep 25 00:55:20 2011 -0700 462 463 Require xt >= 1.0 for appdefaultdir 464 465 https://bugs.freedesktop.org/show_bug.cgi?id=7237 466 467 Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com> 468 469commit 2f34a30d5b4fed4936fa41bb25bc0953d6882ece 470Author: Gaetan Nadon <memsize@videotron.ca> 471Date: Wed Jan 19 10:06:55 2011 -0500 472 473 config: move man pages into their own directory 474 475 Use services provided by XORG_MANPAGE_SECTIONS. 476 Use standard Makefile for man pages. 477 478 Signed-off-by: Gaetan Nadon <memsize@videotron.ca> 479 480commit 037e30485b3d6e22216a8c44e78fdb6fb57b238b 481Author: Gaetan Nadon <memsize@videotron.ca> 482Date: Thu Jan 13 17:15:36 2011 -0500 483 484 man: replace hard coded man page section with substitution strings 485 486 Signed-off-by: Gaetan Nadon <memsize@videotron.ca> 487 488commit e076a7cc5441e51b1083aba11f5b743156514fc1 489Author: Gaetan Nadon <memsize@videotron.ca> 490Date: Wed Jan 12 16:28:02 2011 -0500 491 492 config: replace deprecated AM_CONFIG_HEADER with AC_CONFIG_HEADERS 493 494 This silences an Autoconf warning 495 496commit 2f6ff82050e8a535d633f9b59bb2ec94528d3634 497Author: Gaetan Nadon <memsize@videotron.ca> 498Date: Wed Jan 12 15:29:50 2011 -0500 499 500 config: replace deprecated AC_HELP_STRING with AS_HELP_STRING 501 502 This silences an Automake warning. 503 504 Signed-off-by: Gaetan Nadon <memsize@videotron.ca> 505 506commit d71b95d96588e1ca020fa15db6ceb3050d41bbdc 507Author: Alan Coopersmith <alan.coopersmith@oracle.com> 508Date: Thu Sep 23 19:31:52 2010 -0700 509 510 xconsole 1.0.4 511 512 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 513 514commit 7507dea14fdc259d50dd1e2693d4f3cd5235eeb4 515Author: Alan Coopersmith <alan.coopersmith@oracle.com> 516Date: Thu Sep 23 19:28:30 2010 -0700 517 518 config: Remove unnecessary calls from configure.ac 519 520 AC_PROG_CC & AC_PROG_INSTALL are provided by XORG_DEFAULT_OPTIONS now 521 522 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 523 524commit 49bc4d3002ede196319bfc2829dda169c706e300 525Author: Gaetan Nadon <memsize@videotron.ca> 526Date: Tue Jul 20 18:45:18 2010 -0400 527 528 config: update AC_PREREQ statement to 2.60 529 530 Unrelated to the previous patches, the new value simply reflects 531 the reality that the minimum level for autoconf to configure 532 all x.org modules is 2.60 dated June 2006. 533 534 ftp://ftp.gnu.org/gnu/autoconf/autoconf-2.60.tar.gz 535 536 Signed-off-by: Gaetan Nadon <memsize@videotron.ca> 537 538commit 53fdc18e1723eb42596ad72ccd0e84ebfbd0a0e4 539Author: Alan Coopersmith <alan.coopersmith@oracle.com> 540Date: Fri Aug 6 08:47:48 2010 -0700 541 542 Fill in COPYING file with copyright notices from source code 543 544 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 545 546commit 3105c7119df08bab8d1668997c6b332ba5ff732c 547Author: Alan Coopersmith <alan.coopersmith@oracle.com> 548Date: Thu Jul 1 17:05:25 2010 -0700 549 550 Xmu functions are called directly, so include it in PKG_CHECK_MODULES 551 552 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 553 554commit ee142aaa65ef5a96b205110b8fa7dc5f9fe4fc20 555Author: Alan Coopersmith <alan.coopersmith@oracle.com> 556Date: Wed Jun 30 23:25:03 2010 -0700 557 558 config: upgrade to util-macros 1.8 for additional man page support 559 560 Use MAN_SUBST now supplied in XORG_MANPAGE_SECTIONS 561 The value of MAN_SUBST is the same for all X.Org packages. 562 563 Use AC_PROG_SED now supplied by XORG_DEFAULT_OPTIONS 564 The existing statement can now be removed from the configuration file. 565 566 Use automake provided $(AM_V_GEN) and XORG_DEFAULT_OPTIONS provided $(SED) 567 Enables silent rule and use platform appropriate version of sed. 568 569 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 570 571commit fee6d15b7cc5f1fad77fed4988bd856399e5750a 572Author: Gaetan Nadon <memsize@videotron.ca> 573Date: Thu Feb 11 10:08:06 2010 -0500 574 575 config: move CWARNFLAGS from configure.ac to Makefile.am 576 577 Compiler warning flags should be explicitly set in the makefile 578 rather than being merged with other packages compiler flags. 579 580 Signed-off-by: Gaetan Nadon <memsize@videotron.ca> 581 582commit 45fd4b1fa6f81acd33d183b00b060a69087da194 583Author: Gaetan Nadon <memsize@videotron.ca> 584Date: Sat Dec 19 20:48:47 2009 -0500 585 586 configure.ac: use backticks rather than $() for cmd subs 587 588 Use "$PKG_CONFIG" rather than hard coded "pkg-config" 589 590 Signed-off-by: Gaetan Nadon <memsize@videotron.ca> 591 592commit 89dbe10377a39ee7001d1c34ce8f01aa209bb376 593Author: Gaetan Nadon <memsize@videotron.ca> 594Date: Thu Nov 26 09:19:53 2009 -0500 595 596 Makefile.am: add ChangeLog and INSTALL on MAINTAINERCLEANFILES 597 598 Now that the INSTALL file is generated. 599 Allows running make maintainer-clean. 600 601commit 11cd7489b6f96f194171be418bf9112b5f1cbc1d 602Author: Gaetan Nadon <memsize@videotron.ca> 603Date: Wed Oct 28 14:09:08 2009 -0400 604 605 INSTALL, NEWS, README or AUTHORS files are missing/incorrect #24206 606 607 Add missing INSTALL file. Use standard GNU file on building tarball 608 README may have been updated 609 Remove AUTHORS file as it is empty and no content available yet. 610 Remove NEWS file as it is empty and no content available yet. 611 612commit fe30cb2c210cf51b239505deaac63593a0ab53f9 613Author: Gaetan Nadon <memsize@videotron.ca> 614Date: Tue Oct 27 15:07:24 2009 -0400 615 616 Deploy the new XORG_DEFAULT_OPTIONS #24242 617 618 This macro aggregate a number of existing macros that sets commmon 619 X.Org components configuration options. It shields the configuration file from 620 future changes. 621 622commit 41d1f93ec0cfd8754d3c6f81bb4cb113328291cd 623Author: Gaetan Nadon <memsize@videotron.ca> 624Date: Thu Oct 22 12:34:15 2009 -0400 625 626 .gitignore: use common defaults with custom section # 24239 627 628 Using common defaults will reduce errors and maintenance. 629 Only the very small or inexistent custom section need periodic maintenance 630 when the structure of the component changes. Do not edit defaults. 631 632commit 099fc3d0dd7b769693bf1bce70112e1e13fe5336 633Author: Alan Coopersmith <alan.coopersmith@sun.com> 634Date: Thu Oct 1 14:54:21 2009 -0700 635 636 Add README with pointers to mailing lists, bugzilla, & git 637 638 Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com> 639 640commit 3254ca74de650838e46a551e7c567a79fd971503 641Author: Alan Coopersmith <alan.coopersmith@sun.com> 642Date: Mon Aug 3 16:26:13 2009 -0700 643 644 Remove errant #error I_PUSH from SVR4 code path 645 646 Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com> 647 648commit 58c8fc6828c07867955882f9126b116edc2036d2 649Author: Matthieu Herrb <matthieu.herrb@laas.fr> 650Date: Sat Jul 25 14:08:41 2009 +1000 651 652 Prevent inclusion of stropts.h on Linux. 653 654 Systems like Linux/glibc that have openpty() will not mess around with SVR4 655 like stream modules, so no need to include streams related headers. 656 657 Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net> 658 659commit acc7c587322e2f1952900ad554061c5a8d08f7c3 660Author: Paulo Cesar Pereira de Andrade <pcpa@mandriva.com.br> 661Date: Mon Jan 19 20:16:40 2009 -0200 662 663 Ansification and compile warning fixes. 664 665 This also uses XORG_CHANGELOG and XORG_CWARNFLAGS, corrects 666 make distcheck and all gcc 4.3 and sparse warnings. 667 668commit 5b3da5679d78ac025358ba0e4beb35e8a9cacd5c 669Author: Julien Cristau <jcristau@debian.org> 670Date: Sun Nov 16 21:25:33 2008 +0100 671 672 Fix header inclusion for openpty() 673 674 AC_CHECK_HEADERS(foo.h) defines HAVE_FOO_H, not HAS_FOO_H. 675 This fixes a compiler warning: 676 xconsole.c:839: warning: implicit declaration of function 'openpty' 677 678commit 9f690af8ed736ffcae0f0e3771bbc4ab851f8202 679Author: James Cloos <cloos@jhcloos.com> 680Date: Wed Aug 20 10:32:50 2008 -0400 681 682 xaw8 is gone, use xaw7 683 684commit 0ac48669dfcfd2760eaab31c934ff0b83ff2dd2c 685Author: Julien Cristau <jcristau@debian.org> 686Date: Fri May 16 14:24:55 2008 +0200 687 688 $(builddir) is the current directory 689 690 Apparently automake doesn't always export the builddir variable. 691 This fixes my previous commit. 692 693commit 6e305f9cdfaffd87f1852a1c24271b10b0bd5079 694Author: Julien Cristau <jcristau@debian.org> 695Date: Sun Apr 20 19:48:09 2008 +0200 696 697 Fix build with builddir != srcdir 698 699commit e321bfbe9970a89d486437ed5eedcd83a10a749e 700Author: Jeremy Huddleston <jeremyhu@freedesktop.org> 701Date: Thu Mar 27 20:07:41 2008 -0700 702 703 Build fix for file systems that are not case sensitive 704 705commit 2f9d3842be3d5d58270e54821552735cdb098075 706Merge: d5ffc49 cda9968 707Author: James Cloos <cloos@jhcloos.com> 708Date: Mon Sep 3 05:59:57 2007 -0400 709 710 Merge branch 'master' of ssh://git.freedesktop.org/git/xorg/app/xconsole 711 712commit d5ffc49536871784f269ba938566fa77733b16e3 713Author: James Cloos <cloos@jhcloos.com> 714Date: Mon Sep 3 05:51:18 2007 -0400 715 716 Add *~ to .gitignore to skip patch/emacs droppings 717 718commit cda9968cea772dbc94b50d791a5be62203ae9ddf 719Author: Alan Coopersmith <alan.coopersmith@sun.com> 720Date: Mon Aug 20 18:58:33 2007 -0700 721 722 Version bump: 1.0.3 723 724commit 9eee6c49bd6f57d51c517a6703cac2f29732231a 725Author: Alan Coopersmith <alan.coopersmith@sun.com> 726Date: Mon Aug 20 18:54:22 2007 -0700 727 728 Add *~ to .gitignore to skip patch/emacs droppings 729 730commit d1e90da451da71d7d362236c5709d9931ab7b9d1 731Author: Alan Coopersmith <alan.coopersmith@sun.com> 732Date: Mon Aug 20 18:53:41 2007 -0700 733 734 Replace xconsole_CFLAGS with AM_CFLAGS to make automake-1.10 happier 735 736commit 3d4f2f96fc661095ce615928e6b586784f5d35e5 737Author: Matthieu Herrb <matthieu.herrb@laas.fr> 738Date: Sun Jul 30 18:42:08 2006 +0200 739 740 Check if openpty() is available and use it if it is. 741 742commit 5bdbbecf51e3a73c6660498f8598f0731b43a703 743Author: Matthieu Herrb <matthieu.herrb@laas.fr> 744Date: Sun Jul 30 16:31:03 2006 +0200 745 746 Remove ChangeLog, replace with a rule that generates it using git-log 747 748commit c8a026e7c8457cd726f8f6fbd74ade325a9f486e 749Author: Matthieu Herrb <matthieu.herrb@laas.fr> 750Date: Sun Jul 30 16:29:10 2006 +0200 751 752 rename .cvsignore -> .gitignore 753 754commit 86e5d9ca5836d4ad02faa1a5f9c0db239464bde1 755Author: Adam Jackson <ajax@nwnk.net> 756Date: Wed Apr 26 23:38:08 2006 +0000 757 758 Bump to 1.0.2 759 760commit 219ef4e86f05e7a473e399c5188efdb7f16f31f1 761Author: Matthieu Herrb <matthieu.herrb@laas.fr> 762Date: Sat Mar 18 18:31:08 2006 +0000 763 764 Avoid potential underflow if read() returns -1. Coverity CID 414 765 766commit 950d308b3230e7e89d307fd95abb983e44987665 767Author: Kevin E Martin <kem@kem.org> 768Date: Wed Dec 21 02:29:49 2005 +0000 769 770 Update package version for X11R7 release. 771 772commit f3755877004e49e96f26b120e0716f6673dc738b 773Author: Adam Jackson <ajax@nwnk.net> 774Date: Mon Dec 19 16:22:42 2005 +0000 775 776 Stub COPYING files 777 778commit a87b4d1f07448fde9b4f7ecad965210a339caaa5 779Author: Kevin E Martin <kem@kem.org> 780Date: Thu Dec 15 00:24:05 2005 +0000 781 782 Update package version number for final X11R7 release candidate. 783 784commit d82f94100bd454d3298c6548173827a67cb4d7ad 785Author: Kevin E Martin <kem@kem.org> 786Date: Wed Dec 7 16:17:59 2005 +0000 787 788 Change to use the app-defaults default dir configured in libXt. 789 790commit c681eac9a17d8d3f16efa2a992b02972cfa71926 791Author: Kevin E Martin <kem@kem.org> 792Date: Tue Dec 6 22:48:20 2005 +0000 793 794 Change *man_SOURCES ==> *man_PRE to fix autotools warnings. 795 796commit 406fdcbe2e0b7f6af37c6d6965f85adfa8bb3aa6 797Author: Kevin E Martin <kem@kem.org> 798Date: Sat Dec 3 05:49:18 2005 +0000 799 800 Update package version number for X11R7 RC3 release. 801 802commit 81d992f635798580d71fc79abf9df2a825f125e0 803Author: Alan Coopersmith <Alan.Coopersmith@sun.com> 804Date: Mon Nov 28 22:01:40 2005 +0000 805 806 Change *mandir targets to use new *_MAN_DIR variables set by xorg-macros.m4 807 update to fix bug #5167 (Linux prefers *.1x man pages in man1 subdir) 808 809commit 61eac81e62e1b9b141ce7aaf3fd778ad1f9d7924 810Author: Eric Anholt <anholt@freebsd.org> 811Date: Mon Nov 21 10:34:59 2005 +0000 812 813 Another pass at .cvsignores for apps. 814 815commit 68ea4cb352cc528736914c7d328df024164e0e60 816Author: Eric Anholt <anholt@freebsd.org> 817Date: Sun Nov 20 22:08:51 2005 +0000 818 819 Add/improve .cvsignore files for apps. 820 821commit 630bdf36e17b8f125f8aa0cabf41c75e650ac973 822Author: Kevin E Martin <kem@kem.org> 823Date: Wed Nov 9 21:09:20 2005 +0000 824 825 Update package version number for X11R7 RC2 release. 826 827commit 31dbed9163fd4384dc5dc81f426ce82176587dd2 828Author: Kean Johnson <kean@armory.com> 829Date: Tue Nov 8 06:33:31 2005 +0000 830 831 See ChangeLog entry 2005-11-07 for details. 832 833commit 0710398b397c5f8b09b6216bd18e84337fb4efdb 834Author: Kevin E Martin <kem@kem.org> 835Date: Wed Oct 19 02:47:52 2005 +0000 836 837 Update package version number for RC1 release. 838 839commit 34924fc44be47d2d58c701485b4e1b6fad28c21d 840Author: Alan Coopersmith <Alan.Coopersmith@sun.com> 841Date: Tue Oct 18 00:32:55 2005 +0000 842 843 Change default install dir for app-default files from 844 $(sysconfdir)/X11/app-defaults to $(libdir)/X11/app-defaults to match 845 the monolith & allow localization 846 847commit 324e3c08212f7dbe8b08f7d9028f2e775cbc73c1 848Author: Alan Coopersmith <Alan.Coopersmith@sun.com> 849Date: Mon Oct 17 23:56:21 2005 +0000 850 851 Use @APP_MAN_SUFFIX@ instead of $(APP_MAN_SUFFIX) in macro substitutions to 852 work better with BSD make 853 854commit ad9813ed3ad1d8adb562ac9b279c18753249786f 855Author: Alan Coopersmith <Alan.Coopersmith@sun.com> 856Date: Fri Oct 14 00:25:43 2005 +0000 857 858 Use sed to fill in variables in man page 859 860commit f8ca981b964aaa3c59eab661ce35efb7d7085020 861Author: Alan Coopersmith <Alan.Coopersmith@sun.com> 862Date: Wed Aug 17 21:03:23 2005 +0000 863 864 Bugzilla #4130 <https://bugs.freedesktop.org/show_bug.cgi?id=4130> 865 xconsole: non-ascii characters don't show up (Samuel Thibault) 866 867commit 05a718f11fc97f1e34cf927fd8762f8251356dcb 868Author: Alan Coopersmith <Alan.Coopersmith@sun.com> 869Date: Mon Aug 1 20:25:29 2005 +0000 870 871 Install man pages to section 1 instead of section m (Patch from Donnie 872 Berkholz) 873 874commit c0ecb99582a714c95282f1187c0f39acee640779 875Author: Kevin E Martin <kem@kem.org> 876Date: Fri Jul 29 21:22:31 2005 +0000 877 878 Various changes preparing packages for RC0: 879 - Verify and update package version numbers as needed 880 - Implement versioning scheme 881 - Change bug address to point to bugzilla bug entry form 882 - Disable loadable i18n in libX11 by default (use --enable-loadable-i18n to 883 reenable it) 884 - Fix makedepend to use pkgconfig and pass distcheck 885 - Update build script to build macros first 886 - Update modular Xorg version 887 888commit b23b1f35930ed0d10fef42a23f88a2dacd29d91c 889Author: Daniel Stone <daniel@fooishbar.org> 890Date: Wed Jul 27 00:15:46 2005 +0000 891 892 Fix xconsole build break on AIX caused by removal of ptyx defines. 893 894commit b471e2609662c2ec83d26ee32a7900e528f67f75 895Author: Alan Coopersmith <Alan.Coopersmith@sun.com> 896Date: Tue Jul 26 15:44:02 2005 +0000 897 898 Replace more GNU make-ism's with more portable macros 899 900commit e656ddba66cda7432279cd10ac5a450e8b2c342c 901Author: Adam Jackson <ajax@nwnk.net> 902Date: Wed Jul 20 19:31:52 2005 +0000 903 904 Use a unique token for PKG_CHECK_MODULES. Otherwise, if you use a global 905 configure cache, you cache it, and the cached value is probably wrong. 906 907commit 171e31464fc9d4f39403931b1126c3e2cf52b84e 908Author: Matthieu Herrb <matthieu.herrb@laas.fr> 909Date: Sun Jul 17 21:11:32 2005 +0000 910 911 fix rules to work with non-GNU make. 912 913commit 6fa7b824f077a0c04eb678c8736cda077232a084 914Author: Søren Sandmann Pedersen <sandmann@daimi.au.dk> 915Date: Thu Jul 7 23:08:22 2005 +0000 916 917 - Build system for xconsole 918 - Remove include of "../xterm/ptyx" from xc/programs/xconsole/xconsole.c 919 920commit b38b9a7731430359f10ba74706fc6d4c786d2d36 921Author: Egbert Eich <eich@suse.de> 922Date: Mon Oct 18 14:21:46 2004 +0000 923 924 Made handling of DevelDrivers for x86-64 more conformant to other 925 platforms. 926 Compress all font encodings (Stefan Dirsch). 927 Fixed warnings. 928 Turn on forwarding XNSpotLocation event to XIM server in OffTheSpot and 929 Root mode (bugzilla #1580, James Su). 930 Added another compose key combination for the Euro symbol (Stefan Dirsch). 931 Added support for UTF-8 in ja_JP, ko_KR and zh_TW locales (Mike Fabian). 932 Changed default encoding for ru from KOI8-R to ISO8859-5 (Mike Fabian). 933 This is the encoding that is also used by glibc. We may break other 934 libcs - lets see who complains. 935 Added explanation for DESTDIR to install to a different directory than /. 936 Added some early bailouts to atiprobe if PCI structure pointer is NULL to 937 prevent sig11. 938 XV support doesn't depend on 2D acceleration any more. This patch removes 939 this limitation from the NSC driver. This is a patch that I have 940 committed to XFree86 a while ago but never ported over to X.Org. 941 Matthieu Herrb contributed some build fixes. 942 Fixing SetDPMSTimers() so that DPMS*Time == 0 disables the appropriate 943 timer. This takes advantage of the fact that TimerSet() with a timeout 944 argument 0 behaves like TimerCanel(). 945 Use /dev/xconsole (named pipe) or devpts for system logger (Werner Fink). 946 Create missing links for backward compatibility to XFree86 (Stefan Dirsch). 947 Changed comment to mention xorg. 948 Changed cursor for the 'kill' action from XC_draped_box to XC_Pirate. If 949 you don't like it we can change it back (original author unkown). 950 Added 'pic' to the man page rendering command pipeline (Werner Fink). 951 Added missing return value (Stefan Dirsch, Roland Mainz) 952 953commit 7da0d180d6852916e5dca44842ee88e7d8429e6e 954Author: Egbert Eich <eich@suse.de> 955Date: Fri Apr 23 19:54:41 2004 +0000 956 957 Merging XORG-CURRENT into trunk 958 959commit 0b03eedd1839ec360b2bb7c0b4b9592cd53cfda5 960Author: Egbert Eich <eich@suse.de> 961Date: Sun Mar 14 08:35:01 2004 +0000 962 963 Importing vendor version xf86-4_4_99_1 on Sun Mar 14 00:26:39 PST 2004 964 965commit 2ec4fa572aba38d9e01205a2b440f6fcf29b796e 966Author: Egbert Eich <eich@suse.de> 967Date: Wed Mar 3 12:12:55 2004 +0000 968 969 Importing vendor version xf86-4_4_0 on Wed Mar 3 04:09:24 PST 2004 970 971commit 798ad4a31ca485e2b04a2a623b1fc96f3860d11f 972Author: Egbert Eich <eich@suse.de> 973Date: Thu Feb 26 13:36:16 2004 +0000 974 975 readding XFree86's cvs IDs 976 977commit 297a4fba84512347e1f65d5c9eca649c24271067 978Author: Egbert Eich <eich@suse.de> 979Date: Thu Feb 26 09:23:58 2004 +0000 980 981 Importing vendor version xf86-4_3_99_903 on Wed Feb 26 01:21:00 PST 2004 982 983commit b53d3aeeedd692ef010a3ec5961079aee7d47fb3 984Author: Kaleb Keithley <kaleb@freedesktop.org> 985Date: Tue Nov 25 19:29:03 2003 +0000 986 987 XFree86 4.3.99.16 Bring the tree up to date for the Cygwin folks 988 989commit 2b2c62b3be8dd36d3231a2ad18d8b212e81695d1 990Author: Kaleb Keithley <kaleb@freedesktop.org> 991Date: Fri Nov 14 16:48:58 2003 +0000 992 993 XFree86 4.3.0.1 994 995commit 593922e4e9e9bdcb9bd2b66493b91023d8f0984b 996Author: Kaleb Keithley <kaleb@freedesktop.org> 997Date: Fri Nov 14 15:54:53 2003 +0000 998 999 R6.6 is the Xorg base-line 1000