ChangeLog revision 339a7c43
1commit e7411e7e5299116604ff1f01d9415802607f1051 2Author: Alan Coopersmith <alan.coopersmith@oracle.com> 3Date: Thu Apr 30 22:36:14 2015 -0700 4 5 libXt 1.1.5 6 7 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 8 9commit 0c2c7562426aec7bdf9b54a7d6993153e0bce489 10Author: Yaakov Selkowitz <yselkowitz@users.sourceforge.net> 11Date: Sun Aug 10 12:44:26 2014 -0500 12 13 Fix _XtInherit on x86_64 Windows 14 15 As noted in Initialize.c, _XtInherit needs special treatment as it's both called 16 as a function, and used as a value to compare with. 17 18 We need to change this trickery for x86_64, as the symbols are no longer 19 underscore prefixed, and the address is 64 bits. 20 21 We also cannot place the trampoline in the .data section, as it may be marked 22 no-execute, so we use a special section for it instead. 23 24 v2: Uses of XtInherit must also be marked dllimport, so that they do not use a 25 thunk, but instead indirect via the __imp_XtInherit auto-import. This avoids 26 problems with an incorrect relocation being calculated in the case where libXt 27 and a library using it (e.g. libXaw/libXaw3d/libXm/etc.) are loaded more than 28 2GiB apart from each other. 29 30 This is enough to build a working libXt for Cygwin x86_64, because it uses the 31 LP64 data model. I believe that more patches are needed for libXt to work 32 correctly when built for the Windows LLP64 data model. 33 34 Signed-off-by: Yaakov Selkowitz <yselkowitz@cygwin.com> 35 Reviewed-by: Jon TURNEY <jon.turney@dronecode.org.uk> 36 Reviewed-by: Colin Harrison <colin.harrison@virgin.net> 37 38commit 171d82fa36bb601360da2cc519718c46f137c467 39Author: Jon TURNEY <jon.turney@dronecode.org.uk> 40Date: Tue Apr 14 12:21:58 2015 +0100 41 42 Include unistd.h for getpid() 43 44 Signed-off-by: Jon TURNEY <jon.turney@dronecode.org.uk> 45 Reviewed-by: David Macek <david.macek.0@gmail.com> 46 47commit af9c277491c9bdc37a6fc5ae5a6c6ca190bfa56c 48Author: Jon TURNEY <jon.turney@dronecode.org.uk> 49Date: Tue Apr 14 12:19:07 2015 +0100 50 51 Include direct.h header for _getdrives() on Win32 52 53 Signed-off-by: Jon TURNEY <jon.turney@dronecode.org.uk> 54 Reviewed-by: David Macek <david.macek.0@gmail.com> 55 56commit e7094ceaf95a15eae73819d0ffdb9b982075e0d2 57Author: Alan Coopersmith <alan.coopersmith@oracle.com> 58Date: Sat Feb 14 14:10:21 2015 -0800 59 60 unifdef -UCRAY -UCRAY2 61 62 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 63 64commit 33a6d9dc30188c02a3ec703153728b31d458ec1e 65Author: Rob Clark <robdclark@gmail.com> 66Date: Mon Jan 26 11:51:48 2015 -0500 67 68 asprintf needs _GNU_SOURCE on some platforms 69 70 Fixes a build break noticed on fedora 21 on arm (although I doubt that 71 is in any way arch specific). 72 73 http://tinderbox.x.org/builds/2015-01-26-0012/logs/libXt/#build 74 75 Signed-off-by: Rob Clark <robdclark@gmail.com> 76 Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com> 77 78commit ca04f74887d53c75e794f643f7e860ba588c3a57 79Author: Alan Coopersmith <alan.coopersmith@oracle.com> 80Date: Sun Jan 18 11:21:45 2015 -0800 81 82 makestrs: Use asprintf() if available 83 84 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 85 Reviewed-by: Hans de Goede <hdegoede@redhat.com> 86 87commit fba83e45a8d5dc2ca920ec6c49446d2b54c2db5c 88Author: Alan Coopersmith <alan.coopersmith@oracle.com> 89Date: Sun Jan 18 10:58:08 2015 -0800 90 91 makestrs: Replace strcpy()+strcat() calls with snprintf() calls 92 93 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 94 Reviewed-by: Hans de Goede <hdegoede@redhat.com> 95 96commit 47fa41960650dd0e97eb78de2af0f5fcd9323b35 97Author: Alan Coopersmith <alan.coopersmith@oracle.com> 98Date: Sun Jan 18 10:43:11 2015 -0800 99 100 makestrs: Replace malloc()+strcpy() calls with strdup() calls 101 102 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 103 Reviewed-by: Hans de Goede <hdegoede@redhat.com> 104 105commit f3e5903536f80cb42ee6841f85e013284eb4c2fc 106Author: Alan Coopersmith <alan.coopersmith@oracle.com> 107Date: Sun Jan 18 10:27:42 2015 -0800 108 109 makestrs: use strchr() instead of index() 110 111 Besides being supported by more standards, strchr() has the important 112 characteristic of having a prototype included in <string.h> on Solaris 113 so that 64-bit compiles know it returns a pointer, not an integer. 114 (On Solaris, index() is only found in <strings.h>, for SunOS compatibility.) 115 116 Without this fix, makestrs segfaulted in 64-bit builds on Solaris after 117 commit f9baaf55ff8cbd4bf018a34f181eda30d03b20dc switched to <string.h>. 118 119 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 120 Reviewed-by: Hans de Goede <hdegoede@redhat.com> 121 122commit aed2c4d3493cf3a06ad1240f317552fd8bfd687a 123Author: Alan Coopersmith <alan.coopersmith@oracle.com> 124Date: Sun Jan 18 10:34:38 2015 -0800 125 126 If CFLAGS_FOR_BUILD is not set, include CWARNFLAGS in default value 127 128 Help catch errors like missing prototypes in makestrs sooner. 129 130 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 131 Reviewed-by: Hans de Goede <hdegoede@redhat.com> 132 133commit f9baaf55ff8cbd4bf018a34f181eda30d03b20dc 134Author: Thomas Klausner <wiz@NetBSD.org> 135Date: Thu Jan 8 09:18:16 2015 +0100 136 137 Use string.h instead of X11/Xos.h. 138 139 Long long ago, Xos.h was needed to choose between <string.h> & 140 <strings.h> depending on the OS in use. 141 142 Today we can rely on C89 & later providing <string.h> everywhere 143 for us. 144 145 Signed-off-by: Thomas Klausner <wiz@NetBSD.org> 146 Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com> 147 148commit 51d63a9d82dc4f2407862131bbf3e5d72b4505d3 149Author: Gaetan Nadon <memsize@videotron.ca> 150Date: Sat Sep 21 12:52:15 2013 -0400 151 152 Use $(MKDIR_P) in Makefile.am for better code portability 153 154 Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com> 155 Signed-off-by: Gaetan Nadon <memsize@videotron.ca> 156 157commit 8828fc21cb5b10f06294e460d15c38e234324960 158Author: Alan Coopersmith <alan.coopersmith@oracle.com> 159Date: Wed Jul 10 08:18:26 2013 -0700 160 161 Revert "Avoid shadowing variables." 162 163 This reverts commit 3919044bd7d3bcb85ce3425a43b8889a248a7542. 164 Breaks programs such as xcalc & xlogo on multiple platforms. 165 166commit 9dc5fb0b9640b79a234b58e640e05d8276556beb 167Author: Thomas Klausner <wiz@NetBSD.org> 168Date: Tue Jun 25 23:02:48 2013 +0200 169 170 Fix char vs. unsigned char warnings. 171 172 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 173 174commit 3919044bd7d3bcb85ce3425a43b8889a248a7542 175Author: Thomas Klausner <wiz@NetBSD.org> 176Date: Tue Jun 25 23:02:46 2013 +0200 177 178 Avoid shadowing variables. 179 180 Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com> 181 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 182 183commit d395f487e659ee1091eb60c89c551ba1b61dfe51 184Author: Thomas Klausner <wiz@NetBSD.org> 185Date: Tue Jun 25 23:02:50 2013 +0200 186 187 Ignore test-driver from automake-1.13. 188 189 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 190 191commit 71c76a6c500761a2ca0091a55b8c106906fcb125 192Author: Thomas Klausner <wiz@NetBSD.org> 193Date: Wed Jun 26 00:43:03 2013 +0200 194 195 Mark non-returning function with appropriate attribute. 196 197 Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com> 198 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 199 200commit ce57783ea5b5c47f5dca172d36a76f91dd7704df 201Author: Thomas Klausner <wiz@NetBSD.org> 202Date: Wed Jun 26 00:43:32 2013 +0200 203 204 Use appropriate variable type for vsnprintf return value. 205 206 Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com> 207 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 208 209commit 0bf255ce5f2aeacece0b685996491729f804fe94 210Author: Thierry Reding <thierry.reding@avionic-design.de> 211Date: Thu Jan 3 10:16:55 2013 +0100 212 213 Fix cross-compilation 214 215 When cross-compiling against a sysroot for instance, a --sysroot option 216 is typically passed via the CPPFLAGS variable. This can cause the build 217 to break in the util subdirectory which requires the CPPFLAGS to be set 218 for the build system. 219 220 Solve this by using the value of CPPFLAGS_FOR_BUILD for CPPFLAGS in the 221 util subdirectory. Cross-compile setups can override the variable when 222 calling the configure script. 223 224 Signed-off-by: Thierry Reding <thierry.reding@avionic-design.de> 225 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 226 227commit 02fd80afd5d2416301e5166e202ff859902c7987 228Author: Thomas Klausner <wiz@NetBSD.org> 229Date: Sun Jun 2 21:48:38 2013 +0200 230 231 Add missing comma to fix DEBUG build. 232 233 Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com> 234 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 235 236commit e83d6d66ea28b0aaa7e574dd2471121a5250b934 237Author: Alan Coopersmith <alan.coopersmith@oracle.com> 238Date: Thu May 30 18:13:27 2013 -0700 239 240 libXt 1.1.4 241 242 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 243 244commit 1f4802b745aa172d375cb79403cb1e013e6aa4c0 245Author: Alan Coopersmith <alan.coopersmith@oracle.com> 246Date: Sat Mar 9 13:33:20 2013 -0800 247 248 Remove old strtoul workaround for SunOS 4 249 250 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 251 252commit 9264a21b688891dbdcee630ff72cf39aa75fc4e1 253Author: Alan Coopersmith <alan.coopersmith@oracle.com> 254Date: Sat Mar 9 11:44:14 2013 -0800 255 256 unvalidated length in _XtResourceConfigurationEH [CVE-2013-2002] 257 258 The RCM_DATA property is expected to be in the format: 259 resource_length, resource, value 260 261 If the property contains a resource_length thats results in a pointer 262 outside the property string, memory corruption can occur. 263 264 Reported-by: Ilja Van Sprundel <ivansprundel@ioactive.com> 265 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 266 267commit eae57493feec958bcf733ad0d334715107029f8b 268Author: Alan Coopersmith <alan.coopersmith@oracle.com> 269Date: Sat Mar 9 11:29:21 2013 -0800 270 271 Unchecked return values of XGetWindowProperty [CVE-2013-2005] 272 273 Multiple functions in Selection.c assumed that XGetWindowProperty() would 274 always set the pointer to the property, but before libX11 1.6, it could 275 fail to do so in some cases, leading to libXt freeing or operating on an 276 uninitialized pointer value, so libXt should always initialize the pointers 277 and check for failure itself. 278 279 Reported-by: Ilja Van Sprundel <ivansprundel@ioactive.com> 280 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 281 282commit ead50a9a274aa96bef94e57c4625be8e9288af4e 283Author: Colin Walters <walters@verbum.org> 284Date: Wed Jan 4 17:37:06 2012 -0500 285 286 autogen.sh: Implement GNOME Build API 287 288 http://people.gnome.org/~walters/docs/build-api.txt 289 290 Signed-off-by: Adam Jackson <ajax@redhat.com> 291 292commit 8f5f3f7a3c36088d6faf0f13da4416596257bc58 293Author: Adam Jackson <ajax@redhat.com> 294Date: Tue Jan 15 14:28:48 2013 -0500 295 296 configure: Remove AM_MAINTAINER_MODE 297 298 Signed-off-by: Adam Jackson <ajax@redhat.com> 299 300commit 6731c2c7e3c16ad17425acfb5024fa1501e94411 301Author: Thierry Reding <thierry.reding@avionic-design.de> 302Date: Thu Jan 3 10:16:56 2013 +0100 303 304 Use AM_CPPFLAGS instead of INCLUDES 305 306 Recent versions of automake deprecate the INCLUDES variable. The same 307 effect can be achieved by using AM_CPPFLAGS instead, which is also 308 automake's recommendation. 309 310 Signed-off-by: Thierry Reding <thierry.reding@avionic-design.de> 311 Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com> 312 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 313 314commit 97034e393cfa63a55e9cec2d795ac41e5872f5b5 315Author: Alan Coopersmith <alan.coopersmith@oracle.com> 316Date: Fri Jan 4 19:52:59 2013 -0800 317 318 unifdef -U__UNIXOS2__ 319 320 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 321 Reviewed-by: Peter Hutterer <peter.hutterer@who-t.net> 322 323commit 0033d063894d003b1cb6edb14107d6ef7e0f3fec 324Author: Egbert Eich <eich@freedesktop.org> 325Date: Thu Sep 8 16:40:27 2011 +0200 326 327 Add XtErrorDB directory to pkg-config file. 328 329 Should anyone ever desire to supply this file externally 330 it's location is specified in the pkg-config file. 331 332 Signed-off-by: Egbert Eich <eich@freedesktop.org> 333 Reviewed-by: Gaetan Nadon <memsize@videotron.ca> 334 Tested-by: Gaetan Nadon <memsize@videotron.ca> 335 336commit 15d7f9cf9e089f5968a20f80529096e9a1d3551f 337Author: Egbert Eich <eich@freedesktop.org> 338Date: Thu May 19 18:18:52 2011 +0200 339 340 Install ErrorDB into a $datarootdir-path, not $libdir. 341 342 This lets Xt search for it's ErrorDB in the same location 343 as Xlib. These error databases are architecture independent 344 data files. 345 346 The XtErrorDB file neither exists in libXt nor has it ever 347 been supplied by any '3rd party' (at least Google didn't 348 turn up any results). 349 Therefore changing the location of this file (again) should 350 have no side effects on backward compatibility. 351 352 Signed-off-by: Egbert Eich <eich@freedesktop.org> 353 Reviewed-by: Gaetan Nadon <memsize@videotron.ca> 354 Tested-by: Gaetan Nadon <memsize@videotron.ca> 355 356commit 690d6587e7e0ba29b70d2b1d6c5c6a128c5547a2 357Author: Eric S. Raymond <esr@thyrsus.com> 358Date: Thu Aug 23 11:43:42 2012 -0400 359 360 Remove unused macros that are temptations to presentation-level klugery. 361 362 Also, change .Ds/.De to use CW font, as what they're wrapping is code displays. 363 This may not be recognized on archaic Unixes, but .ft 1 isn't any too safe 364 either. The PostScript and DVI drivers both grok CW. 365 366 Signed-off-by: Eric S. Raymond <esr@thyrsus.com> 367 368commit 356b3e6235be4cdb51f13249cb68c581c0fc50c7 369Author: Eric S. Raymond <esr@thyrsus.com> 370Date: Thu Aug 23 11:30:47 2012 -0400 371 372 Eliminate use of tab stops. 373 374 Signed-off-by: Eric S. Raymond <esr@thyrsus.com> 375 376commit 1e5e04a80b391ea6827bb3c537be47533c6afe1e 377Author: Thomas Klausner <wiz@NetBSD.org> 378Date: Wed Jul 18 16:45:19 2012 +0200 379 380 Fix DEBUG build (TMparse.c:376:1: error: overflow in implicit constant conversion) 381 382 Signed-off-by: Thomas Klausner <wiz@NetBSD.org> 383 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 384 385commit 1ab3a0dd5140489bc80edcfd940609fefaec81f1 386Author: Thomas Klausner <wiz@NetBSD.org> 387Date: Wed Jul 18 16:45:18 2012 +0200 388 389 Avoid referencing something that isn't defined. Bring in the definition from another manual page. 390 391 Signed-off-by: Thomas Klausner <wiz@NetBSD.org> 392 Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com> 393 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 394 395commit 6adb4655a15276973f5e74fd79f5c99d3d4b77a0 396Author: Julien Cristau <jcristau@debian.org> 397Date: Mon Apr 23 20:08:34 2012 +0200 398 399 Add copyright notice and license from the X Consortium to COPYING 400 401 These appear in the Xt manpages. 402 403 Reported-by: Ansgar Burchardt 404 Signed-off-by: Julien Cristau <jcristau@debian.org> 405 406commit 2d689ac861085d1d74bcbd05d1595bac0bf67d20 407Author: Alan Coopersmith <alan.coopersmith@oracle.com> 408Date: Thu Mar 15 22:51:45 2012 -0700 409 410 libXt 1.1.3 411 412 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 413 414commit 75bef5b488245467b6638e25cd22006b306e8536 415Author: Jeremy Huddleston <jeremyhu@apple.com> 416Date: Mon Mar 12 18:36:52 2012 -0700 417 418 Revert "Treat unexpected returned events from poll as errors" 419 420 This commit caused regressions: 421 https://bugs.freedesktop.org/show_bug.cgi?id=47203 422 https://bugs.freedesktop.org/show_bug.cgi?id=47216 423 424 This reverts commit 70bb9e28d37fff4ead4d0a2c672af77059765fa4. 425 426commit 8ab1833a80a18131d897f6d9965545c16acef921 427Author: Alan Coopersmith <alan.coopersmith@oracle.com> 428Date: Wed Mar 7 17:57:26 2012 -0800 429 430 libXt 1.1.2 431 432 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 433 434commit aa0f30641769968e0453a7d02f3f8e5955641336 435Author: Matt Dew <marcoz@osource.org> 436Date: Mon Jan 16 16:24:32 2012 -0700 437 438 informaltable cleanup 439 440 On certain tables, add top and bottom borders to table header 441 and a bottom border to the table. This matches what those 442 tables in the old pdfs looked like. 443 444 the <?dbfo keep-together='always'> prevents tables from 445 splitting across pages. Useful for tiny tables. 446 447 Converting the colwidth to a floating point, IE, 1* -> 1.0* 448 cleans up these build errors: 449 WARNING: table-layout="fixed" and column-width unspecified => 450 falling back to proportional-column-width(1) 451 452 Signed-off-by: Matt Dew <marcoz@osource.org> 453 454commit 70bb9e28d37fff4ead4d0a2c672af77059765fa4 455Author: Jeremy Huddleston <jeremyhu@apple.com> 456Date: Wed Jan 4 10:33:29 2012 -0800 457 458 Treat unexpected returned events from poll as errors 459 460 Inspired by libxcb's f0565e8f06aadf760a9065a97b8cf5ab9cbd18de 461 462 Resolves https://bugs.freedesktop.org/show_bug.cgi?id=20048 463 464 Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com> 465 466commit 6dd231d37c036d182e789f0af37ee5417792ad4e 467Author: Stephen Turnbull <stephenjturnbull@gmail.com> 468Date: Wed Jan 4 10:18:29 2012 -0800 469 470 Don't re-enter the WaitLoop if block is set to false 471 472 See: https://bugs.freedesktop.org/show_bug.cgi?id=20048 473 474 Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com> 475 476commit 0d8ef503e2d51d727a912d6ef3cf017608e45b7f 477Author: Gaetan Nadon <nadon@memsize.(none)> 478Date: Sat Dec 31 09:03:39 2011 -0500 479 480 Add .gitignore for the newly added DocBook/XML generated files. 481 482 Signed-off-by: Gaetan Nadon <nadon@memsize.(none)> 483 484commit 9cbf06b9f7b1378ce3424837c979c3241516bf9b 485Author: Gaetan Nadon <nadon@memsize.(none)> 486Date: Fri Dec 30 17:08:14 2011 -0500 487 488 docbook.am: embed css styles inside the HTML HEAD element 489 490 Rather than referring to the external xorg.css stylesheet, embed the content 491 of the file in the html output produced. This is accomplished by using 492 version 1.10 of xorg-xhtml.xsl. 493 494 This makes the whole html docs tree much more relocatable. 495 In addition, it eliminates xorg.css as a runtime file which makes 496 xorg-sgml-doctools a build time only package. 497 498 Signed-off-by: Gaetan Nadon <nadon@memsize.(none)> 499 500commit 7aa5d801d3b17fc9a1af9d5f6bc0283e3762cca2 501Author: Matt Dew <marcoz@osource.org> 502Date: Wed Dec 28 21:17:53 2011 -0700 503 504 Remove old files. 505 506commit b8818e1233b75c6bd47a6d2197fabf3a036a2119 507Author: Matt Dew <marcoz@osource.org> 508Date: Wed Dec 28 20:34:51 2011 -0700 509 510 Initial docbook conversion. 511 512commit fd0da0d44a8501edaac3be7fac9449ad730d8bf4 513Author: Alan Coopersmith <alan.coopersmith@oracle.com> 514Date: Fri Oct 7 19:45:21 2011 -0700 515 516 Add const attributes to TMparse typedefs to fix gcc -Wwrite-strings warnings 517 518 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 519 520commit af9e4b75167c0e31ec02d5ababf204daa12f500d 521Author: Alan Coopersmith <alan.coopersmith@oracle.com> 522Date: Fri Oct 7 19:32:08 2011 -0700 523 524 Add const attributes to slashDotXdefaults to fix gcc -Wwrite-strings warnings 525 526 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 527 528commit 682ca8daf29285ef5013751784a7ec98962b7cbb 529Author: Alan Coopersmith <alan.coopersmith@oracle.com> 530Date: Fri Oct 7 19:30:11 2011 -0700 531 532 Make implementation_default_path return const char * 533 534 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 535 536commit d3c2fbcd83ed9ae9b6cc8d765badca7f8d3261b2 537Author: Alan Coopersmith <alan.coopersmith@oracle.com> 538Date: Fri Oct 7 19:23:37 2011 -0700 539 540 Make gravity strings const to fix gcc -Wwrite-strings warnings 541 542 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 543 544commit 94ffb37790ce33fdf49d07dd1ade60b6d8376aa7 545Author: Alan Coopersmith <alan.coopersmith@oracle.com> 546Date: Fri Oct 7 19:21:10 2011 -0700 547 548 Convert ISOLatin1 functions to specify args as const char * 549 550 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 551 552commit 1f48cadaa88423a012613a0b456ec8795c8c0992 553Author: Jeremy Huddleston <jeremyhu@apple.com> 554Date: Fri Oct 7 17:08:07 2011 -0700 555 556 Whitespace changes related to cleaning up previous patch 557 558 Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com> 559 560commit 9e898aa4fd964e888044e2fa2d64089505331f62 561Author: Jeremy Huddleston <jeremyhu@apple.com> 562Date: Fri Oct 7 17:01:34 2011 -0700 563 564 Don't pop elements from our array while we're itterating through it. 565 566 https://bugs.freedesktop.org/show_bug.cgi?id=22543 567 568 Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com> 569 570commit df2008411a5c6a735af2b0fced01df660bb6978a 571Author: Alan Coopersmith <alan.coopersmith@oracle.com> 572Date: Mon Sep 26 15:29:45 2011 -0700 573 574 makestrs: Add const attributes to fix gcc -Wwrite-strings warnings 575 576 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 577 578commit 9347b890ba24db41c7cb6c6e76564e4896bc8cac 579Author: Olivier Fourdan <fourdan@xfce.org> 580Date: Tue Sep 20 16:45:02 2011 -0700 581 582 Bug 40577 - Missing bound checking in FreeSelectionProperty() 583 584 https://bugs.freedesktop.org/show_bug.cgi?id=40577 585 586 FreeSelectionProperty() did not check for the count of items in array 587 and relied on a NULL terminated list, which can cause libXt to crash if 588 FreeSelectionProperty() follows a call to GetSelectionProperty() which 589 reallocates the array. 590 591 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 592 593commit 5691187ced24b16a951e2b8308bcc2b65dd36eee 594Author: Alan Coopersmith <alan.coopersmith@oracle.com> 595Date: Fri Sep 16 22:54:05 2011 -0700 596 597 Strip trailing whitespace 598 599 Performed with: find * -type f | xargs perl -i -p -e 's{[ \t]+$}{}' 600 git diff -w & git diff -b show no diffs from this change 601 602 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 603 604commit 6c0b44caa9b424c7e05327e8ddc9273b87a0f81f 605Author: Jeremy Huddleston <jeremyhu@apple.com> 606Date: Sun Oct 2 13:35:26 2011 -0700 607 608 LP64 fix for TypedArgToArg() 609 610 https://bugs.freedesktop.org/show_bug.cgi?id=12662 611 612 Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com> 613 614commit 2c29b8b71575d73db6b9542b24fa3312a2cf2f86 615Author: Jon TURNEY <jon.turney@dronecode.org.uk> 616Date: Wed Apr 27 12:32:39 2011 +0100 617 618 Only link with ws2_32 for mingw target 619 620 For the Cygwin target, we will be using the socket functions provided 621 by the Cygwin DLL, so linking with ws2_32 is unnecessary, even though 622 it may be present. 623 624 Signed-off-by: Jon TURNEY <jon.turney@dronecode.org.uk> 625 Reviewed-by: Cyril Brulebois <kibi@debian.org 626 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 627 628commit 4ee8867047eaff3b121478b7199201d669e2c85d 629Author: Gaetan Nadon <memsize@videotron.ca> 630Date: Tue May 24 14:37:03 2011 -0400 631 632 Update README for documentation reference 633 634 Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com> 635 Reviewed-by: Cyril Brulebois <kibi@debian.org> 636 Signed-off-by: Gaetan Nadon <memsize@videotron.ca> 637 638commit 5e299936489bf3476464f00ebf3ffa3fa893cc23 639Author: Alan Coopersmith <alan.coopersmith@oracle.com> 640Date: Fri Mar 18 19:36:05 2011 -0700 641 642 Add test case for XtCvtIntToPixmap fix in commit 16d9941f3aa38 643 644 Expanded from original Sun test case for Solaris bug 4163152. 645 Verified that with commit 16d9941f3aa38 reverted, this test case 646 fails on amd64, with it present, this test case passes. 647 648 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 649 650commit 6fc14afa3fa98503248138f7f6984ee33a9bd889 651Author: Alan Coopersmith <alan.coopersmith@oracle.com> 652Date: Mon Mar 14 19:07:12 2011 -0700 653 654 Add test case for XtAppMainLoop bug 34715 655 656 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 657 Reviewed-by: Gaetan Nadon <memsize@videotron.ca> 658 659commit 4bf003a824577b5a46a59b3b3e91687b530ee48f 660Author: Alan Coopersmith <alan.coopersmith@oracle.com> 661Date: Thu Mar 10 14:23:44 2011 -0800 662 663 Add test framework similar to xserver and use it to test XtAsprintf 664 665 Only two simple test cases to start with: 666 - compares the results of snprintf of a short string to a static buffer 667 with the new buffer returned by XtAsprintf. 668 - compare the results of using XtAsprintf to replicate a portion of a 669 very long string with the original string. 670 671 Uses malloc debugging flags for various platforms to try to catch errors 672 with uninitialized memory (such as the recently fixed failure to terminate 673 the string). 674 675 Requires xorg-macros 1.13 for XORG_ENABLE_UNIT_TESTS and XORG_WITH_GLIB. 676 677 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 678 Reviewed-by: Gaetan Nadon <memsize@videotron.ca> 679 680commit 42c611d9f8c80528f6e36ceb0ce245b06e8b1e8e 681Author: Jordan Hayes <jordan@bitway.com> 682Date: Sun Mar 6 11:35:47 2011 -0800 683 684 Bug 34715: XtAppMainLoop doesn't work without a Display 685 686 https://bugs.freedesktop.org/show_bug.cgi?id=34715 687 688 XtAppNextEvent() doesn't return until there's an actual XEvent to be 689 handled; it handles Xt-internal events (inputs, timers, signals) 690 itself, but doesn't return (because of course, those aren't XEvents). 691 Which means that the exit flag doesn't get a chance to break the loop 692 until/unless there's an actual XEvent. 693 694 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 695 696commit c16d3cc264c45601f0e59bdd29e438c7c9679721 697Author: Julien Cristau <jcristau@debian.org> 698Date: Thu Mar 10 10:19:59 2011 +0100 699 700 Bump to 1.1.1 701 702 Signed-off-by: Julien Cristau <jcristau@debian.org> 703 704commit fe2cf6e2b70e57624aad71f510ff8c6addaae196 705Author: Cyril Brulebois <kibi@debian.org> 706Date: Tue Mar 8 16:09:49 2011 +0100 707 708 XtAsprintf: Fix memory corruption. 709 710 Don't write the null terminator to a random place, this can trigger some 711 segfault in XtOpenDisplay() and other annoyances. 712 713 Debian Bug #617208 <http://bugs.debian.org/617208> 714 715 Signed-off-by: Cyril Brulebois <kibi@debian.org> 716 Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com> 717 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 718 719commit f6c791b5f318d8805db4cb6c74b1bc2e91d6c15c 720Author: Gaetan Nadon <memsize@videotron.ca> 721Date: Sun Mar 6 13:43:46 2011 -0500 722 723 man: replace hard coded section number 3Xt with __libmansuffix__ #35050 724 725 http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=512130 726 727 The Xt manpages are installed in section 3 (and not 3Xt as upstream 728 would have it). But, internal cross-references (in particular, in the 729 SEE ALSO part) are left alone, and keep pointing at Foo(3Xt). The 730 result is that they can't be automatically followed from manpage 731 sanitizers such as dwww or emacs. 732 733 Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com> 734 Signed-off-by: Gaetan Nadon <memsize@videotron.ca> 735 736commit 9ccf14fddedc11bd17b3ae30612c6f70f4cd7e14 737Author: Alan Coopersmith <alan.coopersmith@oracle.com> 738Date: Fri Mar 4 16:31:59 2011 -0800 739 740 Don't need to use target-specific CFLAGS for makestrs 741 742 It's the only thing built in that directory, so we can use AM_CFLAGS 743 and drop the requirement for AM_PROG_CC_C_O in configure.ac 744 745 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 746 Reviewed-by: Gaetan Nadon <memsize@videotron.ca> 747 Tested-by: Gaetan Nadon <memsize@videotron.ca> 748 749commit 16d9941f3aa38dde115cbff639e131761c1b36d0 750Author: Alan Coopersmith <alan.coopersmith@oracle.com> 751Date: Fri Mar 4 15:43:43 2011 -0800 752 753 Incorrect cast in XtCvtIntToPixmap could cause bus error on 64-bit machines 754 755 Originally fixed by Leo Binchy for Sun Bug 4163152 to resolve bus error 756 on VSW5 (XTS) testing on 64-bit SPARC test run on Solaris 7. 757 ( Testcase: XtCvtIntToPixmap, Purpose: 1) 758 759 Since we're converting from Int to Pixmap, need to access the argument 760 passed in as an int, not a Pixmap, which is consistent with the other 761 IntToXXX converters in this file. 762 763 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 764 Reviewed-by: Matt Turner <mattst88@gmail.com> 765 766commit 994443524ade46bad03eea0acbd1410d561c591d 767Author: Jeremy Huddleston <jeremyhu@apple.com> 768Date: Fri Mar 4 16:30:58 2011 -0800 769 770 configure: Bump version to 1.1.0 for release 771 772 Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com> 773 774commit c0a233895cc8270ec0ff0bd2abb88d3f6dd524c3 775Author: Jeremy Huddleston <jeremyhu@apple.com> 776Date: Fri Mar 4 12:49:48 2011 -0800 777 778 darwin: Don't use poll() when expected to run on darwin10 and prior 779 780 Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com> 781 782commit abf6062715c7d1390e516261a31abde4ed7ea64e 783Author: Alan Coopersmith <alan.coopersmith@oracle.com> 784Date: Wed Feb 2 23:29:46 2011 -0800 785 786 Shell.c: TopLevelSetValues ignores iconic state if shell not yet realized 787 788 Fix originally created by Leo Binchy for Sun to fix Solaris bug 789 1243761 The XmNiconic resource doesn't work 790 791 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 792 793commit b1eaa18835ec7c3a11e580340625b35c18edf7ca 794Author: Alan Coopersmith <alan.coopersmith@oracle.com> 795Date: Wed Feb 2 23:21:02 2011 -0800 796 797 GetResources: protect against underflow when type conversion fails 798 799 Fix originally created by Leo Binchy for Sun to fix Solaris bug 1211553: 800 XtVaCreateManagedWidget with list of resources XtVaTypedArg cause core dump 801 802 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 803 804commit 21c1cc98d8210a3ce2a4bf62ecee9168fdd99dcb 805Author: Alan Coopersmith <alan.coopersmith@oracle.com> 806Date: Wed Feb 2 22:42:13 2011 -0800 807 808 Remove unused #ifdef UNALIGNED version of Xt macros & functions 809 810 Trying to outsmart the compiler and libc is a losing battle, but 811 since UNALIGNED was never defined, we weren't even trying. 812 813 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 814 815commit 19538f2b4553221b35831e13ec70ed9db436dd32 816Author: Gaetan Nadon <memsize@videotron.ca> 817Date: Wed Feb 2 11:43:44 2011 -0500 818 819 config: comment, minor upgrade, quote and layout configure.ac 820 821 Group statements per section as per Autoconf standard layout 822 Quote statements where appropriate. 823 Autoconf recommends not using dnl instead of # for comments 824 825 Use AC_CONFIG_FILES to replace the deprecated AC_OUTPUT with parameters. 826 Add AC_CONFIG_SRCDIR([Makefile.am]) 827 828 This helps automated maintenance and release activities. 829 Details can be found in http://wiki.x.org/wiki/NewModuleGuidelines 830 831commit 7fd1e98987967b23f66da4b18ebf9798a68cd370 832Author: Gaetan Nadon <memsize@videotron.ca> 833Date: Fri Jan 28 16:07:07 2011 -0500 834 835 config: replace deprecated AC_HELP_STRING with AS_HELP_STRING 836 837 This silences an Automake warning. 838 839 Signed-off-by: Gaetan Nadon <memsize@videotron.ca> 840 841commit 84e512a94295387bd0625ce619fc8bd381395c71 842Author: Alan Coopersmith <alan.coopersmith@oracle.com> 843Date: Wed Dec 22 10:49:42 2010 -0800 844 845 Convert ALLOCATE_LOCAL + sprintf to XtAsprintf 846 847 Now that we don't need to separately strlen the format string, put it 848 directly into the function call to clear gcc warnings of: 849 Initialize.c:397: warning: format not a string literal, argument types not checked 850 851 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 852 853commit c80650fddec8596ef7278e37aa12ce2076c54e93 854Author: Alan Coopersmith <alan.coopersmith@oracle.com> 855Date: Thu Dec 9 23:36:31 2010 -0800 856 857 Convert ResConfig.c to use XtAsprintf() instead of XtMalloc + sprintf 858 859 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 860 861commit ac07da253415ccb8b6322feedf7969967357050e 862Author: Alan Coopersmith <alan.coopersmith@oracle.com> 863Date: Wed Jan 12 23:09:29 2011 -0800 864 865 Add XtAsprintf() as a new exported API 866 867 Like asprintf() but using XtMalloc() to tie into the Xt memory allocation 868 and error handling subsystems. 869 870 Bumps libXt version to 1.0.99.1 so that modules can set their pkg-config 871 dependency to libXt >= 1.0.99.1 to require XtAsprintf(). 872 873 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 874 875commit 84f73c49db8071c06f27609ce7cc7a32a17351a9 876Author: Alan Coopersmith <alan.coopersmith@oracle.com> 877Date: Thu Dec 9 23:44:42 2010 -0800 878 879 Convert some sprintf calls to snprintf 880 881 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 882 Reviewed-by: Julien Cristau <jcristau@debian.org> 883 884commit 14145f3e87a039640cd8bdb2e2f4f30ca9b2a710 885Author: Alan Coopersmith <alan.coopersmith@oracle.com> 886Date: Sun Dec 5 01:21:06 2010 -0800 887 888 config: AC_PROG_CC is provided by XORG_DEFAULT_OPTIONS now 889 890 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 891 892commit a73b8f06b95216083c8335fad45dd0de7f44a529 893Author: Alan Coopersmith <alan.coopersmith@oracle.com> 894Date: Sun Dec 5 01:19:10 2010 -0800 895 896 config: replace deprecated AM_CONFIG_HEADER with AC_CONFIG_HEADERS 897 898 Regroup AC statements under the Autoconf initialization section. 899 Regroup AM statements under the Automake initialization section. 900 Add missing AC_CONFIG_SRCDIR 901 902 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 903 904commit 2bf988d229d2b85208cc42094ce7202204d628af 905Author: Alan Coopersmith <alan.coopersmith@oracle.com> 906Date: Sun Dec 5 00:33:44 2010 -0800 907 908 Remove ancient #if defined(macII) hack for A/UX from makestrs.c 909 910 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 911 912commit 96508e1b9da790d4b824a42246d1e86379101733 913Author: Alan Coopersmith <alan.coopersmith@oracle.com> 914Date: Sun Dec 5 00:19:30 2010 -0800 915 916 Remove non-USE_SNPRINTF case from src/Error.c 917 918 unifdef -DUSE_SNPRINTF src/Error.c 919 Plus manual removal of old #ifdef notyet section that said not enough 920 platforms had snprintf support yet. Welcome to the new millenium! 921 922 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 923 924commit 0b780f8cc8bc2606fc3173628c4d3065aae190f8 925Author: walter harms <wharms@bfs.de> 926Date: Sun Nov 7 18:51:19 2010 +0100 927 928 remove strcmp in src/ResConfig.c 929 930 Make remainder check like in the rest of code and replace strcmp() 931 932 Signed-off-by: walter harms <wharms@bfs.de> 933 Reviewed-by: Mikhail Gusarov <dottedmag@dottedmag.net> 934 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 935 936commit 59598f20ba160fd92abcf88a30f0008425e7b1ec 937Author: walter harms <wharms@bfs.de> 938Date: Tue Oct 26 13:46:32 2010 +0200 939 940 QueryEventMask: fix NULL check 941 942 _XtGetPerWidgetInput may return NULL 943 avoid possible NULL references 944 945 Signed-off-by: walter harms <wharms@bfs.de> 946 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 947 948commit 8572cba2b9094dcd8ee5b4c5bcf3c38f1f291918 949Author: walter harms <wharms@bfs.de> 950Date: Sat Oct 30 10:47:23 2010 +0200 951 952 src/Resource.c: Fix possible NULL access 953 954 Signed-off-by: walter harms <wharms@bfs.de> 955 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 956 957commit 6c75b449f6436b787247e164bee03691af2a4f55 958Author: walter harms <wharms@bfs.de> 959Date: Fri Oct 29 17:24:48 2010 +0200 960 961 XtFree() can handle NULL , remove check 962 963 Signed-off-by: walter harms <wharms@bfs.de> 964 Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com> 965 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 966 967commit 0d29ca61b94cd34b04c5eedae443620a616d01c3 968Author: Alan Coopersmith <alan.coopersmith@oracle.com> 969Date: Thu Oct 28 12:03:25 2010 -0700 970 971 libXt 1.0.9 972 973 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 974 975commit 87d019acc715c5ab4a5b2431ec882a0f84946c20 976Author: Jesse Adkins <jesserayadkins@gmail.com> 977Date: Tue Sep 28 13:30:03 2010 -0700 978 979 Purge cvs tags. 980 981 Signed-off-by: Jesse Adkins <jesserayadkins@gmail.com> 982 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 983 984commit aa70c813f6eac2cad2944a98a1a444ea69dc024f 985Author: Gaetan Nadon <memsize@videotron.ca> 986Date: Tue Oct 5 09:07:30 2010 -0400 987 988 makestrs: Use MAN_SUBST now supplied in XORG_MANPAGE_SECTIONS 989 990 The value of MAN_SUBST is the same for all X.Org packages. 991 992 Signed-off-by: Gaetan Nadon <memsize@videotron.ca> 993 994commit 9d80fae6bc2cff26f320ff5b7b2ca7333ab3d677 995Author: Gaetan Nadon <memsize@videotron.ca> 996Date: Tue Oct 5 09:04:19 2010 -0400 997 998 makestrs: Use $(SED) from AC_PROG_SED supplied by XORG_DEFAULT_OPTIONS 999 1000 Use the appropriate platform version of sed 1001 1002 Signed-off-by: Gaetan Nadon <memsize@videotron.ca> 1003 1004commit 71a7e999a4d99aa54ea7268b928d87e27cea6279 1005Author: Gaetan Nadon <memsize@videotron.ca> 1006Date: Tue Oct 5 09:02:41 2010 -0400 1007 1008 makestrs: remove unsed $(appman_DATA) 1009 1010 Man page is not installed, this variable is not defined. 1011 1012 Signed-off-by: Gaetan Nadon <memsize@videotron.ca> 1013 1014commit 0c968d108d8575db0149922b8375533fc54d0b7a 1015Author: walter harms <wharms@bfs.de> 1016Date: Fri Oct 1 15:13:43 2010 +0200 1017 1018 Honor that GetClassActions() may return NULL. 1019 1020 Signed-off-by: Walter <wharms@bfs.de> 1021 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 1022 1023commit 6e4dbf06d4d049666cf81207d9f853a0a40c71b7 1024Author: Alan Coopersmith <alan.coopersmith@oracle.com> 1025Date: Thu Sep 23 18:27:46 2010 -0700 1026 1027 Sun's copyrights belong to Oracle now 1028 1029 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 1030 1031commit 94680a56a32ada91f07db34e02a526dca5ecbbf4 1032Author: Ryan Hajdaj <rhajdaj@gotnothin.com> 1033Date: Thu Sep 23 18:13:28 2010 -0700 1034 1035 Bug 1478: Selection.c damages user error handler function 1036 1037 https://bugs.freedesktop.org/show_bug.cgi?id=1478 1038 1039 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 1040 1041commit d53a3deb52100596bef9fb7b6c6e7ba15ed18bda 1042Author: walter harms <wharms@bfs.de> 1043Date: Wed Sep 22 19:25:20 2010 +0200 1044 1045 fix dereference in TMprint.c 1046 1047 the current codes checks for 1048 eventWidget == NULL after accessing 1049 eventWidget->core.tm.proc_table 1050 1051 now it checks for eventWidget before access eventWidget->core.tm.proc_table. 1052 1053 Signed-off-by: walter harms <wharms@bfs.de> 1054 Reviewed-by: Jeremy Huddleston <jeremyhu@apple.com> 1055 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 1056 1057commit 47e73791d4a88e59a797e9dde1ab2d5f58ff774c 1058Author: Gaetan Nadon <memsize@videotron.ca> 1059Date: Tue Aug 17 10:17:57 2010 -0400 1060 1061 man: whitespace management 1062 1063 Signed-off-by: Gaetan Nadon <memsize@videotron.ca> 1064 1065commit 8c307c168c724368be2b9e784365b40d4b001aa3 1066Author: Gaetan Nadon <memsize@videotron.ca> 1067Date: Tue Aug 17 09:21:36 2010 -0400 1068 1069 man: store shadow man pages in git rather than generating them 1070 1071 Simplify the build process and the makefile. 1072 1073 Local fix in CVS for bug 5628 is not required 1074 as the problem has been fixed in 1075 util-macros d9062e4077ebfd0985baf8418f3d0f111b9ddbba 1076 1077 Signed-off-by: Gaetan Nadon <memsize@videotron.ca> 1078 1079commit 198ac897c7136425a20011a6c99f80cb925d622b 1080Author: Gaetan Nadon <memsize@videotron.ca> 1081Date: Fri Aug 6 12:32:10 2010 -0400 1082 1083 man: using the C preprocessor is not required for man pages. 1084 1085 There were no special symbols needing cpp. 1086 Everything can be handled by the default MAN_SUBSTS in util-macros. 1087 1088 Signed-off-by: Gaetan Nadon <memsize@videotron.ca> 1089 1090commit 74cb722a974010fa3c82dc57a036f97768b3695b 1091Author: Alan Coopersmith <alan.coopersmith@oracle.com> 1092Date: Tue Jun 8 20:26:29 2010 -0700 1093 1094 Move Xt specs from xorg-docs module 1095 1096 For now, just checked in and included in dist tarballs, not processed 1097 into a usable format - same as it was in xorg-docs 1098 1099 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 1100 1101commit 56621d3ec521dd30fabb1a77ad1c396baa740569 1102Author: Alan Coopersmith <alan.coopersmith@oracle.com> 1103Date: Tue May 18 18:21:32 2010 -0700 1104 1105 Move sm from Requires to Requires.private in xt.pc 1106 1107 As explained in https://bugs.freedesktop.org/show_bug.cgi?id=26943 1108 since libXt callers need the SM headers but don't necessarily need to 1109 link directly to libSM, it should be in Requires.private, not Requires. 1110 1111 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 1112 Reviewed-by: Adam Jackson <ajax@redhat.com> 1113 1114commit f3d2ac478918b99c51e0b4bff97935f2255ab537 1115Author: Alan Coopersmith <alan.coopersmith@oracle.com> 1116Date: Fri Apr 16 16:08:39 2010 -0700 1117 1118 Bug 26943: wrong dependencies in xt.pc.in 1119 1120 https://bugs.freedesktop.org/show_bug.cgi?id=26943 1121 1122 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 1123 1124commit 723d78fe8e159dee1281f3e4f8dc03825aa334b6 1125Author: Gaetan Nadon <memsize@videotron.ca> 1126Date: Thu Apr 1 20:30:43 2010 -0400 1127 1128 config: update and relocate AX_DEFINE_DIR macro 1129 1130 Remove deprecated acinclude.m4 macro container file 1131 Use separate macro files as per autoconf recommendation 1132 Use the latest macro from GNU 1133 1134 Signed-off-by: Gaetan Nadon <memsize@videotron.ca> 1135 1136commit 99a1c1f2cfa595500704d54e223f1c9e0ff9a10e 1137Author: Yaakov Selkowitz <yselkowitz@users.sourceforge.net> 1138Date: Fri Apr 2 01:43:22 2010 -0500 1139 1140 Use automake silent rules for BUILT_SOURCES generation 1141 1142 Signed-off-by: Yaakov Selkowitz <yselkowitz@users.sourceforge.net> 1143 Acked-by: Gaetan Nadon <memsize@videotron.ca> 1144 1145commit cf3198fdc302bb017e6cc8014abc3bdbfeb9f6b1 1146Author: Gaetan Nadon <memsize@videotron.ca> 1147Date: Mon Mar 29 16:50:34 2010 -0400 1148 1149 config: update AC_PREREQ statement to 2.60 1150 1151 Unrelated to the previous patches, the new value simply reflects 1152 the reality that the minimum level for autoconf to configure 1153 all x.org modules is 2.60 dated June 2006. 1154 1155 ftp://ftp.gnu.org/gnu/autoconf/autoconf-2.60.tar.gz 1156 1157 Signed-off-by: Gaetan Nadon <memsize@videotron.ca> 1158 1159commit 5a876831762c5d22101bd2fa71203647858f66b2 1160Author: Gaetan Nadon <memsize@videotron.ca> 1161Date: Mon Mar 29 14:53:49 2010 -0400 1162 1163 config: remove the pkgconfig pc.in file from EXTRA_DIST 1164 1165 Automake always includes it in the tarball. 1166 1167 Signed-off-by: Gaetan Nadon <memsize@videotron.ca> 1168 1169commit cba12c108da0c3eb868a5cb08f641b6d036e0d05 1170Author: Gaetan Nadon <memsize@videotron.ca> 1171Date: Sat Mar 27 16:30:02 2010 -0400 1172 1173 config: remove execute permission on configureation file 1174 1175 Introduced in commit 6baea764567c3327f1d85ba91375adaea6dab46d 1176 "Link with winsock for WIN32 platforms" 1177 1178 Signed-off-by: Gaetan Nadon <memsize@videotron.ca> 1179 1180commit e3bce11a8ea7e0175a6f08367bace9b0eb2b898a 1181Author: Rémi Cardona <remi@gentoo.org> 1182Date: Mon Mar 15 22:59:04 2010 +0100 1183 1184 libXt 1.0.8 1185 1186 Signed-off-by: Rémi Cardona <remi@gentoo.org> 1187 1188commit a1a8df535fa5ab3748404bdeb07e61beb604b14e 1189Author: Alan Coopersmith <alan.coopersmith@sun.com> 1190Date: Thu Jan 14 20:07:46 2010 -0800 1191 1192 Update Sun license notices to current X.Org standard form 1193 1194 Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com> 1195 1196commit 6393306d1a2eb8239f108a773f342495e1cfd85c 1197Author: Gaetan Nadon <memsize@videotron.ca> 1198Date: Thu Jan 14 15:57:31 2010 -0500 1199 1200 COPYING: add missing copyright notices 1201 1202 Refer to: ActionHook.c 1203 Copyright 1987, 1988 by Digital Equipment Corporation 1204 Copyright 1993 by Sun Microsystems, Inc. Mountain View, CA. 1205 Copyright 1987, 1988, 1998 The Open Group 1206 1207 Signed-off-by: Gaetan Nadon <memsize@videotron.ca> 1208 Reviewed-by: Peter Hutterer <peter.hutterer@who-t.net> 1209 Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com> 1210 1211commit b798093fc6cbcf35c095f3401586d2741adcd2cd 1212Author: Jeremy Huddleston <jeremyhu@freedesktop.org> 1213Date: Fri Dec 11 17:04:23 2009 -0800 1214 1215 darwin: xnu doesn't support poll on ttys on the master side. 1216 1217 <rdar://problem/7360546> 1218 1219 Signed-off-by: Jeremy Huddleston <jeremyhu@freedesktop.org> 1220 1221commit e0ac2ea8b211bdca848679ee59362384f0f97e36 1222Author: Alan Coopersmith <alan.coopersmith@sun.com> 1223Date: Mon Dec 7 22:28:53 2009 -0800 1224 1225 Fix make distcheck (./util/makestrs.1 left after distclean) 1226 1227 Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com> 1228 1229commit 345633dc9c79b32a1b391dfb4dfedf87ae9e291b 1230Author: Rémi Cardona <remi@gentoo.org> 1231Date: Mon Nov 9 12:26:17 2009 +0100 1232 1233 Don't install makestrs on the system 1234 1235 It has no known outside-libXt users. Let's not install it and its man page. 1236 1237 Signed-off-by: Rémi Cardona <remi@gentoo.org> 1238 Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com> 1239 1240commit ed31677bb9b1dd9498715a922763968917b87e49 1241Author: Gaetan Nadon <memsize@videotron.ca> 1242Date: Fri Nov 27 20:56:04 2009 -0500 1243 1244 Makefile.am: add ChangeLog and INSTALL on MAINTAINERCLEANFILES 1245 1246 Now that the INSTALL file is generated. 1247 Allows running make maintainer-clean. 1248 1249commit 2d95ad4beed294a0a30fdb1d8e7798fa62455a41 1250Author: Gaetan Nadon <memsize@videotron.ca> 1251Date: Wed Oct 28 14:09:10 2009 -0400 1252 1253 INSTALL, NEWS, README or AUTHORS files are missing/incorrect #24206 1254 1255 Add missing INSTALL file. Use standard GNU file on building tarball 1256 README may have been updated 1257 Remove AUTHORS file as it is empty and no content available yet. 1258 Remove NEWS file as it is empty and no content available yet. 1259 1260commit 7cc872e9934f62bf56976d5592ce621e30b1f95a 1261Author: Gaetan Nadon <memsize@videotron.ca> 1262Date: Tue Oct 27 15:07:26 2009 -0400 1263 1264 Deploy the new XORG_DEFAULT_OPTIONS #24242 1265 1266 This macro aggregate a number of existing macros that sets commmon 1267 X.Org components configuration options. It shields the configuration file from 1268 future changes. 1269 1270commit 7ba57d7789362c2c2e646cc3b896802e6cbcb039 1271Author: Gaetan Nadon <memsize@videotron.ca> 1272Date: Mon Oct 26 22:08:43 2009 -0400 1273 1274 Makefile.am: ChangeLog not required: EXTRA_DIST or *CLEANFILES #24432 1275 1276 ChangeLog filename is known to Automake and requires no further 1277 coding in the makefile. 1278 1279commit b4309cadb1de581d191fce924dac8fc7e55e5fb8 1280Author: Gaetan Nadon <memsize@videotron.ca> 1281Date: Thu Oct 22 12:34:19 2009 -0400 1282 1283 .gitignore: use common defaults with custom section # 24239 1284 1285 Using common defaults will reduce errors and maintenance. 1286 Only the very small or inexistent custom section need periodic maintenance 1287 when the structure of the component changes. Do not edit defaults. 1288 1289commit 80ff1f362eefabe4be62784b001500b49943f1a5 1290Author: Jeremy Huddleston <jeremyhu@freedesktop.org> 1291Date: Wed Oct 21 12:47:26 2009 -0700 1292 1293 This is not a GNU project, so declare it foreign. 1294 1295 On Wed, 2009-10-21 at 13:36 +1000, Peter Hutterer wrote: 1296 > On Tue, Oct 20, 2009 at 08:23:55PM -0700, Jeremy Huddleston wrote: 1297 > > I noticed an INSTALL file in xlsclients and libXvMC today, and it 1298 > > was quite annoying to work around since 'autoreconf -fvi' replaces 1299 > > it and git wants to commit it. Should these files even be in git? 1300 > > Can I nuke them for the betterment of humanity and since they get 1301 > > created by autoreconf anyways? 1302 > 1303 > See https://bugs.freedesktop.org/show_bug.cgi?id=24206 1304 1305 As an interim measure, replace AM_INIT_AUTOMAKE([dist-bzip2]) with 1306 AM_INIT_AUTOMAKE([foreign dist-bzip2]). This will prevent the generation 1307 of the INSTALL file. It is also part of the 24206 solution. 1308 1309 Signed-off-by: Jeremy Huddleston <jeremyhu@freedesktop.org> 1310 1311commit 5d63df924d7f66d2207c8db67e5d6cce8c7b245b 1312Author: Alan Coopersmith <alan.coopersmith@sun.com> 1313Date: Thu Oct 8 21:50:35 2009 -0700 1314 1315 libXt 1.0.7 1316 1317 Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com> 1318 1319commit f82769a1a75e17f66b67a5f71dcf889955569a57 1320Author: Alan Coopersmith <alan.coopersmith@sun.com> 1321Date: Thu Oct 8 21:33:27 2009 -0700 1322 1323 Replace AC_DEFINE_DIR with AX_DEFINE_DIR from Autoconf Archive 1324 1325commit 0ce97e4422409de070af7fd70da590db12c58579 1326Author: Alan Coopersmith <alan.coopersmith@sun.com> 1327Date: Tue Oct 6 16:12:03 2009 -0700 1328 1329 Migrate to xorg macros 1.3 & XORG_DEFAULT_OPTIONS 1330 1331 Includes adding many $(AM_V_GEN) calls for the AM_SILENT_RULES included 1332 by XORG_DEFAULT_OPTIONS when automake-1.11 or newer is used 1333 1334 Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com> 1335 1336commit 254e2e0a8197e47bcef3e3c0b461ef8156a1af64 1337Author: Alan Coopersmith <alan.coopersmith@sun.com> 1338Date: Tue Oct 6 16:29:59 2009 -0700 1339 1340 Use make rules instead of shell for loops to generate shadow man pages 1341 1342 Allows parallel make and simpler build logs/error reporting 1343 1344 Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com> 1345 1346commit fedc095da647b6f4fda8ca5edc5644458e2b2fbf 1347Author: Julien Cristau <jcristau@debian.org> 1348Date: Tue Aug 25 18:31:49 2009 +0200 1349 1350 Link against libICE 1351 1352 libXt uses IceConnectionNumber() and IceProcessMessages(), so make sure 1353 we link against -lICE. 1354 1355 Signed-off-by: Julien Cristau <jcristau@debian.org> 1356 1357commit f77482f0618f954de1d080599ada058e9a3c24ff 1358Author: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> 1359Date: Tue Jul 28 11:59:41 2009 +0200 1360 1361 Fix compilation of host tools in cross-compilation case 1362 1363 At 36e9f0d351afbf7fd2595990b2d39e7c551f6420, a fix was added to use 1364 the host gcc instead of the target gcc when cross-compiling 1365 libXt. This fix works, but is not solve the whole problem: the CFLAGS 1366 and LDFLAGS used with the host compilers are the one defined for the 1367 target compiler (and the flags for both compilers might be very 1368 different). 1369 1370 This new fix let libXt obey to CFLAGS_FOR_BUILD and LDFLAGS_FOR_BUILD 1371 environment variables, and use them to compile the host tools in 1372 util/. 1373 1374 Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> 1375 1376commit 369629611609f20c89499c1f6b5562a4f3cca983 1377Author: Adam Jackson <ajax@redhat.com> 1378Date: Thu Jul 2 13:28:01 2009 -0400 1379 1380 libXt 1.0.6 1381 1382commit 28677468c56888b18c44d71a62903d23e5c294cf 1383Author: Jon TURNEY <jon.turney@dronecode.org.uk> 1384Date: Tue May 19 23:25:15 2009 +0100 1385 1386 Cygwin/X: Build fix 1387 1388 Commit c59dd27ecb1751f0b097046b2f892028e5a10a3e replaces __CYGWIN__ with WIN32 1389 in a preprocessor check, as the code is appropriate for both Cygwin and Mingw. 1390 1391 But this isn't quite the right was to do this. Being a Win32 platform is 1392 Cygwin's secret shame, and WIN32 isn't actually defined to avoid turning on 1393 code specific to native-Win API ports 1394 1395 (See http://www.cygwin.com/faq/faq.programming.html#faq.programming.preprocessor) 1396 1397 Yes, this probably means WIN32 could bereplaced by __MINGW32__ everywhere in the 1398 X sources... 1399 1400commit 535f8c5324205b92c15e8755008c33a2766832c8 1401Author: John McKernan <john.mckernan@sun.com> 1402Date: Fri May 1 13:53:03 2009 -0700 1403 1404 Sun bug 4010369: Too slow to process Keycode 0 events in Xt Translation Mgr. 1405 1406 Evaluation from original bug report against Solaris 2.6 in 1996: 1407 1408 According to my investigation with the problem using debuggable 1409 libXt and libXm, keycode 0 keypress events, which are given to 1410 Xt's Translation Manager when inputting any cyrillic/greek characters, 1411 are not cached in Xt's Translation Manager. At the TRANSLATE macro 1412 in the Xt's source lib/Xt/TMkey.c, keycode 0 keyevents are always 1413 given to XtTranslateKeycode() and it consumes a long time to parse 1414 Motif's Translation Manager tables as many times as keycode 0 1415 keyevent are given. 1416 1417 Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com> 1418 1419commit 061d3eebf7a0502afcd9c1831d67c8961feece8d 1420Author: John McKernan <john.mckernan@sun.com> 1421Date: Fri May 1 13:41:26 2009 -0700 1422 1423 Sun bug #1237023: Dtterm crashes in XtDisplayAccelerators() 1424 1425 Don't try to printf if returned string is NULL 1426 1427 Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com> 1428 1429commit e500631954c8d390e8705fde7f50d1acc006406e 1430Author: Jeremy Huddleston <jeremy@yuffie.local> 1431Date: Thu Mar 12 01:03:39 2009 -0700 1432 1433 darwin: Don't use poll() on versions of darwin before darwin10 1434 1435commit 81792a4cb402c4e5275d63465bc5d65599e34a25 1436Author: Alan Coopersmith <alan.coopersmith@sun.com> 1437Date: Mon Feb 2 20:34:36 2009 -0800 1438 1439 Add README with pointers to mailing list, bugzilla & git repos 1440 1441 Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com> 1442 1443commit f56a69f2cf7df1e7cdf2494c5408786e53467374 1444Author: Paulo Cesar Pereira de Andrade <pcpa@mandriva.com.br> 1445Date: Fri Jan 30 18:22:10 2009 -0200 1446 1447 Janitor: ansification, make distcheck, compiler warnings, .gitignore. 1448 1449 Most "compiler" warnings were actually sparse warnings, due to 1450 assigning a integer to a pointer, or an external symbol without 1451 a previous declaration. 1452 1453commit c1f227f94aec6f4555182965fc0d2d8f33fef01f 1454Author: Peter Breitenlohner <peb@mppmu.mpg.de> 1455Date: Mon Oct 20 18:50:37 2008 -0700 1456 1457 X.Org Bug 17942: libXt manpage formatting 1458 1459 <http://bugs.freedesktop.org/show_bug.cgi?id=17942> 1460 1461commit f488a6a218da6b543d1495e607ff1b31b0b48900 1462Author: Daniel Stone <daniel@fooishbar.org> 1463Date: Tue Sep 23 19:14:09 2008 +0300 1464 1465 configure.ac: Minor thinko 1466 1467commit 36e9f0d351afbf7fd2595990b2d39e7c551f6420 1468Author: John Tapsell <johnflux@gmail.com> 1469Date: Tue Sep 23 19:00:42 2008 +0300 1470 1471 configure.ac: Use native compiler for build tools 1472 1473 makestrs is used during the build, so use the native compiler (either 1474 gcc or cc in $PATH, can be overridden as $CC_FOR_BUILD) instead of the 1475 (possibly cross-) compiler. 1476 1477commit ace1676b0630dfe739c3bd712ed2b6e46bdb52f1 1478Author: Alan Coopersmith <alan.coopersmith@sun.com> 1479Date: Mon Jun 23 20:04:29 2008 -0700 1480 1481 Update ac_define_dir.m4 to 2008-04-12 version 1482 1483commit 556918e21fbb67131d979b04f29a0b59fcd87575 1484Author: Alan Hourihane <alanh@tungstengraphics.com> 1485Date: Wed Apr 30 19:15:14 2008 +0100 1486 1487 Set a blank default search path for WIN32 1488 1489commit 56444103a3b2159d334aa87d782fbca987118bbc 1490Author: Alan Hourihane <alanh@tungstengraphics.com> 1491Date: Tue Apr 29 22:44:54 2008 +0100 1492 1493 less speed, more haste 1494 1495commit a393450cbde80b6e7f0e1c4112363eb1313a6cdb 1496Author: Alan Hourihane <alanh@tungstengraphics.com> 1497Date: Tue Apr 29 22:16:05 2008 +0100 1498 1499 fix logic inverted problem 1500 1501commit cd83cf47412b4a5979e152990c3b0870751aee07 1502Author: Colin Harrison <colin.harrison-at-virgin.net> 1503Date: Tue Apr 29 19:45:50 2008 +0100 1504 1505 Reduce the path searches on mingw 1506 1507commit bb6d2a09b87560ae396085ef0981b700924333cd 1508Author: Colin Harrison <colin.harrison-at-virgin.net> 1509Date: Tue Apr 29 13:45:06 2008 +0100 1510 1511 Xming specific configuration file settings 1512 1513commit 6baea764567c3327f1d85ba91375adaea6dab46d 1514Author: Alan Hourihane <alanh@tungstengraphics.com> 1515Date: Tue Apr 29 10:22:35 2008 +0100 1516 1517 Link with winsock for WIN32 platforms 1518 1519commit c59dd27ecb1751f0b097046b2f892028e5a10a3e 1520Author: Colin Harrison <colin.harrison-at-virgin.net> 1521Date: Tue Apr 29 10:19:55 2008 +0100 1522 1523 Fix some build issues for Win32 platforms 1524 1525commit 8e95cb765e88d36c35f868f650c86c62c31ad635 1526Author: Colin Harrison <colin.harrison-at-virgin.net> 1527Date: Wed Apr 23 13:56:28 2008 +0100 1528 1529 Add __MINGW32__ 1530 1531commit 4b64b821a48fe493056271216dbe29d43376954b 1532Author: Matthieu Herrb <matthieu.herrb@laas.fr> 1533Date: Sun Mar 9 08:42:48 2008 +0100 1534 1535 nuke RCS Ids 1536 1537commit b648ed992d2c3ea8a7462a595e51a07085bf4688 1538Author: Alan Coopersmith <alan.coopersmith@sun.com> 1539Date: Fri Mar 7 15:52:27 2008 -0800 1540 1541 Solaris builds need to pass -intelabi to makestrs, even on SPARC 1542 1543 For some reason, when Solaris moved to X11R6.0, the intelabi version 1544 of StringDefs.c/.h was used on SPARC, so now we're stuck with 10+ years 1545 of binaries built to use it. 1546 1547commit c044ea620446db676ee076484fed3268c4d7c695 1548Author: James Cloos <cloos@jhcloos.com> 1549Date: Thu Dec 6 15:51:20 2007 -0500 1550 1551 Add missing PHONY line for automatic ChangeLog generation 1552 1553commit 6b483e355de6c5ee5dc635ab9b817bf72680b016 1554Author: Julien Cristau <jcristau@debian.org> 1555Date: Sat Jun 23 15:20:09 2007 +0100 1556 1557 Allow C++ apps to build using libXt 1558 1559commit 845e51c740574db2f72a5e7c5462d8f56a3c4e22 1560Author: Andreas Luik <luik@orthogon.com> 1561Date: Sun Apr 8 00:43:56 2007 +0300 1562 1563 Recalculate fd_set more aggressively (bug #808) 1564 1565 select() can modify the fd set, so be a bit pessimistic and recalculate 1566 it more often. 1567 1568commit 007d9e5f8b2edc3ff8ce8b2f96b8f56a417bb78d 1569Author: Matthieu Herrb <matthieu.herrb@laas.fr> 1570Date: Mon Feb 26 18:27:43 2007 +0100 1571 1572 Sync XtGetErrorDatabaseText() prototype with reality. 1573 1574commit 4e7031510d05471e77ff48355b23fc8e4302648c 1575Author: Ben Byer <bbyer@bbyer.(none)> 1576Date: Tue Feb 20 01:05:27 2007 -0800 1577 1578 added -flat_namespace to CFLAGS for Darwin 1579 1580commit 92452ca7a51fa77ea60eacd320dbd970e32653c9 1581Author: Alan Coopersmith <alan.coopersmith@sun.com> 1582Date: Sat Jan 27 22:29:03 2007 -0800 1583 1584 Version bump: 1.0.5 1585 1586commit a5c7d56278e569257d3d64ff7681d0a484a1f817 1587Author: Alan Coopersmith <alan.coopersmith@sun.com> 1588Date: Sat Jan 27 22:26:55 2007 -0800 1589 1590 Replace static ChangeLog with dist-hook to generate from git log 1591 1592commit 67772a3f39c5e8c4019336b0bf4d32e70726b0c0 1593Author: Eric S. Raymond <esr@thyrsus.com> 1594Date: Tue Jan 2 17:49:17 2007 -0800 1595 1596 Bug 9514: Markup error in makestrs.1x man page 1597 1598 <https://bugs.freedesktop.org/show_bug.cgi?id=9514> 1599 1600commit 75f83503ba1db628137ffc9d1d9e4f2a7a2fd97a 1601Merge: 2f201b1 153264a 1602Author: Jeremy C. Reed <reed@glacier.reedmedia.net> 1603Date: Sat Dec 9 09:31:02 2006 -0600 1604 1605 Merge branch 'master' of git+ssh://git.freedesktop.org/git/xorg/lib/libXt 1606 1607commit 2f201b177816be7112884bda180d65f5fff19155 1608Author: Jeremy C. Reed <reed@glacier.reedmedia.net> 1609Date: Sat Dec 9 09:28:04 2006 -0600 1610 1611 Don't use "INSTALL" during the build because INSTALL may be set by 1612 build environment with settings for chown and make not work with 1613 permissions of the builder. So use mkdir -p and cp instead. This 1614 is for my bug #6599. 1615 1616commit 153264a7f290f98e01ed2dbd7265c977ec8ba7e1 1617Author: Daniel Stone <daniel@fooishbar.org> 1618Date: Wed Nov 8 16:16:02 2006 +0200 1619 1620 bump to 1.0.4 1621 1622commit 0c1954765c32c1bd298111cc6bed2f090494c0cf 1623Author: Eric Anholt <eric@anholt.net> 1624Date: Fri Oct 27 12:35:38 2006 -0700 1625 1626 Fix .pc file with new autotools by using AC_DEFINE_DIR. 1627 1628 With autoconf 2.60, $datadir now expands to use $datarootdir rather than just 1629 $prefix, so the .pc referenced the undefined $datarootdir. AC_DEFINE_DIR 1630 expands it all out for us. 1631 1632commit 3c166cc1efe86ca42180a64e14b6bbbc9744bc82 1633Author: Eric Anholt <eric@anholt.net> 1634Date: Fri Oct 27 12:30:09 2006 -0700 1635 1636 Add more generated files to ignore. 1637 1638commit 8d18dfa21f8349c998675e1f9971de02ca99a1cd 1639Author: Adam Jackson <ajax@benzedrine.nwnk.net> 1640Date: Fri Oct 13 16:32:28 2006 -0400 1641 1642 Bump to 1.0.3 1643 1644commit b54d069ea397486c6125943ffdb813482383576a 1645Author: Qiu-Yuan (Kathleen) Yang <qiu-yuan.yang@sun.com> 1646Date: Fri Sep 1 18:04:26 2006 -0700 1647 1648 Sun bug #4962001: Close memory leaks seen in Motif apps 1649 1650 The function "GetResources" will return a copy of resources to the caller 1651 and the caller has the responsibility to free the returned copy. However some 1652 functions, such as "XtGetSubresources", "_XtGetResources", and 1653 "XtGetApplicationResources" invoked "GetResources" without freeing the 1654 returned resource copy. 1655 1656commit 6e48adfab0c020ab5d55b68f9b4cc63ed5d8b14c 1657Author: Alan Coopersmith <alan.coopersmith@sun.com> 1658Date: Fri Sep 1 17:59:42 2006 -0700 1659 1660 Add *~ to .gitignore to skip over emacs droppings 1661 1662commit 1eeeff85bf9f293de875169f6dc54577de0443f1 1663Author: David Nusinow <dnusinow@debian.org> 1664Date: Wed Aug 30 16:33:10 2006 -0400 1665 1666 Generate the internal manpage section using __libmansuffix__ 1667 1668commit e2f43888fe021aac27770afa6a64fb3cf3fab190 1669Author: Alan Coopersmith <alan.coopersmith@sun.com> 1670Date: Thu Jul 13 14:59:08 2006 -0700 1671 1672 renamed: .cvsignore -> .gitignore 1673 1674commit 3d3a1bc23f571daa7a876a21169d5a0c996ce7cc 1675Author: Adam Jackson <ajax@nwnk.net> 1676Date: Fri May 12 16:10:27 2006 +0000 1677 1678 Bump to 1.0.2 1679 1680commit fc82234c73362d6f07acf2dcf72bcefd96850105 1681Author: Matthieu Herrb <matthieu.herrb@laas.fr> 1682Date: Sun Apr 30 14:30:16 2006 +0000 1683 1684 Fix ERRORDB definition for the case where ${prefix} != /usr 1685 1686commit bc813392aa8f563e6cd385636b90a7496fcaa14e 1687Author: Adam Jackson <ajax@nwnk.net> 1688Date: Thu Apr 27 00:23:17 2006 +0000 1689 1690 Bump to 1.0.1 1691 1692commit 1c55684a7411c35fce2a958d84be4c13b5349ea0 1693Author: Alan Coopersmith <Alan.Coopersmith@sun.com> 1694Date: Sun Feb 12 18:19:22 2006 +0000 1695 1696 Bug #5628 <https://bugs.freedesktop.org/show_bug.cgi?id=5628> Shadow pages 1697 not created correctly when MANDIR & MANSUFFIX don't match. 1698 1699commit 6851a1faf46a4d8a85e481162c8ee84f66174f89 1700Author: Kevin E Martin <kem@kem.org> 1701Date: Thu Dec 15 00:24:34 2005 +0000 1702 1703 Update package version number for final X11R7 release candidate. 1704 1705commit b9464aa563b650faefbb881d5b399659aa8c30bb 1706Author: Kevin E Martin <kem@kem.org> 1707Date: Sat Dec 10 16:29:07 2005 +0000 1708 1709 Add configure option to install makestrs and its manpage. 1710 Add makestrs man page. 1711 1712commit 6be3ca4fb0d0f9a1361d45dfc094f0a7a85b27b4 1713Author: Kevin E Martin <kem@kem.org> 1714Date: Wed Dec 7 16:17:08 2005 +0000 1715 1716 Add configure option to set the build's app-default dir, and put the result 1717 in the xt.pc file for applications to use. 1718 1719commit 3186014010acbda9f8e3568a1e8076130212f600 1720Author: Kevin E Martin <kem@kem.org> 1721Date: Tue Dec 6 22:48:44 2005 +0000 1722 1723 Change *man_SOURCES ==> *man_PRE to fix autotools warnings. 1724 1725commit 5801485b720e1dd3799737d9f127212afd3101c7 1726Author: Kevin E Martin <kem@kem.org> 1727Date: Sat Dec 3 05:49:45 2005 +0000 1728 1729 Update package version number for X11R7 RC3 release. 1730 1731commit d480f9dbd3e07b4e139f2a1422f803e6e6264854 1732Author: Kevin E Martin <kem@kem.org> 1733Date: Sat Dec 3 04:41:50 2005 +0000 1734 1735 Add check and cflags for malloc(0) returning NULL. 1736 1737commit 2a591fe7b3416d8609bd71cb068f9390105ffecf 1738Author: Alan Coopersmith <Alan.Coopersmith@sun.com> 1739Date: Mon Nov 28 22:03:06 2005 +0000 1740 1741 Change *mandir targets to use new *_MAN_DIR variables set by xorg-macros.m4 1742 update to fix bug #5167 (Linux prefers *.1x man pages in man1 subdir) 1743 1744commit 7a8979367e4ab1a6412fef9a027b7d38621d87b7 1745Author: Alan Coopersmith <Alan.Coopersmith@sun.com> 1746Date: Wed Nov 23 22:33:07 2005 +0000 1747 1748 Bug #5003 <https://bugs.freedesktop.org/show_bug.cgi?id=5003> Patch #3763 1749 <https://bugs.freedesktop.org/attachment.cgi?id=3763> Xorg code misuses 1750 S_IF* macros 1751 1752commit 2533120c26185990d326fa14c92383f85239f3b7 1753Author: Kevin E Martin <kem@kem.org> 1754Date: Sat Nov 19 07:15:43 2005 +0000 1755 1756 Update pkgconfig files to separate library build-time dependencies from 1757 application build-time dependencies, and update package deps to work 1758 with separate build roots. 1759 1760commit 3f332f9af360cd42f5ff1b6f16ac64f7d146ff34 1761Author: Kevin E Martin <kem@kem.org> 1762Date: Wed Nov 9 21:19:13 2005 +0000 1763 1764 Update package version number for X11R7 RC2 release. 1765 1766commit f151f6dfa14c36cfa54ab3e55bb67f24a8a39dc6 1767Author: Kean Johnson <kean@armory.com> 1768Date: Tue Nov 8 06:33:25 2005 +0000 1769 1770 See ChangeLog entry 2005-11-07 for details. 1771 1772commit 7ed0ec3136190288b0c450cdf2998000c43619df 1773Author: Kevin E Martin <kem@kem.org> 1774Date: Tue Nov 1 15:11:51 2005 +0000 1775 1776 Update pkgcheck dependencies to work with separate build roots. 1777 1778commit 33b861860b86b53840007010287f5483a503c8e9 1779Author: Kevin E Martin <kem@kem.org> 1780Date: Wed Oct 19 02:48:11 2005 +0000 1781 1782 Update package version number for RC1 release. 1783 1784commit d3853ab17d7203e7fbdfcd5cc8ed3505e5aa6233 1785Author: Kevin E Martin <kem@kem.org> 1786Date: Tue Oct 18 07:24:03 2005 +0000 1787 1788 Use $(INSTALL) instead of $(install_sh_DATA) for creating directories. 1789 1790commit 831a32df90d6b3db66d6c578f6e231d4aab2b760 1791Author: Adam Jackson <ajax@nwnk.net> 1792Date: Tue Oct 18 03:10:14 2005 +0000 1793 1794 Split the 'install -d' over multiple lines so certain lame versions of 1795 autotools don't flip out. 1796 1797commit 5e37faddaac8ac50ee4ca719975f9bf526e4c980 1798Author: Alan Coopersmith <Alan.Coopersmith@sun.com> 1799Date: Tue Oct 18 01:50:02 2005 +0000 1800 1801 Add --with-xfile-search-path=<path> and default setting to match monolith 1802 XFileSearchPathDefault in Imake (including extra directories used in 1803 Debian section of linux.cf.) 1804 1805commit 52edad6913e3efd3fcec6c73e13d33bf8c3a5e65 1806Author: Alan Coopersmith <Alan.Coopersmith@sun.com> 1807Date: Tue Oct 18 00:00:09 2005 +0000 1808 1809 Use @LIB_MAN_SUFFIX@ instead of $(LIB_MAN_SUFFIX) in macro substitutions to 1810 work better with BSD make 1811 1812commit 1fcb9d04dd8b2f78aff2d64e6db7588c973cdb5b 1813Author: Alan Coopersmith <Alan.Coopersmith@sun.com> 1814Date: Mon Oct 17 21:13:22 2005 +0000 1815 1816 Rename .shadows.DONE to shadows.DONE to avoid some make's thinking it's a 1817 suffix rule (reported by Matthieu Herrb) 1818 1819commit 4423fc41efc97ad1559f281c2ce3c835ccc88c61 1820Author: Alan Coopersmith <Alan.Coopersmith@sun.com> 1821Date: Thu Oct 13 04:27:16 2005 +0000 1822 1823 Add generated man pages to .cvsignore file 1824 1825commit 3c676e51ca509fff616495ac7354ac8b4ecde7e4 1826Author: Alan Coopersmith <Alan.Coopersmith@sun.com> 1827Date: Wed Oct 12 00:22:32 2005 +0000 1828 1829 configure.ac Set up cpp pre-processing of man pages Add shadow man pages 1830 for man pages that document multiple functions. 1831 1832commit 0543cf76a5e11133b5f76fa37b39cbe2985c1c75 1833Author: Alan Coopersmith <Alan.Coopersmith@sun.com> 1834Date: Sat Sep 24 00:23:32 2005 +0000 1835 1836 Include <X11/XlibConf.h> to get correct XTHREADS settings in non-Imake 1837 builds. 1838 1839commit 88374bab9adfe73dc445d4202a28e4d6021a674f 1840Author: Alan Coopersmith <Alan.Coopersmith@sun.com> 1841Date: Wed Sep 21 02:35:01 2005 +0000 1842 1843 Add checks for poll & snprintf & define old Imake names if found Enable XKB 1844 usage in Xt unless --disable-xkb is specified Set STRINGSABIOPTIONS for 1845 building StringDefs files on Solaris, SCO, and SVR4 systems. 1846 1847commit dbd0485a6e1926e7b94fdffb3e71de27c4a29012 1848Author: Adam Jackson <ajax@nwnk.net> 1849Date: Mon Aug 1 23:59:39 2005 +0000 1850 1851 Properly define BUILT_FILES 1852 1853commit f4043547fbb2feb87f480388a695016b90f53279 1854Author: Keith Packard <keithp@keithp.com> 1855Date: Mon Aug 1 23:47:55 2005 +0000 1856 1857 Move building of StringDefs files to src and fix them so that parallel make 1858 works right. 1859 1860commit 027977140e19c5622331ac90eeb5e9bb9fe72640 1861Author: Kevin E Martin <kem@kem.org> 1862Date: Fri Jul 29 21:22:52 2005 +0000 1863 1864 Various changes preparing packages for RC0: 1865 - Verify and update package version numbers as needed 1866 - Implement versioning scheme 1867 - Change bug address to point to bugzilla bug entry form 1868 - Disable loadable i18n in libX11 by default (use --enable-loadable-i18n to 1869 reenable it) 1870 - Fix makedepend to use pkgconfig and pass distcheck 1871 - Update build script to build macros first 1872 - Update modular Xorg version 1873 1874commit 28845cf017b991f7ed2dd23c005ab36ca43b97a5 1875Author: Alan Coopersmith <Alan.Coopersmith@sun.com> 1876Date: Fri Jul 22 20:30:10 2005 +0000 1877 1878 Bug #3824: <https://bugs.freedesktop.org/show_bug.cgi?id=3824> Correct 1879 incomplete license statement from Sun. 1880 1881commit 052efe144da64f96fb1201a36933894d2d4bfb3c 1882Author: Daniel Stone <daniel@fooishbar.org> 1883Date: Tue Jul 19 02:00:01 2005 +0000 1884 1885 distcheck fixes -- clean up after makestrs, don't list non-existant files. 1886 1887commit e1cd82cf0b4d51db42c5d71a63805b6fb9ad45b8 1888Author: Matthieu Herrb <matthieu.herrb@laas.fr> 1889Date: Sun Jul 17 10:15:26 2005 +0000 1890 1891 Fix for building outside of srcdir. 1892 1893commit 40bf5c6a837430bf23f86b97fcde8237099511c0 1894Author: Daniel Stone <daniel@fooishbar.org> 1895Date: Sat Jul 16 07:37:19 2005 +0000 1896 1897 Set version number to 6.0.0 with -version-number. 1898 1899commit 265f56bafdca73f28a4937ebff86ac77a25f2d4b 1900Author: Keith Packard <keithp@keithp.com> 1901Date: Sat Jul 9 06:49:50 2005 +0000 1902 1903 Add .cvsignore files 1904 1905commit 63a4f8f76f5fb9159447878a4a85a14d0fbf4bf6 1906Author: Alexander Gottwald <alexander.gottwald@s1999.tu-chemnitz.de> 1907Date: Thu Jun 30 12:23:32 2005 +0000 1908 1909 Add -no-undefined to linker command to build shared library on cygwin too 1910 1911commit 64b2b98096c6a5b2ac3af59796e07601eee4e28a 1912Author: Søren Sandmann Pedersen <sandmann@daimi.au.dk> 1913Date: Mon Jun 20 21:47:20 2005 +0000 1914 1915 - Make Xt install its internal files in /usr/include/X11, both in the 1916 modular and the monolithic tree. 1917 - Update XTrap to use #include <X11/internal-xt-headerI.h> 1918 - Add XvMC to symlink.sh 1919 1920commit 6e10d9886cfe518d1407331a7a8e5bac85390249 1921Author: Alexander Gottwald <alexander.gottwald@s1999.tu-chemnitz.de> 1922Date: Fri Jun 10 12:19:31 2005 +0000 1923 1924 ensure $(buildir)/src and $(builddir)/include/X11 exist before installing 1925 generated files there 1926 1927commit 1b5fb35a8db7bcf568a2318118068b6c01169c14 1928Author: Alexander Gottwald <alexander.gottwald@s1999.tu-chemnitz.de> 1929Date: Tue May 24 16:06:12 2005 +0000 1930 1931 separation of source and build directories 1932 1933commit e6db93aff3a4e92b8d13998866a787bdc08b6f35 1934Author: Alexander Gottwald <alexander.gottwald@s1999.tu-chemnitz.de> 1935Date: Tue May 24 15:58:51 2005 +0000 1936 1937 Make source directory for templates configurable 1938 1939commit 82f3473668ed08af059e094a696911d2347e5d57 1940Author: Alan Coopersmith <Alan.Coopersmith@sun.com> 1941Date: Sun May 22 19:05:11 2005 +0000 1942 1943 Convert man pages to long file names in lib/X11, lib/Xt, & lib/Xext 1944 1945commit 1c6db5c90aa4b4c7c82b0676416c2a9a0baa6c67 1946Author: Alan Coopersmith <Alan.Coopersmith@sun.com> 1947Date: Sun May 22 04:25:43 2005 +0000 1948 1949 Check for <alloca.h> and define INCLUDE_ALLOCA_H if found, since 1950 <Xalloca.h> requires it. 1951 1952commit 2e00049e9b02e26f858c3e4510641a735c03b086 1953Author: Alan Coopersmith <Alan.Coopersmith@sun.com> 1954Date: Sat May 21 20:47:26 2005 +0000 1955 1956 Use $(install_sh_DATA) instead of "install" for better portability. Remove 1957 duplicate installation lines. 1958 Add AM_CFLAGS to pass through XT_CFLAGS & X11_CFLAGS 1959 1960commit a175c9ea92967441a7ad33d2f6c8bf26cbe954fe 1961Author: Adam Jackson <ajax@nwnk.net> 1962Date: Thu May 19 00:22:33 2005 +0000 1963 1964 revert last change, didn't do right thing at all, sorry for the noise 1965 1966commit 185284247a889358b2ea269424eb665a71079826 1967Author: Adam Jackson <ajax@nwnk.net> 1968Date: Thu May 19 00:10:08 2005 +0000 1969 1970 Require automake 1.7 in AM_INIT_AUTOMAKE 1971 1972commit c7fe09644945e3725c0b67b84cd24d8475cea184 1973Author: Søren Sandmann Pedersen <sandmann@daimi.au.dk> 1974Date: Wed May 18 19:34:25 2005 +0000 1975 1976 Also include include/X11 1977 1978commit 605a76dcc93e277e1b26841a0225b7e0fb851b76 1979Author: Søren Sandmann Pedersen <sandmann@daimi.au.dk> 1980Date: Wed May 18 15:38:31 2005 +0000 1981 1982 - conditionally include config.h in xc/lib/Xt sources 1983 - add build system for lib/Xt 1984 1985commit b0a241cf7c7ab3840929da3b1aabdda7bab22517 1986Author: Egbert Eich <eich@suse.de> 1987Date: Tue May 17 08:10:10 2005 +0000 1988 1989 gcc4 allows to check if sentinels are correct (a sentinel is the 1990 terminating element in a varargs list). A sentinel needs to be NULL, 1991 not 0 - which doesn't make a difference on 32bit but matters on 64bit. 1992 Furthermore it can be told that functions have a printf-like format 1993 string and argument list so that they can verify that both match. To 1994 use these features certain attributes need to be set - which are 1995 compiler specific. To do this we define macros which are expanded 1996 depending on the compiler version. For now we put those in 1997 include/Xfuncproto.h (the XFree86 DDX layer contains a file compiler.h 1998 which however is not visible outside the DDX) (Bugzilla #3268). 1999 2000commit 2b42b9154f9886ab05da1c3d6ce75fd95f59e04e 2001Author: Alan Coopersmith <Alan.Coopersmith@sun.com> 2002Date: Sun May 15 20:52:39 2005 +0000 2003 2004 Add settings to bring Solaris builds closer to the ones Sun packages in 2005 Solaris. Adds "BuildLikeSun" options for areas Sun deviates from the 2006 way Xorg is packaged on other platforms. See comment in sun.cf for 2007 details. Also, use system-provided Expat on Solaris 10 and other 2008 cleanups. 2009 Set shared library versions for Solaris builds to match versions used in 2010 Solaris. Add missing SharedXfixesReqs and SharedXdamageReqs. 2011 Add -solarisabi option to create XtStrings code compatibile with existing 2012 Solaris binaries. (Off by default, on if "BuildLikeSun" is set in 2013 sun.cf) 2014 2015commit 149898492fe56f6a096a875375faa7323f7e96f4 2016Author: Alexander Gottwald <alexander.gottwald@s1999.tu-chemnitz.de> 2017Date: Wed Apr 20 09:35:50 2005 +0000 2018 2019 Bugzilla #3072 (https://bugs.freedesktop.org/show_bug.cgi?id=3072) 2020 attachment #2469 (https://bugs.freedesktop.org/attachment.cgi?id=2469): 2021 fix uninitialized pointer in libXt on Win32. Reported by Dave Williss 2022 2023commit 85eb751e4e1683af6cee3ee9dce29f74911a639d 2024Author: Matthieu Herrb <matthieu.herrb@laas.fr> 2025Date: Mon Feb 21 21:08:27 2005 +0000 2026 2027 Convert lib/Xt to ANSI C (Thomas Dickey). Fixes for a few valgrind warnings 2028 (Thomas Dickey). 2029 2030commit 94150cb72d9d641c64325cd70323d93b9a3701a5 2031Author: Alan Coopersmith <Alan.Coopersmith@sun.com> 2032Date: Wed Jan 19 19:27:34 2005 +0000 2033 2034 doc/man/Xt/Imakefile 2035 doc/man/Xt/XtAddCbk.man 2036 doc/man/Xt/XtAddIn.man 2037 doc/man/Xt/XtAllocGC.man 2038 doc/man/Xt/XtAppE.man 2039 doc/man/Xt/XtAppEM.man 2040 doc/man/Xt/XtAppSTC.man 2041 doc/man/Xt/XtClass.man 2042 doc/man/Xt/XtConvSt.man 2043 doc/man/Xt/XtConvert.man 2044 doc/man/Xt/XtCreateSR.man 2045 doc/man/Xt/XtDisplayI.man 2046 doc/man/Xt/XtErr.man 2047 doc/man/Xt/XtErrM.man 2048 doc/man/Xt/XtExtEvDis.man 2049 doc/man/Xt/XtGEDB.man 2050 doc/man/Xt/XtGetANC.man 2051 doc/man/Xt/XtGetActK.man 2052 doc/man/Xt/XtGetAres.man 2053 doc/man/Xt/XtGetSTO.man 2054 doc/man/Xt/XtGetSres.man 2055 doc/man/Xt/XtInit.man 2056 doc/man/Xt/XtInitWC.man 2057 doc/man/Xt/XtManChild.man 2058 doc/man/Xt/XtOffset.man 2059 doc/man/Xt/XtOwnSel.man 2060 doc/man/Xt/XtRegDraw.man 2061 doc/man/Xt/XtResPA.man 2062 doc/man/Xt/XtSession.man 2063 doc/man/Xt/XtSetLangP.man 2064 doc/man/Xt/XtSetSP.man 2065 doc/man/Xt/XtSetVal.man 2066 //bugs.freedesktop.org/show_bug.cgi?id=2331> Attachment #1718 2067 <https://bugs.freedesktop.org/attachment.cgi?id=1718> 2068 2069commit cd85103c7298be4a13909c07c95f5d53b069966e 2070Author: Matthieu Herrb <matthieu.herrb@laas.fr> 2071Date: Sun Jan 2 11:08:49 2005 +0000 2072 2073 Fix formatting. 2074 2075commit 054445f4238a98b7ea7910778ed110f5eff9d4f2 2076Author: Matthieu Herrb <matthieu.herrb@laas.fr> 2077Date: Sun Oct 3 20:08:42 2004 +0000 2078 2079 Xt Manual pages fixes from Dmitry Bolkhovitanov (Bugzilla #1498, $1499). 2080 2081commit 045e3de107523f28e765da8239d6afa9f51d6ba2 2082Author: Kevin E Martin <kem@kem.org> 2083Date: Wed Aug 11 21:14:17 2004 +0000 2084 2085 Apply PPC64 build patch (Bug #303, Mike A. Harris, Alan Coopersmith). 2086 2087commit 7a541dcaa28b6f97a647d0d8e0873f665ea372aa 2088Author: Eric Anholt <anholt@freebsd.org> 2089Date: Sat Jul 31 01:21:51 2004 +0000 2090 2091 Rename some COMPOSITE macros and enums to avoid conflicting with the 2092 COMPOSITE extension's new macro. These appear to only be used 2093 internally. 2094 2095commit b83924fa380f9e68c0c8a9dada6094c95fc44441 2096Author: Egbert Eich <eich@suse.de> 2097Date: Fri Apr 23 18:43:54 2004 +0000 2098 2099 Merging XORG-CURRENT into trunk 2100 2101commit 1b4f95dee32054b4d14ed5f78e47371c544fc5ac 2102Author: Egbert Eich <eich@suse.de> 2103Date: Sun Mar 14 08:32:26 2004 +0000 2104 2105 Importing vendor version xf86-4_4_99_1 on Sun Mar 14 00:26:39 PST 2004 2106 2107commit 83e661ed1cec6b14c60adbd48ab8588f6b13c391 2108Author: Egbert Eich <eich@suse.de> 2109Date: Wed Mar 3 12:11:32 2004 +0000 2110 2111 Importing vendor version xf86-4_4_0 on Wed Mar 3 04:09:24 PST 2004 2112 2113commit 77d281253982e2ebe27430f38b993927d879a005 2114Author: Egbert Eich <eich@suse.de> 2115Date: Thu Feb 26 13:35:34 2004 +0000 2116 2117 readding XFree86's cvs IDs 2118 2119commit 0efb2e616125953a3773b9b6c9a530ad30ce9bc8 2120Author: Egbert Eich <eich@suse.de> 2121Date: Thu Feb 26 09:22:45 2004 +0000 2122 2123 Importing vendor version xf86-4_3_99_903 on Wed Feb 26 01:21:00 PST 2004 2124 2125commit 036e955dfcc31d3b6c081f84e4f0b85969ccdd12 2126Author: Egbert Eich <eich@suse.de> 2127Date: Thu Jan 29 08:08:07 2004 +0000 2128 2129 Importing vendor version xf86-012804-2330 on Thu Jan 29 00:06:33 PST 2004 2130 2131commit f81d7ef72c9b4f13e33efa812bed9446657ed003 2132Author: Kaleb Keithley <kaleb@freedesktop.org> 2133Date: Tue Nov 25 19:28:16 2003 +0000 2134 2135 XFree86 4.3.99.16 Bring the tree up to date for the Cygwin folks 2136 2137commit bdc0667ef29e24b1a2188b11546d843a7d3e5ef6 2138Author: Kaleb Keithley <kaleb@freedesktop.org> 2139Date: Fri Nov 14 16:48:49 2003 +0000 2140 2141 XFree86 4.3.0.1 2142 2143commit 6a13c9e08bb042c81ae904c44a38a50d785c824e 2144Author: Kaleb Keithley <kaleb@freedesktop.org> 2145Date: Fri Nov 14 16:48:49 2003 +0000 2146 2147 Initial revision 2148 2149commit 0117b0b441d8835a11a2886f3c8aed937dcffa9d 2150Author: Kaleb Keithley <kaleb@freedesktop.org> 2151Date: Fri Nov 14 15:54:39 2003 +0000 2152 2153 R6.6 is the Xorg base-line 2154