ChangeLog revision 57f47464
1commit a0ad0d5c99023bb9a8ce3944dbc3267f5265721e 2Author: Alan Coopersmith <alan.coopersmith@oracle.com> 3Date: Tue Apr 5 13:29:04 2011 -0700 4 5 libX11 1.4.3 6 7 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 8 9commit e8c76407d2f6e3b11babdb84426e43e780c859c3 10Author: Gaetan Nadon <memsize@videotron.ca> 11Date: Fri Feb 25 09:23:54 2011 -0500 12 13 Documentation: add Docbook external references support 14 15 When writing technical documentation, it is often necessary to cross 16 reference to other information. When that other information is not in the 17 current document, additional support is needed, namely <olink>. 18 19 A new feature with version 1.7 of xorg-sgml-doctools adds references to 20 other documents within or outside this package. 21 22 This patch adds technical support for this feature but does not change 23 the content of the documentation as seen by the end user. 24 25 Each book or article must generate a database containing the href 26 of sections that can be referred to from another document. This database 27 is installed in DATAROOTDIR/sgml/X11/dbs. There is a requirement that 28 the value of DATAROOTDIR for xorg-sgml-doctools and for the package 29 documentation is the same. This forms a virtual document tree. 30 31 This database is consulted by other documents while they are being generated 32 in order to fulfill the missing information for linking. 33 Refer to the xorg-sgml-doctools for further technical information. 34 35 Co-authored-by: Matt Dew <marcoz@osource.org> 36 37 Signed-off-by: Gaetan Nadon <memsize@videotron.ca> 38 39commit 25eb76b3d2726f2f1de759901971ae53b2539dc4 40Author: Harshula Jayasuriya <harshula@gmail.com> 41Date: Mon Mar 21 14:49:37 2011 +0000 42 43 Add #define XK_SINHALA 44 45 Add #define XK_SINHALA so that the Sinhala keysyms can be used by 46 the lk xkb keymap. 47 48 Signed-off-by: Harshula Jayasuriya <harshula@gmail.com> 49 Reviewed-by: Daniel Stone <daniel@fooishbar.org> 50 51commit db8b20b789112717ac0590b40f0b4dc2171797d0 52Author: Jeremy Huddleston <jeremyhu@apple.com> 53Date: Thu Mar 17 16:15:00 2011 -0700 54 55 configure.ac: Bump version to 1.4.2 56 57 Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com> 58 59commit 83e1ba59c48c79f8b0a7e7aa0b9c9cfd84fa403d 60Author: Jamey Sharp <jamey@minilop.net> 61Date: Tue Mar 15 16:48:07 2011 -0700 62 63 Call _XErrorFunction without holding the Display lock. 64 65 Historically, Xlib dropped the Display lock around the upcall to any 66 user-supplied _XErrorFunction, but somewhere along the way I quit doing 67 that if you built with XCB. The reasons are lost somewhere in the 68 pre-git history of Xlib/XCB, and I can't now see any reason to hold the 69 lock. 70 71 The documentation for XSetErrorHandler still applies though: 72 73 Because this condition is not assumed to be fatal, it is acceptable 74 for your error handler to return; the returned value is ignored. 75 However, the error handler should not call any functions (directly 76 or indirectly) on the display that will generate protocol requests 77 or that will look for input events. 78 79 So while you are now once again permitted to re-enter Xlib from the 80 error handler, you're only allowed to call non-protocol functions. 81 82 Signed-off-by: Jamey Sharp <jamey@minilop.net> 83 84commit fd85aca7a616c595fc17b2520f84316a11e8906f 85Author: Jamey Sharp <jamey@minilop.net> 86Date: Mon Mar 14 14:45:35 2011 -0700 87 88 Ignore user locks after sleeping in _XReply and _XReadEvents. 89 90 This bug appears as a hang in applications that wait for replies from 91 multiple threads, where one such thread has taken a user lock using 92 XLockDisplay. 93 94 Prior to this fix, the code could deadlock in this way: If thread 1 goes 95 to sleep waiting for a reply, and then thread 2 takes a user lock and 96 waits for a reply, then thread 2 will wait for thread 1 to process its 97 reply (because responses must be processed in order), but thread 1 will 98 wait for thread 2 to drop its user lock. 99 100 Fixed by making thread 1 not wait for thread 2 to drop its user lock. 101 This makes the semantics of user locks hard to define, but they were 102 already hard to define. The new behavior appears to be consistent with 103 the way Xlib worked historically, anyway. 104 105 Fixes: http://lists.freedesktop.org/archives/xcb/2011-March/006802.html 106 107 There was a similar potential for deadlock in _XReadEvents, fixed the 108 same way, with the same caveats about user-lock semantics. 109 110 Signed-off-by: Jamey Sharp <jamey@minilop.net> 111 112commit 690f8bffd48a4e7e74298360ddd0431dc95dcd3f 113Author: Erkki Seppälä <erkki.seppala@vincit.fi> 114Date: Tue Jan 18 15:58:20 2011 +0200 115 116 xkb: XkbPropertyPtr determined allocation success from wrong variables 117 118 Cannot reach dead statement "return NULL;" 119 120 Check for the NULLness of prop->name and prop->value instead of 121 name and value, which was checked earlier anyway. Decided against 122 using strdup due to curious memory allocation functions and the 123 rest of the xkb not using it either. 124 125 Signed-off-by: Erkki Seppälä <erkki.seppala@vincit.fi> 126 Reviewed-by: Alan Coopersmith <alan.coopersmith at oracle.com> 127 128commit 6a4d027284e7bb5dd458157947bbb1ff580ad071 129Author: Erkki Seppälä <erkki.seppala@vincit.fi> 130Date: Mon Jan 10 16:37:22 2011 +0200 131 132 keyBind: Use Xcalloc to initialize allocated _XKeytrans 133 134 Using uninitialized value "p->modifiers" 135 136 Small fix by using Xcalloc instead of Xmalloc 137 138 Signed-off-by: Erkki Seppälä <erkki.seppala@vincit.fi> 139 Reviewed-by: Alan Coopersmith <alan.coopersmith at oracle.com> 140 141commit b993d73bb3214ecc24646f5427c8003b816c6921 142Author: Erkki Seppälä <erkki.seppala@vincit.fi> 143Date: Mon Jan 10 16:22:45 2011 +0200 144 145 im/ximcp: release modifiermap before returning 146 147 Variable "map" goes out of scope 148 149 Release modifiermap before returning. Reordered code to call 150 XGetModifierMapping after the first return from the function. 151 152 Signed-off-by: Erkki Seppälä <erkki.seppala@vincit.fi> 153 Reviewed-by: Dirk Wallenstein <halsmit@t-online.de> 154 155commit 807a7fc0354f2212dfa5ff1f9e4ede56d8e69ef4 156Author: Gaetan Nadon <memsize@videotron.ca> 157Date: Fri Feb 25 09:23:54 2011 -0500 158 159 Docbook: change the book id to match the xml file basename 160 161 This is required for the up-coming external references support. 162 163 Signed-off-by: Gaetan Nadon <memsize@videotron.ca> 164 165commit 40812b53ff5fe548f6eaf43ba4c8781cb43dab43 166Author: Samuel Thibault <samuel.thibault@ens-lyon.org> 167Date: Mon Feb 21 21:54:17 2011 +0100 168 169 Make the Local XIM request key releases for braille 170 171 Braille chords management needs key release events. We need to explicitly 172 request then, else GTK would not pass them throught XFilterEvent and braille 173 wouldn't work. 174 175 Signed-off-by: Samuel Thibault <samuel.thibault@ens-lyon.org> 176 177commit c97c42c49cd5095462abecdf908b416fb0b540b6 178Author: Samuel Thibault <samuel.thibault@ens-lyon.org> 179Date: Mon Feb 21 17:27:38 2011 +0100 180 181 Match braille patterns with compose tree 182 183 Braille patterns should also be usable in Compose. This combines the 184 implementation of braille chords and compose tree: only emit the braille 185 pattern if it can not be found in the compose tree, if any. 186 187 Signed-off-by: Samuel Thibault <samuel.thibault@ens-lyon.org> 188 189commit 0c6ca565d7c8a47ef3ea823569a9ca5298a5307d 190Author: Samuel Thibault <samuel.thibault@ens-lyon.org> 191Date: Mon Feb 21 15:56:54 2011 +0100 192 193 Fix status reporting for braille patterns 194 195 _XimLocalMbLookupString can return a braille keysym even if _Xlcwctomb can't 196 convert to the current MB charset. 197 _XimLocalUtf8LookupString needs to set the braille keysym and status too. 198 199 Signed-off-by: Samuel Thibault <samuel.thibault@ens-lyon.org> 200 201commit 993abe751f4141f54d8d28b8b73588a1c9085970 202Author: Alan Coopersmith <alan.coopersmith@oracle.com> 203Date: Fri Feb 11 14:49:17 2011 -0800 204 205 Clean up memory when first XCreateRegion succeeds and second fails 206 207 Error: Memory leak (CWE 401) 208 Memory leak of pointer 's' allocated with XCreateRegion() 209 at line 387 of /export/alanc/X.Org/sx86-gcc/lib/libX11/src/Region.c in function 'XShrinkRegion'. 210 's' allocated at line 387 with XCreateRegion(). 211 s leaks when s != 0 at line 387. 212 Error: Memory leak (CWE 401) 213 Memory leak of pointer 'tra' allocated with XCreateRegion() 214 at line 1452 of /export/alanc/X.Org/sx86-gcc/lib/libX11/src/Region.c in function 'XXorRegion'. 215 'tra' allocated at line 1451 with XCreateRegion(). 216 tra leaks when tra != 0 at line 1451. 217 218 [ This bug was found by the Parfait 0.3.6 bug checking tool. 219 For more information see http://labs.oracle.com/projects/parfait/ ] 220 221 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 222 223commit 6ac417cea1136a3617f5e40f4b106aaa3f48d6c2 224Author: Alan Coopersmith <alan.coopersmith@oracle.com> 225Date: Fri Feb 11 14:20:24 2011 -0800 226 227 ximcp: Prevent memory leak & double free if multiple %L in string 228 229 In the highly unlikely event that TransFileName was passed a path 230 containing multiple %L entries, for each entry it would call 231 _XlcFileName, leaking the previous results, and then for each entry it 232 would copy from that pointer and free it, resulting in invalid pointers 233 & possible double frees for each use after the first one freed it. 234 235 Error: Use after free (CWE 416) 236 Use after free of pointer 'lcCompose' 237 at line 358 of modules/im/ximcp/imLcPrs.c in function 'TransFileName'. 238 Previously freed at line 360 with free. 239 Error: Use after free (CWE 416) 240 Use after free of pointer 'lcCompose' 241 at line 359 of modules/im/ximcp/imLcPrs.c in function 'TransFileName'. 242 Previously freed at line 360 with free. 243 Error: Double free (CWE 415) 244 Double free of pointer 'lcCompose' 245 at line 360 of modules/im/ximcp/imLcPrs.c in function 'TransFileName'. 246 Previously freed at line 360 with free. 247 248 [ This bug was found by the Parfait 0.3.6 bug checking tool. 249 For more information see http://labs.oracle.com/projects/parfait/ ] 250 251 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 252 253commit 502d414118c97d35a44f8e295709682022876331 254Author: Erkki Seppälä <erkki.seppala@vincit.fi> 255Date: Thu Feb 3 17:08:57 2011 +0200 256 257 xcms/cmsProp: don't deal with uninitialized values, fail instead 258 259 Properly handle the return value of XGetWindowProperty by considering 260 if after the loop as well. 261 262 Using freed pointer "prop_ret" 263 264 There were numerous things wrong in how this function interacted with 265 XGetWindowProperty. 266 267 None of the local variables were initialized and remained that way if 268 the call to XGetWindowProperty returned 1 (not Succeed). That doesn't 269 result in after_ret being initialized in which case if it happens to 270 be 0, the loop was exited. In that case format_ret and nitems_ret were 271 uninitialized and the function might return with success (but with 272 uninitialized pointer in prop_ret) or XcmsFailure. 273 274 As the buffer enlarging code was called only when XGetWindowProperty 275 failed (returned not Success), after_ret would not have been 276 initialized. It would have been initialized only if the 277 XGetWindowProperty has returned Success earlier, but in that case the 278 code fragment would not have been reached. 279 280 This patch alters the function to return XcmsFailure if the call to 281 XGetWindowProperty fails. 282 283 Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com> 284 Reviewed-by: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com> 285 Reviewed-by: Rami Ylimäki <rami.ylimaki@vincit.fi> 286 Signed-off-by: Erkki Seppälä <erkki.seppala@vincit.fi> 287 288commit c37e278993b9e5b3d7025ef4c434373a011996ec 289Author: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com> 290Date: Mon Jan 31 14:02:07 2011 +0200 291 292 xcms/LRGB: don't double-free property_return 293 294 property_return was free'd before and in the case the conditional is true, 295 the call to XcmsGetProperty failed which means that property_return wasn't 296 set so there is no need to free it again. 297 298 Double free of pointer "property_return" in call to "free" 299 300 Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com> 301 Reviewed-by: Erkki Seppälä <erkki.seppala@vincit.fi> 302 Signed-off-by: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com> 303 304commit 50f4107811249806718a100f9d34f996c58e5e25 305Author: Alan Coopersmith <alan.coopersmith@oracle.com> 306Date: Wed Feb 2 08:58:45 2011 -0800 307 308 Xrm.c: ReadInFile: refactor fstat error handling 309 310 We can simplify the fstat failure case now that the GetFileSize macro 311 has been expanded inline. 312 313 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 314 Reviewed-by: Julien Cristau <jcristau@debian.org> 315 316commit 5e9c40fcb5da43c9fdacf12967d090bf202daf2a 317Author: Alan Coopersmith <alan.coopersmith@oracle.com> 318Date: Wed Feb 2 08:56:00 2011 -0800 319 320 Expand GetSizeOfFile() macro at the one place it's called 321 322 Removes XrmI.h header that only contained this single macro 323 324 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 325 Reviewed-by: Julien Cristau <jcristau@debian.org> 326 327commit 450e17422c0e374d25c643f343ea268cec68da38 328Author: Erkki Seppälä <erkki.seppala@vincit.fi> 329Date: Mon Jan 31 14:01:57 2011 +0200 330 331 XlibInt: Use strncpy+zero termination instead of strcpy to enforce buffer size 332 333 Possible overrun of 8192 byte fixed size buffer "buffer" by copying 334 "ext->name" without length checking 335 336 Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com> 337 Reviewed-by: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com> 338 Signed-off-by: Erkki Seppälä <erkki.seppala@vincit.fi> 339 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 340 341commit e2566e43b02d2d7b7c1c3bb7db7c5ae81c1245fa 342Author: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com> 343Date: Mon Jan 31 14:02:13 2011 +0200 344 345 lc/def/lcDefConv: Use Xcalloc to avoid use of uninitialized memory 346 347 Fixed by zero'ing conv on allocation with Xcalloc. Then 348 close_converter works properly. 349 350 Using uninitialized value "conv->state" in call to function "close_converter" 351 352 Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com> 353 Reviewed-by: Erkki Seppälä <erkki.seppala@vincit.fi> 354 Signed-off-by: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com> 355 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 356 357commit 03f81ad8fb9783986cf9b17661dd31e95c396681 358Author: Erkki Seppälä <erkki.seppala@vincit.fi> 359Date: Mon Jan 31 14:02:16 2011 +0200 360 361 xlibi18n/lcFile: Removed superfluous check for NULL target_dir 362 363 The situation is already handled before this code. 364 365 Cannot reach dead expression "0U" inside statement "if (1U + (target_dir ? strl..." 366 367 Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com> 368 Reviewed-by: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com> 369 Signed-off-by: Erkki Seppälä <erkki.seppala@vincit.fi> 370 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 371 372commit 1346b9ea3b3882201ff8c3ee462ff4b0d4edf639 373Author: Erkki Seppälä <erkki.seppala@vincit.fi> 374Date: Mon Jan 31 14:02:15 2011 +0200 375 376 ximcp/imLckup: Handle negative return value from _Xlcwctomb 377 378 Fixed by negative value to memcpy by checking for the negative return 379 value of _Xlcwctomb and returning 0/XLookupNone in that case. 380 381 a negative value was passed to memcpy 382 383 Unfortunately the other return values for *status don't fit into the 384 error (which appears to indicate some internal error or running out of 385 memory). The other valid status codes are XBufferOverflow, 386 XLookupNone, XLookupChars, XLookupKeySym, and XLookupBoth. Each of 387 these has a specific meaning attached. 388 389 Reviewed-by: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com> 390 Signed-off-by: Erkki Seppälä <erkki.seppala@vincit.fi> 391 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 392 393commit 79a5c86e020f08cc108184298a72e2777036de39 394Author: Erkki Seppälä <erkki.seppala@vincit.fi> 395Date: Mon Jan 31 14:02:14 2011 +0200 396 397 ximcp/imTrX: Handle failing XGetWindowProperty 398 399 Checked return value of XGetWindowProperty and return false if it fails. 400 401 Return value of "XGetWindowProperty(im->core.display, spec->lib_connect_wid, prop, 0L, (length + bytes_after_ret + 3UL) / 4UL, 1, 0UL, &type_ret, &format_ret, &nitems, &bytes_after_ret, &prop_ret)" is not checked 402 403 Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com> 404 Signed-off-by: Erkki Seppälä <erkki.seppala@vincit.fi> 405 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 406 407commit 2ace8d5c89c8f6d9f42b4068f4b508ca28f0ced1 408Author: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com> 409Date: Mon Jan 31 14:02:12 2011 +0200 410 411 XlibInt: info_list->watch_data was reallocated, but result was discarded 412 413 info_list->watch_data was being reallocated, but the return value of 414 the reallocation was stored only into a local variable. This might 415 cause some funky behavior and crashes. 416 417 Variable "wd_array" goes out of scope 418 Value "wd_array" is overwritten in "wd_array = (XPointer*)realloc((char*)info_list->watch_data, (((dpy->watcher_count + 1) * 4U == 0U) ? 1U : ((dpy->watcher_count + 1) * 4U)))" 419 420 Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com> 421 Reviewed-by: Erkki Seppälä <erkki.seppala@vincit.fi> 422 Signed-off-by: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com> 423 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 424 425commit 2b16a7e683e355c9746290b2cee2fd0dd2bf342a 426Author: Erkki Seppälä <erkki.seppala@vincit.fi> 427Date: Mon Jan 31 14:02:10 2011 +0200 428 429 GetProp: Zero-initialized error so its resourceID field is initialized 430 431 Using uninitialized value "error.resourceID" in call to function "_XError" 432 433 Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com> 434 Reviewed-by: Erkki Seppälä <erkki.seppala@vincit.fi> 435 Signed-off-by: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com> 436 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 437 438commit 85e9f38e016137f0ff2791eb0d092ab027382d2c 439Author: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com> 440Date: Tue Feb 1 11:07:25 2011 +0200 441 442 xcms/LRGB: Add a label for freeing property_return. 443 444 The rest of the code uses goto's to free memory allocated later 445 and prevent memory leaks, but there were several paths were 446 property_return was free'd just before a goto. 447 448 Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com> 449 Signed-off-by: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com> 450 Signed-off-by: Erkki Seppälä <erkki.seppala@vincit.fi> 451 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 452 453commit 3161dc57d4e9b70f852f05e5e474455e121b06ab 454Author: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com> 455Date: Mon Jan 31 14:02:08 2011 +0200 456 457 xcms/LRGB: Fix potential resource leak. 458 459 property_return was not free'd if the allocation of pRedTbl failed. 460 461 Reviewed-by: Erkki Seppälä <erkki.seppala@vincit.fi> 462 Signed-off-by: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com> 463 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 464 465commit be3e6c205d94dedc1cdebf5d17b987f0f828377a 466Author: Erkki Seppälä <erkki.seppala@vincit.fi> 467Date: Mon Jan 31 14:02:06 2011 +0200 468 469 Xrm: Handle the extremely unlikely situation of fstat failing 470 471 Tracked variable "size" was passed to a negative sink. 472 473 Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com> 474 Reviewed-by: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com> 475 Signed-off-by: Erkki Seppälä <erkki.seppala@vincit.fi> 476 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 477 478commit 3fae16c64d6ef76fd4a25a54c7f7de76596457db 479Author: Erkki Seppälä <erkki.seppala@vincit.fi> 480Date: Mon Jan 31 14:02:05 2011 +0200 481 482 Xrm: NEWTABLE had a memory leak after a memory allocation error 483 484 The NEWTABLE macro missed freeing its allocated memory on subsequent 485 memory allocation errors. Added call to Xfree. 486 487 Variable "table" goes out of scope 488 489 Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com> 490 Reviewed-by: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com> 491 Signed-off-by: Erkki Seppälä <erkki.seppala@vincit.fi> 492 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 493 494commit 7110ac653349a23c80c365f11f6270dc27c8975a 495Author: Erkki Seppälä <erkki.seppala@vincit.fi> 496Date: Mon Jan 31 14:02:03 2011 +0200 497 498 ImUtil: Handle a memory leak in one early return branch 499 500 Fixed memory leak by adding Xfree for image 501 502 Variable "image" goes out of scope 503 504 Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com> 505 Reviewed-by: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com> 506 Signed-off-by: Erkki Seppälä <erkki.seppala@vincit.fi> 507 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 508 509commit d695f5da9f5b778e54b6987d9177048e32818c4d 510Author: Erkki Seppälä <erkki.seppala@vincit.fi> 511Date: Mon Jan 31 14:02:01 2011 +0200 512 513 ximcp/imRm: Handle leaking colormap_ret 514 515 Fixed memory leak by adding Xfree for colormap_ret 516 517 Variable "colormap_ret" goes out of scope 518 519 Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com> 520 Reviewed-by: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com> 521 Signed-off-by: Erkki Seppälä <erkki.seppala@vincit.fi> 522 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 523 524commit f9eda19d08c1ea0973dfe0bc10a2519d6fd26cc7 525Author: Erkki Seppälä <erkki.seppala@vincit.fi> 526Date: Mon Jan 31 14:01:59 2011 +0200 527 528 ximcp/imRmAttr: Handle leaking missing_list 529 530 Fixed memory leak by adding Xfree and initializing missing_list with NULL 531 532 Variable "missing_list" goes out of scope 533 534 Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com> 535 Reviewed-by: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com> 536 Signed-off-by: Erkki Seppälä <erkki.seppala@vincit.fi> 537 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 538 539commit 3183269e0979c9dbce9d55d9e03937897dc9fb3b 540Author: Erkki Seppälä <erkki.seppala@vincit.fi> 541Date: Mon Jan 31 14:01:58 2011 +0200 542 543 ximcp/imRmAttr: Handle leaking colormap_ret 544 545 XFree colormap_ret and initialize it when appropriate. 546 547 Variable "colormap_ret" goes out of scope 548 549 Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com> 550 Signed-off-by: Erkki Seppälä <erkki.seppala@vincit.fi> 551 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 552 553commit f66a032a937030f2d9baa81744d36dc585bb085c 554Author: Erkki Seppälä <erkki.seppala@vincit.fi> 555Date: Mon Jan 31 14:01:56 2011 +0200 556 557 xlibi18n/lcGeneric: Initialize uninitialized local variable 558 559 Using uninitialized value "new" 560 561 Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com> 562 Reviewed-by: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com> 563 Signed-off-by: Erkki Seppälä <erkki.seppala@vincit.fi> 564 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 565 566commit d0266e06d38110ec908ca28379014eff743630b7 567Author: Erkki Seppälä <erkki.seppala@vincit.fi> 568Date: Mon Jan 31 14:01:54 2011 +0200 569 570 xcmx/cmxColNm: Removed unused assignments to pBuf (in two functions) 571 572 Pointer "pBuf" returned from "fgets(buf, 256, stream)" is never used 573 574 Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com> 575 Reviewed-by: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com> 576 Signed-off-by: Erkki Seppälä <erkki.seppala@vincit.fi> 577 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 578 579commit cc686655d7bfdeab8b67e01a24bd452a2e9e3fcf 580Author: Alan Coopersmith <alan.coopersmith@oracle.com> 581Date: Tue Feb 1 12:30:56 2011 +0200 582 583 XDefaultOMIF.c: Fix memory leaks in get_font_name 584 585 Instead of copying the value returned by get_prop_name and then releasing it, 586 directly use the return value of get_prop_name, which allocates memory for the 587 name. 588 589 If get_prop_name returns NULL, continue on to XFreeFont to release the font 590 before returning the NULL via the normal function return. 591 592 Reviewed-by: Erkki Seppälä <erkki.seppala@vincit.fi> 593 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 594 595commit 95796351435d81eaef8166d49ba3a6e7b633d70a 596Author: Gaetan Nadon <memsize@videotron.ca> 597Date: Mon Jan 31 14:50:19 2011 -0500 598 599 config: comment, minor upgrade, quote and layout configure.ac 600 601 Group statements per section as per Autoconf standard layout 602 Quote statements where appropriate. 603 Autoconf recommends not using dnl instead of # for comments 604 605 Use AC_CONFIG_FILES to replace the deprecated AC_OUTPUT with parameters. 606 Remove redundant AC_CANONICAL_HOST included in XORG_DEFAULT_OPTIONS 607 608 This helps automated maintenance and release activities. 609 Details can be found in http://wiki.x.org/wiki/NewModuleGuidelines 610 611 Signed-off-by: Gaetan Nadon <memsize@videotron.ca> 612 613commit e994ab227ed28655565c3193e63733630105e7f9 614Author: Erkki Seppälä <erkki.seppala@vincit.fi> 615Date: Tue Jan 18 12:49:48 2011 +0200 616 617 Comparing array against NULL is not useful "&xkb->server->vmods != NULL" 618 619 Removed superfluous comparison. 620 621 Reviewed-by: Dirk Wallenstein <halsmit@t-online.de> 622 Signed-off-by: Erkki Seppälä <erkki.seppala@vincit.fi> 623 624commit 4115f051e62f9b098efce691e070d44f09f30f1c 625Author: Erkki Seppälä <erkki.seppala@vincit.fi> 626Date: Wed Jan 12 15:51:11 2011 +0200 627 628 Variable "entry" tracked as NULL was dereferenced. 629 630 Check entry for non-nullness before dereferencing it 631 632 Reviewed-by: Dirk Wallenstein <halsmit@t-online.de> 633 Reviewed-by: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com> 634 Signed-off-by: Erkki Seppälä <erkki.seppala@vincit.fi> 635 636commit 0edb76d1d5fdca5a2543332699be2e72386dab24 637Author: Erkki Seppälä <erkki.seppala@vincit.fi> 638Date: Thu Jan 27 09:54:00 2011 +0200 639 640 Dereferencing possibly NULL "str" in call to function "memcpy" (Deref assumed on the basis of 'nonnull' parameter attribute.) 641 642 If _XkbGetReadBufferPtr returns NULL, goto BAILOUT 643 644 Reviewed-by: Dirk Wallenstein <halsmit@t-online.de> 645 Reviewed-by: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com> 646 Signed-off-by: Erkki Seppälä <erkki.seppala@vincit.fi> 647 648commit 59da8a211ef723909d0530c0331d541db8e63378 649Author: Erkki Seppälä <erkki.seppala@vincit.fi> 650Date: Mon Jan 10 16:17:47 2011 +0200 651 652 Using freed pointer "e" 653 654 Reordered code to first to do the comparison and then to release data 655 656 Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com> 657 Reviewed-by: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com> 658 Signed-off-by: Erkki Seppälä <erkki.seppala@vincit.fi> 659 660commit 0f11c229f7099f7c5aeed4691b358dca151dac7d 661Author: Matt Dew <marcoz@osource.org> 662Date: Thu Jan 27 00:31:23 2011 -0700 663 664 Remove <literal> tags from compose-chart.pl so pdf building doesn't die on soft-hyphens. 665 666 Signed-off-by: Matt Dew <marcoz@osource.org> 667 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 668 669commit ca00bb202f3afcdbbcb8c4cb50308c5dd03f2322 670Author: Gaetan Nadon <memsize@videotron.ca> 671Date: Fri Jan 28 16:07:07 2011 -0500 672 673 config: replace deprecated AC_HELP_STRING with AS_HELP_STRING 674 675 This silences an Automake warning. 676 677 Signed-off-by: Gaetan Nadon <memsize@videotron.ca> 678 679commit 8dac08c7515cb6f8a8f4d0a721713697eae755d8 680Author: Gaetan Nadon <memsize@videotron.ca> 681Date: Fri Jan 28 14:59:04 2011 -0500 682 683 config: remove unrequired AC_HEADER_STDC 684 685 Autoconf says: 686 "This macro is obsolescent, as current systems have conforming 687 header files. New programs need not use this macro". 688 689commit d4483375e37a72631d5821413cb75a423e990ffe 690Author: Alan Coopersmith <alan.coopersmith@oracle.com> 691Date: Tue Jan 18 19:37:02 2011 -0800 692 693 config: Use correct AC_CONFIG_HEADERS macro 694 695 Replaces obsolete AM_CONFIG_HEADER and undocumented AC_CONFIG_HEADER 696 697 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 698 Reviewed-by: Gaetan Nadon <memsize@videotron.ca> 699 Reviewed-by: Dan Nicholson <dbn.lists@gmail.com> 700 701commit c6405fe931f313a0d159bdad00244fc8aae12468 702Author: Alan Coopersmith <alan.coopersmith@oracle.com> 703Date: Sun Jan 16 11:55:23 2011 -0800 704 705 config: remove AC_PROG_CC as it overrides AC_PROG_C_C99 706 707 XORG_STRICT_OPTION from XORG_DEFAULT_OPTIONS calls 708 AC_PROG_C_C99. This sets gcc with -std=gnu99. 709 If AC_PROG_CC macro is called afterwards, it resets CC to gcc. 710 711 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 712 Reviewed-by: Gaetan Nadon <memsize@videotron.ca> 713 714commit 17aa1f2305da0952ad594c7329d08aba21f13ac8 715Author: Alan Coopersmith <alan.coopersmith@oracle.com> 716Date: Sun Jan 16 11:40:59 2011 -0800 717 718 Update to xf86bigfontproto >= 1.2.0 header name 719 720 Clears compile-time warning of: 721 "X11/extensions/xf86bigfstr.h", line 1: #warning: "xf86bigfstr.h is obsolete and may be removed in the future." 722 "X11/extensions/xf86bigfstr.h", line 2: #warning: "include <X11/extensions/xf86bigfproto.h> for the protocol defines." 723 724 Requires xf86bigfontproto >= 1.2.0 if --disable-xf86bigfont is not 725 passed to configure. 726 727 Also removes unnecessary AC_SUBST of BIGFONT_CFLAGS & BIGFONT_LIBS 728 that PKG_CHECK_MODULES does automatically 729 730 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 731 Reviewed-by: Julien Cristau <jcristau@debian.org> 732 733commit a9228fcc676aacf9a760dd94891c89f9bc82b20d 734Author: Alan Coopersmith <alan.coopersmith@oracle.com> 735Date: Tue Jan 11 17:55:22 2011 -0800 736 737 libX11 1.4.1 738 739 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 740 741commit 92fa96451af37a7a0f2592de07643fdaed7a9efd 742Author: Pauli Nieminen <ext-pauli.nieminen@nokia.com> 743Date: Mon Jan 3 12:25:28 2011 -0500 744 745 Initialize event type 746 747 If we receive unsupported event closing connection triggers valgrind 748 error. 749 750 ==12017== Conditional jump or move depends on uninitialised value(s) 751 ==12017== at 0x487D454: _XFreeDisplayStructure (OpenDis.c:607) 752 ==12017== by 0x486857B: XCloseDisplay (ClDisplay.c:72) 753 *snip* 754 ==12017== Uninitialised value was created by a heap allocation 755 ==12017== at 0x4834C48: malloc (vg_replace_malloc.c:236) 756 ==12017== by 0x4894147: _XEnq (XlibInt.c:877) 757 ==12017== by 0x4891BF3: handle_response (xcb_io.c:335) 758 ==12017== by 0x4892263: _XReply (xcb_io.c:626) 759 *snip* 760 761 Problem is that XFreeDisplaySturture is checking for qelt->event.type == 762 GenericEvent while _XUnknownWireEvent doesn't store the type. 763 764 Reviewed-by: Adam Jackson <ajax@redhat.com> 765 Reviewed-by: Peter Hutterer <peter.hutterer@who-t.net> 766 Signed-off-by: Pauli Nieminen <ext-pauli.nieminen@nokia.com> 767 768commit fa9747b9d4443eef9b1687b8b1208801f5c585da 769Author: Fernando Carrijo <fcarrijo.lists@gmail.com> 770Date: Tue Dec 28 16:18:57 2010 -0500 771 772 specs: convert images from gif to svg format. 773 774 Signed-off-by: Gaetan Nadon <memsize@videotron.ca> 775 776commit 0012e2a4eaddc0840617b4758931ad976ca2eb7c 777Author: Philipp Reh <sefi@s-e-f-i.de> 778Date: Wed Dec 22 15:14:05 2010 +0000 779 780 Events: Store event cookie when dequeuing event 781 782 When we dequeue an event in XCheckTypedEvent or XCheckTypedWindowEvent, 783 make sure to store the corresponding cookie too. 784 785 Signed-off-by: Philipp Reh <sefi@s-e-f-i.de> 786 Reviewed-by: Daniel Stone <daniel@fooishbar.org> 787 788commit d2714d65e85b44abedf5f82e1a31506dba397ef2 789Author: Alan Coopersmith <alan.coopersmith@oracle.com> 790Date: Tue Dec 21 18:47:16 2010 -0800 791 792 Revert "Mark atom names argument to XInternAtoms as const" 793 794 This reverts commit c8701115462b482d99ecff24d9de0f2806084ba5. 795 796 The constification of a pointer to a pointer caused unexpected issues, 797 and xorg-devel was unable to come up with a clean, safe, reasonable way 798 to handle them, so we're chalking this up for now as yet another mistake 799 in the Xlib API definition we'll be living with. 800 801 See https://bugs.freedesktop.org/show_bug.cgi?id=32098 for details. 802 803 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 804 805commit 6459f9a48a82de3bc0235bd36acab2df11e436d5 806Author: Alan Coopersmith <alan.coopersmith@oracle.com> 807Date: Mon Dec 20 20:54:07 2010 -0800 808 809 specs/XKB: make acknowlegement section <preface> instead of <chapter> 810 811 Fixes numbering of actual chapters to match their filenames and to 812 make the table/figure numbering match the references in the text. 813 814 Reported-by: jelmd on freenode irc 815 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 816 817commit 42c653d5413fc5870486a9cf51dd28d1e88f7c69 818Author: Alan Coopersmith <alan.coopersmith@oracle.com> 819Date: Sun Dec 19 23:53:02 2010 -0800 820 821 Add XKBlib spec images to dist_spec_DATA for distribution & installation 822 823 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 824 Reviewed-by: Gaetan Nadon <memsize@videotron.ca> 825 826commit 8f8a3c8c42af82976d261ac2447cfbb0f90fa77d 827Author: Matt Dew <matt@osource.org> 828Date: Tue Nov 30 10:52:07 2010 -0500 829 830 specs: convert XKBlib spec from Framemaker to DocBook.xml 831 832 Signed-off-by: Gaetan Nadon <memsize@videotron.ca> 833 834commit c8701115462b482d99ecff24d9de0f2806084ba5 835Author: Alan Coopersmith <alan.coopersmith@oracle.com> 836Date: Sun Nov 21 20:49:05 2010 -0800 837 838 Mark atom names argument to XInternAtoms as const 839 840 Updates code & docs for XInternAtoms. 841 842 The single atom name argument to XInternAtom was already const char * 843 in the code, but not the docs, so updated it in the docs too. 844 845 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 846 Reviewed-by: Peter Hutterer <peter.hutterer@who-t.net> 847 848commit 24db5b5ff0d51b0ed9d9701a792c5f14f23b638d 849Author: Alan Coopersmith <alan.coopersmith@oracle.com> 850Date: Sun Nov 21 14:04:32 2010 -0800 851 852 libX11 1.4.0 853 854 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 855 856commit 18d3c3e9de19e936281b111d5a82acfb3a3f552e 857Author: Dan Nicholson <dbn.lists@gmail.com> 858Date: Sat Nov 6 21:58:10 2010 +0000 859 860 config: Check host string when deciding architecture to build for 861 862 When checking for the OS/2 platform, $target_os is used. However, unless 863 building a cross compiler, the $host* strings contain the platform 864 details for the build system. See: 865 866 http://www.gnu.org/software/automake/manual/automake.html#Cross_002dCompilation 867 868 $host_os is already being used to determine the transport and threading 869 options. 870 871 Signed-off-by: Dan Nicholson <dbn.lists@gmail.com> 872 Reviewed-by: Julien Cristau <jcristau@debian.org> 873 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 874 875commit affc2488a7f2660a74dc8354fc3e0bff2c4f879c 876Author: Dan Nicholson <dbn.lists@gmail.com> 877Date: Sat Nov 6 21:58:09 2010 +0000 878 879 config: Fix architecture check for OS/2 to skip nios2 cpu 880 881 The OS/2 platform requires some utility functions as well as having a 882 non-32 bit wchar_t. Fix the configure check so that it doesn't also 883 affect the nios2 cpu, which wouldn't influence these operating system 884 issues. 885 886 Signed-off-by: Dan Nicholson <dbn.lists@gmail.com> 887 Tested-by: Frans Meulenbroeks <fransmeulenbroeks@gmail.com> 888 Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com> 889 Reviewed-by: Julien Cristau <jcristau@debian.org> 890 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 891 892commit 8cbca8a10761d1ea75a75bafa647632d6c0dac71 893Author: Gaetan Nadon <memsize@videotron.ca> 894Date: Tue Nov 9 13:04:44 2010 -0500 895 896 config: HTML file generation: use the installed copy of xorg.css 897 898 Currenlty the xorg.css file is copied in each location 899 where a DocBook/XML file resides. This produces about 900 70 copies in the $(docdir) install tree. 901 902 Signed-off-by: Gaetan Nadon <memsize@videotron.ca> 903 904commit 3e8907305e1818369aef5a5c0da61f09e20de4f8 905Author: Alan Coopersmith <alan.coopersmith@oracle.com> 906Date: Fri Oct 29 22:02:10 2010 -0700 907 908 libX11 1.3.99.903 (1.4.0 RC3) 909 910 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 911 912commit 5d245d8013289b13e0c42100951b26166c7fada4 913Author: Alan Coopersmith <alan.coopersmith@oracle.com> 914Date: Fri Oct 29 22:01:39 2010 -0700 915 916 Require xorg-macros 1.11 now that it is released 917 918 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 919 920commit 1ec89689fc771f116a6165226b9e076f54254a40 921Author: Dan Nicholson <dbn.lists@gmail.com> 922Date: Fri Oct 22 19:09:07 2010 -0700 923 924 docs: Disable fop documentation by default 925 926 fop is used to generate the pdf and ps formats of the documentation. 927 This can significantly slow down the build, especially when creating all 928 the compose key charts. Since few people probably want the full set of 929 doc formats, set the default to 'no'. 930 931 The default parameter for XORG_WITH_FOP is only available in recent 932 macros. Users generating configure from older macros will just get 933 'auto' as the default. 934 935 Signed-off-by: Dan Nicholson <dbn.lists@gmail.com> 936 Reviewed-by: Gaetan Nadon <memsize@videotron.ca> 937 Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com> 938 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 939 940commit 03877bda911b72ac60a7144d6eced7d5be4b4d72 941Author: Jon TURNEY <jon.turney@dronecode.org.uk> 942Date: Wed Apr 14 13:38:18 2010 +0100 943 944 Add C.UTF-8 and C.ASCII locale aliases 945 946 Add C.UTF-8 locale as an alias for en_US.UTF-8 947 Add C.ASCII locale as an alias for C 948 949 (C.UTF-8 is the default locale for cygwin. It also exists in debian, 950 although I don't think it's intended for use by humans.) 951 952 Signed-off-by: Jon TURNEY <jon.turney@dronecode.org.uk> 953 Acked-by: Julien Cristau <jcristau@debian.org> 954 Reviewed-by: James Cloos <cloos@jhcloos.com> 955 956commit 81d1d9a6bdca779a44f931730b866eea75777c00 957Author: Dan Nicholson <dbn.lists@gmail.com> 958Date: Sat Oct 9 16:00:47 2010 -0700 959 960 docs: Remove directory prerequisites from make rules 961 962 Make expects prerequisites to be files with valid timestamps, and 963 directories are treated as always being out of date. Thus, any targets 964 depending on directories will always be rebuilt. 965 966 Instead, the doc rules are changed to always create the target's leading 967 directory. This should prevent the documentation from being rebuilt when 968 "make install" is run. 969 970 Signed-off-by: Dan Nicholson <dbn.lists@gmail.com> 971 Reviewed-by: Jeremy Huddleston <jeremyhu@apple.com> 972 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 973 974commit d0cbf388919364fe6b5b9127f36426eb744090a0 975Author: Jeremy Huddleston <jeremyhu@apple.com> 976Date: Sun Sep 26 21:21:16 2010 -0700 977 978 Add an "X11_" string to header guards to avoid possible collision 979 980 This addresses a build failure which can result from <X11/Xlocale.h> and 981 <xlocale.h> being included in the same code since they both used the same 982 _XLOCALE_H_ protection. 983 984 Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com> 985 986commit b51ac675f44f5ce1a28c5734bf3c26983f8b4192 987Author: Alan Coopersmith <alan.coopersmith@oracle.com> 988Date: Tue Sep 21 19:53:03 2010 -0700 989 990 libX11 1.3.99.902 (1.4.0 RC2) 991 992 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 993 994commit 986bb6d1d54368fe91e3ea24f518d43ce6179782 995Author: Alan Coopersmith <alan.coopersmith@oracle.com> 996Date: Tue Sep 14 00:10:31 2010 -0700 997 998 Bug 19379 - Provide docs with overview of all compose key combinations 999 1000 Adds compose-chart.pl to generate DocBook/XML documents listing compose 1001 keys, and Makefile rules to generate HTML & PDF output from them if xmlto 1002 is present. 1003 1004 https://bugs.freedesktop.org/show_bug.cgi?id=19379 1005 1006 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 1007 Reviewed-by: Mikhail Gusarov <dottedmag@dottedmag.net> 1008 Reviewed-by: James Cloos <cloos@jhcloos.com> 1009 Tested-by: Gaetan Nadon <memsize@videotron.ca> 1010 1011commit 3eb064071695ebf0f371163ed818a428dfeba8e6 1012Author: Alan Coopersmith <alan.coopersmith@oracle.com> 1013Date: Sat Sep 11 00:49:21 2010 -0700 1014 1015 Make locale data build non-recursive / parallelizable 1016 1017 On a 4 core CPU with gmake -j 16 the nls subdir builds in half the time, 1018 plus this simplifies the next set of changes. 1019 1020 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 1021 Reviewed-by: Mikhail Gusarov <dottedmag@dottedmag.net> 1022 Reviewed-by: James Cloos <cloos@jhcloos.com> 1023 Tested-by: Gaetan Nadon <memsize@videotron.ca> 1024 1025commit a3fc78ac352e5a70a958996ef6aec50f653974d1 1026Author: Gaetan Nadon <memsize@videotron.ca> 1027Date: Fri Sep 17 17:38:11 2010 -0400 1028 1029 config: remove man page suffix from bottom summary 1030 1031 The man page suffix is the same for all libraries on a given 1032 platform and is not configurable. It should have been removed 1033 in commit 09edc6de6. 1034 1035 Signed-off-by: Gaetan Nadon <memsize@videotron.ca> 1036 1037commit a52b0068f36c739eb7e426214cd72a8d9bb776ca 1038Author: Gaetan Nadon <memsize@videotron.ca> 1039Date: Fri Sep 17 17:29:30 2010 -0400 1040 1041 config: remove unhelpful comment in .gitignore 1042 1043 Signed-off-by: Gaetan Nadon <memsize@videotron.ca> 1044 1045commit 10dd881e7818be9074da4ab3a68577adcdaf71d2 1046Author: Adam Jackson <ajax@redhat.com> 1047Date: Wed Sep 8 10:44:23 2010 -0400 1048 1049 Zero buffer data in BufAlloc() 1050 1051 Inspired by a pattern in NoMachine's NX. Consistently zeroed buffers 1052 compress better with ssh and friends. Note that you'll need to rebuild 1053 all your protocol libraries to take advantage of this. 1054 1055 Signed-off-by: Adam Jackson <ajax@redhat.com> 1056 Reviewed-by: Jeremy Huddleston <jeremyhu@apple.com> 1057 Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com> 1058 1059commit da099f0d2015831ea5f4a5d0740ed962aa4d5d8b 1060Author: James Cloos <cloos@jhcloos.com> 1061Date: Sun Sep 12 17:00:54 2010 -0400 1062 1063 Revert “Dolt-ify" 1064 1065 Libtool’s is now sufficiently fast that DOLT is no longer 1066 worth the bother, even on those few systems where is works. 1067 1068 This reverts commit 3e9afd501e40d76040635bd9a3045bcaf5a03b60 1069 and part of commit d31e644c65c52828ea3e7abd94a8cf9aee12265c. 1070 1071 It conflicted with commit f6a4fd0c7615684d08e848245849dea4017a5214 1072 which moved dolt from configure.ac to m4/dolt.m4. 1073 1074 And it addresses: http://bugs.freedesktop.org/show_bug.cgi?id=28188 1075 1076 Signed-off-by: James Cloos <cloos@jhcloos.com> 1077 1078commit 2661fbe6b809c937a60c2c1ca5ddb8280e399bd8 1079Author: Alan Coopersmith <alan.coopersmith@oracle.com> 1080Date: Thu Sep 9 19:24:29 2010 -0700 1081 1082 XIM spec title page minor formatting cleanup 1083 1084 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 1085 1086commit f99f1380bbf7bb2a0c491acad4a3d8db44bfd752 1087Author: Jens Petersen <petersen@redhat.com> 1088Date: Mon Aug 23 18:08:10 2010 -0700 1089 1090 Bug 29773: aliases for nb_NO.utf8 and nn_NO.utf8 1091 1092 <https://bugs.freedesktop.org/show_bug.cgi?id=29773> 1093 1094 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 1095 1096commit b15b8a558ec64c834cc8f6a52d7f3c4f530c8c4b 1097Author: Alan Coopersmith <alan.coopersmith@oracle.com> 1098Date: Fri Sep 3 23:11:53 2010 -0700 1099 1100 Sun's copyrights are now owned by Oracle 1101 1102 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 1103 1104commit 7742bf62b1fa652da4270587e280249945367cae 1105Author: Alan Coopersmith <alan.coopersmith@oracle.com> 1106Date: Fri Sep 3 18:31:44 2010 -0700 1107 1108 libX11 1.3.99.901 (1.4.0 RC1) 1109 1110 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 1111 1112commit 5a02d6d74b5451d48d8f55709dfd4ecd3c068586 1113Author: Jeroen Hoek <mail@jeroenhoek.nl> 1114Date: Sun Aug 29 09:47:06 2010 -0400 1115 1116 libX11/nls compose tables, add LATIN CAPITAL LETTER SHARP S 1117 1118 Add LATIN CAPITAL LETTER SHARP S 1119 (See https://bugs.freedesktop.org/show_bug.cgi?id=29448 for rationale) 1120 1121 Signed-off-by: James Cloos <cloos@jhcloos.com> 1122 1123commit 09edc6de6619a2eabda3b808ebff4165550664f1 1124Author: Gaetan Nadon <memsize@videotron.ca> 1125Date: Fri Aug 13 14:21:08 2010 -0400 1126 1127 config: remove man-pages configuration option 1128 1129 This option was added in commit 6e752ea120 with no explanation. 1130 The section number is provoded by XORG_MANPAGE_SECTIONS 1131 There is no case where libX11 should be different than other libs 1132 The option was also used to disable building of the man pages, 1133 which build in 14 secs. No indication this is required. 1134 1135 If there is a requirement from system builders to disable building 1136 of man pages, it could be done consistently for all modules. 1137 1138 Signed-off-by: Gaetan Nadon <memsize@videotron.ca> 1139 1140commit f92e754297ec5fdb81068b56a4435026666224fa 1141Author: Aaron Plattner <aplattner@nvidia.com> 1142Date: Sun Aug 15 21:51:38 2010 -0700 1143 1144 XOpenDisplay: save the correct display_name value 1145 1146 The X Test Suite's XDisplayString test checks the invariant 1147 XDisplayString(XOpenDisplay(str)) == str. The Xlib XOpenDisplay violates this 1148 invariant by expanding str to the canonical form "host:display.scrn" (unless 1149 HAVE_LAUNCHD is set and it starts with "/tmp/launch"). E.g., this expands ":1" 1150 to ":1.0": 1151 1152 400|26 1 1 19:26:41|IC Start 1153 200|26 1 19:26:41|TP Start 1154 520|26 1 00032625 1 1|VSW5TESTSUITE PURPOSE 1 1155 520|26 1 00032625 1 2|Assertion XDisplayString-1.(A) 1156 520|26 1 00032625 1 3|A call to XDisplayString returns the string that was used 1157 520|26 1 00032625 1 4|as the argument to the XOpenDisplay call that returned the 1158 520|26 1 00032625 1 5|value used as the display argument. 1159 520|26 1 00032625 1 6|METH: Open a connection using XOpenDisplay. 1160 520|26 1 00032625 1 7|METH: Obtain the display string using XDisplayString. 1161 520|26 1 00032625 1 8|METH: Verify that the value of the string is the parameter used in XOpenDisplay. 1162 520|26 1 00032625 1 9|METH: Close the display using XCloseDisplay. 1163 520|26 1 00032625 1 10|REPORT: XDisplayString() returned ":1.0" instead of ":1". 1164 220|26 1 1 19:26:41|FAIL 1165 410|26 1 1 19:26:41|IC End 1166 1167 Fix this by deleting all of the code to construct the canonical path and just 1168 stashing a copy of the original display_name in dpy->display_name. 1169 1170 Signed-off-by: Aaron Plattner <aplattner@nvidia.com> 1171 Reviewed-by: Jeremy Huddleston <jeremyhu@apple.com> 1172 1173commit 1dc401f678469d0235e6d0b28eb4356f03327c9f 1174Author: Gaetan Nadon <memsize@videotron.ca> 1175Date: Fri Aug 13 13:06:51 2010 -0400 1176 1177 man: xkb: remove unused variable LIB_MAN_DIR_SUFFIX 1178 1179 Signed-off-by: Gaetan Nadon <memsize@videotron.ca> 1180 1181commit cbe9eebd11e5ebab4280d25b57b4cd4001241619 1182Author: Gaetan Nadon <memsize@videotron.ca> 1183Date: Fri Aug 13 11:42:29 2010 -0400 1184 1185 man: simplify building of shadow man pages 1186 1187 Store the shadow files in git as any other man page. 1188 Move man pages to man dir and use the common makefile 1189 1190 Local fix in CVS for bug 5628 is not required 1191 as the problem has been fixed in 1192 util-macros d9062e4077ebfd0985baf8418f3d0f111b9ddbba 1193 1194 Signed-off-by: Gaetan Nadon <memsize@videotron.ca> 1195 1196commit bfd899c9af2318ecbe84cb69007dba4223fdb502 1197Author: Gaetan Nadon <memsize@videotron.ca> 1198Date: Mon Aug 9 09:39:26 2010 -0400 1199 1200 config: reinstate XORG_PROG_RAWCPP erroneoulsy removed 1201 1202 in commit 76e07ef6911734eac418e399b114f1b544512736. 1203 1204 Signed-off-by: Gaetan Nadon <memsize@videotron.ca> 1205 1206commit 76e07ef6911734eac418e399b114f1b544512736 1207Author: Gaetan Nadon <memsize@videotron.ca> 1208Date: Fri Aug 6 14:01:51 2010 -0400 1209 1210 man: using the C preprocessor is not required for man pages. 1211 1212 There were no special symbols needing cpp. 1213 Everything can be handled by the default MAN_SUBSTS in util-macros. 1214 1215 Signed-off-by: Gaetan Nadon <memsize@videotron.ca> 1216 1217commit 4b8ff7db39f2fe7ef12968d462aaf3f9054b6c18 1218Author: Jamey Sharp <jamey@minilop.net> 1219Date: Fri Aug 6 15:51:56 2010 -0700 1220 1221 Fix use-after-free in _XReply on X errors. 1222 1223 _XReply would always call dequeue_pending_request on errors. When it 1224 got an error for the current request, it would call dequeue, then break 1225 out of the loop; then, if it had an error in the event queue, it would 1226 compare it with the sequence number of the now-freed pending request. 1227 _XReply already stored that sequence number in dpy->last_request_read 1228 before freeing it, so look at that instead. 1229 1230 Fixes: https://bugs.freedesktop.org/show_bug.cgi?id=29412 1231 1232 Signed-off-by: Jamey Sharp <jamey@minilop.net> 1233 Signed-off-by: Josh Triplett <josh@joshtriplett.org> 1234 1235commit 9fa146b30046396b70d64986e50d6617b3a8ac48 1236Author: Gaetan Nadon <memsize@videotron.ca> 1237Date: Sat Jul 31 16:15:35 2010 -0400 1238 1239 specs: xsl stylesheet requires abs path to images 1240 1241 Using abs_builddir requires automake 1.10 or later. 1242 1243 Signed-off-by: Gaetan Nadon <memsize@videotron.ca> 1244 1245commit a8727d4bc39015e303b4128d0ad8aaf6d5fc9f0a 1246Author: Gaetan Nadon <memsize@videotron.ca> 1247Date: Sun Aug 1 14:13:07 2010 -0400 1248 1249 specs: update .gitignore now that all groff generated files are gone 1250 1251 Signed-off-by: Gaetan Nadon <memsize@videotron.ca> 1252 1253commit f70527f05677aaf6a493ba42d2d95f738aaebafa 1254Author: Adam Jackson <ajax@redhat.com> 1255Date: Thu Jul 29 11:11:21 2010 -0400 1256 1257 nls: Switch one of the interrobang sequences to gnaborretni 1258 1259 Since gnaborretni is primarily used in LTR locales, the ? part of the 1260 sequence reflects the position of the bulge in the ?. When scanning an 1261 inverted interrobang left-to-right, you see the bulge first, so the 1262 compose sequence ?! is used; upright interrobang shows the bulge 1263 last, so it's !?. 1264 1265 This is a change in behaviour, but I was unable to come up with anything 1266 better. ??!! or !!?? would match the patterns for ¿ and ¡, but they 1267 would delay evaluation of them; "¿Qué?" wouldn't show the ¿ until you hit 1268 Q. Likewise ?!?! and !?!? would delay showing the interrobang itself. 1269 ~!? and ~?! were considered but are arguably less intuitive. 1270 1271 Reviewed-by: James Cloos <cloos@jhcloos.com> 1272 Signed-off-by: Adam Jackson <ajax@redhat.com> 1273 1274commit 511c4f6d29b2da4f71093feabcbb3913cb5d12a7 1275Author: Gaetan Nadon <memsize@videotron.ca> 1276Date: Wed Jul 28 10:27:39 2010 -0400 1277 1278 specs: move indexterm from glossdef to glossterm 1279 1280 This move fixes a Java class cast exception in the glossary. 1281 The problem was introduced in commit 1282 26f4f0d50840fe5ba4c46aae0a8e68db0059434b 1283 1284 It may not happen on all versions of the doc toolchain. 1285 There is no reason why indexterm cannot appear in glossdef, 1286 this is a workaround to an implementation problem found by 1287 trial and error. 1288 1289 Signed-off-by: Gaetan Nadon <memsize@videotron.ca> 1290 Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com> 1291 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 1292 1293commit 87a108f3aa565aa803dacb3a53b811f45025b609 1294Author: Matt Dew <matt@osource.org> 1295Date: Sat Jul 24 14:46:57 2010 -0400 1296 1297 specs: replace troff source with docbook-xml source 1298 1299 Signed-off-by: Gaetan Nadon <memsize@videotron.ca> 1300 1301commit 8e603413586ff42b1351688f6f99318cbe243bca 1302Author: Julien Cristau <jcristau@debian.org> 1303Date: Sat Jul 24 22:13:07 2010 +0200 1304 1305 Compose.man: default user compose file is .XCompose, not .Xcompose 1306 1307 The path was correct in the DESCRIPTION section, but not in FILES. 1308 1309 Signed-off-by: Julien Cristau <jcristau@debian.org> 1310 1311commit 554da76ece85d0fc0cada45a86860e69c2107e9a 1312Author: Daniel Stone <daniel@fooishbar.org> 1313Date: Tue Jul 20 12:34:48 2010 +0100 1314 1315 NLS: Add \o/ Compose sequence 1316 1317 Unicode is even more pointlessly awesome! Add a binding for Compose-\o/ 1318 to U+1F64C PERSON RAISING BOTH HANDS IN CELEBRATION. 1319 1320 Signed-off-by: Daniel Stone <daniel@fooishbar.org> 1321 1322commit 2e7a18b6a617b9b4bfcea2d36f2bd2d7e0c4a3dd 1323Author: Daniel Stone <daniel@fooishbar.org> 1324Date: Fri Jul 9 18:13:13 2010 +0100 1325 1326 XStringToKeysym: Cope with 0x1234cafe-style input 1327 1328 If we get input in the style of 0xdeadbeef, just return that exact 1329 keysym. Introduces a dependency on strtoul, which I'm told is OK on all 1330 the systems we care about. 1331 1332 Signed-off-by: Daniel Stone <daniel@fooishbar.org> 1333 1334commit 3df45ed0c29b98ff468a0ff0ba24830bb664fd5a 1335Author: Alan Coopersmith <alan.coopersmith@oracle.com> 1336Date: Mon Jul 19 17:58:27 2010 -0700 1337 1338 specs/libX11: Fix column count of Gravity Attributes table 1339 1340 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 1341 1342commit 53bcba0d1d2dc3fd5e0de4bae3da30a1aa31a0c4 1343Author: Alan Coopersmith <alan.coopersmith@oracle.com> 1344Date: Mon Jul 19 14:43:38 2010 -0700 1345 1346 specs/libX11: Convert \- to − and \^ to either   or removed 1347 1348 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 1349 1350commit 5a0b45275638281e1bb2ae7d3e16b98e6470dae9 1351Author: Alan Coopersmith <alan.coopersmith@oracle.com> 1352Date: Mon Jul 19 11:28:50 2010 -0700 1353 1354 specs/libX11: Manual cleanup pass over Ch. 1 1355 1356 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 1357 1358commit 21567992958a6f12b3d0186f2f27a5b2a41b8448 1359Author: Alan Coopersmith <alan.coopersmith@oracle.com> 1360Date: Mon Jul 19 14:51:10 2010 -0700 1361 1362 specs/libX11: make sure all files have DOCTYPEs so standard entities work 1363 1364 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 1365 1366commit c944a8521f5760b485192658b921145159cdb439 1367Author: Alan Coopersmith <alan.coopersmith@oracle.com> 1368Date: Sun Jul 18 13:12:20 2010 -0700 1369 1370 specs/libX11: Fix up list of header files in Ch.1 & add index entries 1371 1372 Combination of manual editing and automatic substitution via: 1373 1374 perl -i -p -00 -e 's{<varlistentry>(\s+)<term><X11/([^&]+)></term>(\s+)<listitem>(\s+)<para>}{<varlistentry id="Standard_Header_Files:$2">$1<term><filename class="headerfile"><X11/$2></filename></term>$3<listitem>$4<indexterm type="file"><primary><filename class="headerfile">X11/$2</filename></primary></indexterm>$4<indexterm><primary>Files</primary><secondary><X11/$2></secondary></indexterm>$4<indexterm><primary>Headers</primary><secondary><X11/$2></secondary></indexterm>$4<para>}g' CH01.xml 1375 1376 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 1377 1378commit bb66e8f1ce330043278d3e8cbc7d5d3bc56ee030 1379Author: Alan Coopersmith <alan.coopersmith@oracle.com> 1380Date: Sun Jul 18 12:47:27 2010 -0700 1381 1382 specs/libX11: Add indexterms for headerfiles that .hN used to provide 1383 1384 Automatic substitution performed via: 1385 perl -i -p -e 's{^<<filename class="headerfile">([^<]+)</filename>>(.*)$}{<filename class="headerfile"><$1></filename>$2\n<indexterm type="file"><primary><filename class="headerfile">$1</filename></primary></indexterm>\n<indexterm><primary>Files</primary><secondary><filename class="headerfile"><$1></filename></secondary></indexterm>\n<indexterm><primary>Headers</primary><secondary><filename class="headerfile"><$1></filename></secondary></indexterm>}' *.xml 1386 1387 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 1388 1389commit d0b0d215cb85da48b323b1392149ce181e7ef5ec 1390Author: Alan Coopersmith <alan.coopersmith@oracle.com> 1391Date: Fri Jul 16 21:15:13 2010 -0700 1392 1393 specs/libX11: convert multicolumn lists from tables to <simplelist> 1394 1395 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 1396 1397commit e679f80c6210c0aefe3669f8f536353619097a4b 1398Author: Alan Coopersmith <alan.coopersmith@oracle.com> 1399Date: Fri Jul 16 20:51:52 2010 -0700 1400 1401 specs/libX11: Tag WM_* as <property> 1402 1403 Mass substitution done by: 1404 perl -i -p -e 'if ($_ !~ m{^\<}) { $_ =~ s{(WM_\w+)}{<property>$1</property>}g; }' *.xml 1405 1406 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 1407 1408commit c7b7e59b3b22221d0be6286c540001c360308f69 1409Author: Alan Coopersmith <alan.coopersmith@oracle.com> 1410Date: Fri Jul 16 20:41:33 2010 -0700 1411 1412 specs/libX11: Convert simpler eqn markup to docbook tags 1413 1414 Mostly "sup" to <superscript> 1415 1416 There's several more complicated equations that will probably need 1417 MathML or SVG to solve. 1418 1419 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 1420 1421commit 897486c54c6a54771867d667441aaf9a4b9c35ca 1422Author: Alan Coopersmith <alan.coopersmith@oracle.com> 1423Date: Fri Jul 16 00:50:39 2010 -0700 1424 1425 specs/libX11: App. D: convert literallayouts to synopsis or programlisting 1426 1427 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 1428 1429commit 692906c3b3d8aa8b8927fbc230c3050d633785d2 1430Author: Alan Coopersmith <alan.coopersmith@oracle.com> 1431Date: Fri Jul 16 00:36:43 2010 -0700 1432 1433 specs/libX11: Fix section headers in Appendix D 1434 1435 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 1436 1437commit bcc41baa02e137884d847aec0f3ff8ca5c85c32f 1438Author: Alan Coopersmith <alan.coopersmith@oracle.com> 1439Date: Wed Jul 14 07:22:26 2010 -0700 1440 1441 specs/libX11: Explicitly tag document as English 1442 1443 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 1444 1445commit 6783544706ff370e900c137f951e90230586d6dc 1446Author: Alan Coopersmith <alan.coopersmith@oracle.com> 1447Date: Mon Jul 12 22:03:18 2010 -0700 1448 1449 specs/libX11: Appendix C: convert literallayouts to synopsis or programlisting 1450 1451 Fixes display of a bunch of function prototypes and sample code 1452 1453 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 1454 1455commit 8834cd9285e6aaf437aee56292c508d99a090fa9 1456Author: Alan Coopersmith <alan.coopersmith@oracle.com> 1457Date: Mon Jul 12 18:37:16 2010 -0700 1458 1459 xmlrules.in: Add chunked-html rule to manually generate smaller files 1460 1461 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 1462 1463commit 53f78680c34ebc94ce26b5e14c2a0003435cf10d 1464Author: Alan Coopersmith <alan.coopersmith@oracle.com> 1465Date: Mon Jul 12 18:35:59 2010 -0700 1466 1467 specs/libX11: Convert Appendix A tables to real tables 1468 1469 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 1470 1471commit 705a1257a8a47f4a1f94979aee09a837500ede7d 1472Author: Alan Coopersmith <alan.coopersmith@oracle.com> 1473Date: Mon Jul 12 18:38:09 2010 -0700 1474 1475 specs/libX11: Fix out-of-place text in Chapter 1 1476 1477 DTD violation error introduced in 89cc2e02e7c29ef9a02f0cfdf2090a2934f539e4 1478 1479 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 1480 1481commit a151346a2b7810e988f1de4b1e00b37672dc587a 1482Author: Jeremy Huddleston <jeremyhu@apple.com> 1483Date: Mon Jul 12 16:52:12 2010 -0700 1484 1485 launchd: Explicitly search /sbin 1486 1487 Previously, launchd wasn't found if /sbin wasn't in the user's PATH. 1488 https://bugs.freedesktop.org/show_bug.cgi?id=29028 1489 1490 Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com> 1491 1492commit 89cc2e02e7c29ef9a02f0cfdf2090a2934f539e4 1493Author: Alan Coopersmith <alan.coopersmith@oracle.com> 1494Date: Mon Jul 12 13:38:04 2010 -0700 1495 1496 Replace untranslated .hN macros with <filename> tags to show header names 1497 1498 Translation performed by: 1499 perl -i -p -e 's{\<\!-- .hN (\S+) (\S+)?\s*-->} 1500 {<<filename class="headerfile">$1</filename>>$2}' *.xml 1501 1502 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 1503 1504commit 75480440946603b8efdbbf78b88d59c641b6d2c8 1505Author: Alan Coopersmith <alan.coopersmith@oracle.com> 1506Date: Sat Jul 10 00:06:13 2010 -0700 1507 1508 specs/libX11: Mass substitution of <function> tags with more specific tags 1509 1510 Matched names from X headers & "nm libX11.so" output to names in spec to 1511 map to more specific tags. Tags used: 1512 1513 <code> code fragments 1514 <constant> enum values 1515 <errorname> X protocol errors 1516 <filename> filenames 1517 <function> functions 1518 <function> function-like macros (#define foo(a,b)...) 1519 <returnvalue> function return codes 1520 <structfield> struct members 1521 <structname> struct names (even when typedefed) 1522 <symbol> simple value #defines (#define NAME value) 1523 <systemitem> X protocol requests 1524 <systemitem class="event"> X protocol events 1525 <type> non-struct typedefs 1526 <varname> global variables 1527 1528 (Also fixed a couple typos detected by failures of this matching, such as 1529 XESSetPrintErrorValues -> XESetPrintErrorValues.) 1530 1531 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 1532 1533commit 26f4f0d50840fe5ba4c46aae0a8e68db0059434b 1534Author: Alan Coopersmith <alan.coopersmith@oracle.com> 1535Date: Fri Jul 9 00:37:23 2010 -0700 1536 1537 specs/libX11: Glossary cross-reference links 1538 1539 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 1540 1541commit 930b52d84031de0e15e0a11cf4ecfd3b2f59e073 1542Author: Alan Coopersmith <alan.coopersmith@oracle.com> 1543Date: Thu Jul 8 21:19:08 2010 -0700 1544 1545 specs/libX11: Make whitespace around <function> tags more uniform 1546 1547 Simplifies regular expressions for further mass substitutions. 1548 1549 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 1550 1551commit 730ce6b8aca77b77385aa894d234cbde5fcbce37 1552Author: Gaetan Nadon <memsize@videotron.ca> 1553Date: Fri Jul 9 20:10:37 2010 -0400 1554 1555 specs: use pattern rules rather than suffix rules 1556 1557 This allows target to rebuild when included .xml files are changed. 1558 1559 Signed-off-by: Gaetan Nadon <memsize@videotron.ca> 1560 1561commit 5527b4bc8ce7de60123eb28789ddef54aa48a378 1562Author: Alan Coopersmith <alan.coopersmith@oracle.com> 1563Date: Thu Jul 8 20:56:41 2010 -0700 1564 1565 specs/libX11: Move punctuation outside of the <function> tags 1566 1567 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 1568 1569commit d66d2134dfc38cd866c7c2d9ea45ed4b4dad23f0 1570Author: Alan Coopersmith <alan.coopersmith@oracle.com> 1571Date: Thu Jul 8 20:42:50 2010 -0700 1572 1573 specs/libX11: Mark a number of <acronym>s 1574 1575 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 1576 1577commit d5bbb12f55ac9f691eab6242cedc53207275131b 1578Author: Alan Coopersmith <alan.coopersmith@oracle.com> 1579Date: Thu Jul 8 19:31:36 2010 -0700 1580 1581 specs/libX11: Glossary terms should not be marked as functions 1582 1583 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 1584 1585commit 5decf7bc5dae0ae0c45c47eaaa9c4fdf9515ca1c 1586Author: Alan Coopersmith <alan.coopersmith@oracle.com> 1587Date: Thu Jul 8 19:28:18 2010 -0700 1588 1589 specs/libX11: Clean up author list & acknowledgements a little 1590 1591 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 1592 1593commit 0cd29bdb332c333e5123dce65b25ad1d97fbdae3 1594Author: Alan Coopersmith <alan.coopersmith@oracle.com> 1595Date: Thu Jul 8 17:30:34 2010 -0700 1596 1597 specs/libX11: Convert troff .IN macros to docbook <indexterm> tags 1598 1599 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 1600 1601commit a67d99ccbe22c8ce5f7a12f13b8991d9e0cf4491 1602Author: Gaetan Nadon <memsize@videotron.ca> 1603Date: Thu Jul 8 17:29:21 2010 -0400 1604 1605 specs: specdir is required to install xml files 1606 1607 The source is installed as well as the targets. 1608 This failed when configuring with --without-xmlto 1609 1610 Signed-off-by: Gaetan Nadon <memsize@videotron.ca> 1611 1612commit e14273f44c1501ab51db4adcb83b18a1073787d8 1613Author: Matt Dew <matt@osource.org> 1614Date: Thu Jul 8 14:42:32 2010 -0400 1615 1616 specs: replace troff source with docbook-xml source 1617 1618 Signed-off-by: Gaetan Nadon <memsize@videotron.ca> 1619 1620commit bea0873caf50e9ed1b89255775d9ab912cbecd45 1621Author: Daniel Stone <daniel@fooishbar.org> 1622Date: Thu Jul 8 16:49:51 2010 +0100 1623 1624 XStringToKeysym: Check strdup() return value 1625 1626 Signed-off-by: Daniel Stone <daniel@fooishbar.org> 1627 Reviewed-by: Keith Packard <keithp@keithp.com> 1628 1629commit cffa71b4a5743e2b6675b9a917d15aef4177d513 1630Author: Marko Myllynen <myllynen@redhat.com> 1631Date: Mon Jun 28 15:08:05 2010 +0300 1632 1633 Fix two typos in SFS 5966 Annex 3 1634 1635 X.Org bug#28792 <https://bugs.freedesktop.org/show_bug.cgi?id=28792> 1636 1637 Signed-off-by: Julien Cristau <jcristau@debian.org> 1638 1639commit eb023c0f8919e809b8b609e1467b14d20a290aa7 1640Author: Daniel Stone <daniel@fooishbar.org> 1641Date: Tue Jun 15 18:49:43 2010 +0100 1642 1643 Delete now-redundant XKeysymDB 1644 1645 Since XStringToKeysym now supports all the vendor keysyms, just delete 1646 our XKeysymDB, which was incomplete at best, misleading at worst, and 1647 always an annoyance. 1648 1649 Signed-off-by: Daniel Stone <daniel@fooishbar.org> 1650 Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com> 1651 1652commit 00175397480b76d32bf82b0c7c94c91a2a95954e 1653Author: Daniel Stone <daniel@fooishbar.org> 1654Date: Tue Jun 15 18:48:48 2010 +0100 1655 1656 makekeys: Scan vendor keysyms as well as core 1657 1658 Since we can't really live without vendor keysyms, scan them all in to 1659 generate ks_tables.h, rather than only doing the core ones, and leaving 1660 the vendor syms to be manually synchronised with XKeysymDB. 1661 1662 Signed-off-by: Daniel Stone <daniel@fooishbar.org> 1663 Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com> 1664 1665commit ebd6ef0a4db0ddef0ae17ad14571518ccdeea5ba 1666Author: Daniel Stone <daniel@fooishbar.org> 1667Date: Tue Jun 15 18:47:37 2010 +0100 1668 1669 XStringToKeysym: Special case for XF86 keysyms 1670 1671 Some XFree86 keysyms were in XKeysymDB as XF86_foo, despite really being 1672 XF86foo. So, if we get to the bottom of XStringToKeysym and haven't 1673 found our XF86_foo, try it again as XF86foo. 1674 1675 Signed-off-by: Daniel Stone <daniel@fooishbar.org> 1676 Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com> 1677 1678commit 8c2ffce9e5c6eef8a04f7e2732db46b3b62e13bb 1679Author: Daniel Stone <daniel@fooishbar.org> 1680Date: Tue Jun 15 17:20:48 2010 +0100 1681 1682 configure.ac: Change from deprecated AC_DEFINE_DIR to AX_ 1683 1684 AC_DEFINE_DIR is deprecated as it's squatting on the autoconf-builtin 1685 namespace, so start using the more proper AX_DEFINE_DIR instead. 1686 1687 Signed-off-by: Daniel Stone <daniel@fooishbar.org> 1688 Reviewed-by: Gaetan Nadon <memsize@videotron.ca> 1689 Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com> 1690 1691commit 6de368c9aa7ccd2fcd62fca5a2b278913db4d03d 1692Author: Fernando Carrijo <fcarrijo@yahoo.com.br> 1693Date: Thu Jul 1 06:50:47 2010 -0300 1694 1695 Purge macros NEED_EVENTS and NEED_REPLIES 1696 1697 Signed-off-by: Fernando Carrijo <fcarrijo@yahoo.com.br> 1698 Acked-by: Tiago Vignatti <tiago.vignatti@nokia.com> 1699 Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com> 1700 1701commit 0b724231be17f19538ee115a03b82b221b1f83c0 1702Author: Adam Jackson <ajax@redhat.com> 1703Date: Wed Jun 30 16:30:49 2010 -0400 1704 1705 Use -version-number consistently instead of -version-info 1706 1707 The latter is libtool braindamage. 1708 1709 Signed-off-by: Adam Jackson <ajax@redhat.com> 1710 1711commit 241a990afcf9c967c587ad6fd245df21b68b1ad9 1712Author: Juliusz Chroboczek <jch@pps.jussieu.fr> 1713Date: Tue Jun 29 18:32:42 2010 +0200 1714 1715 Make Compose-comma map to ogonek for I and U in UTF-8 locales. 1716 1717 With the preceding patch, it makes the UTF-8 compose map consistent with 1718 the ISO 8859-4 and -13 maps. 1719 1720commit af55e582f485a668c2bf43129be972bc65f03c60 1721Author: Juliusz Chroboczek <jch@pps.jussieu.fr> 1722Date: Tue Jun 29 18:20:18 2010 +0200 1723 1724 Make Compose-comma map to Ogonek for A and E in UTF-8 locales. 1725 1726 This makes the UTF-8 compose file consistent with the ISO 8859-2 compose file 1727 as far as Polish is concerned. We only sacrifice one pair of characters, 1728 e-cedilla, which is not used in any language. 1729 1730commit d6ba13009fc9ef876a104b907ffef73c6e405d4b 1731Author: Alan Coopersmith <alan.coopersmith@oracle.com> 1732Date: Thu Jun 24 13:13:11 2010 -0700 1733 1734 Define FILE_MAN_DIR_SUFFIX so XCompose shadow page has correct path 1735 1736 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 1737 1738commit 978c7238789037de917b9423ea9adfb006da1260 1739Author: Jamey Sharp <jamey@minilop.net> 1740Date: Sat Jun 19 10:44:55 2010 -0700 1741 1742 poll_for_response: Really handle xcb_poll_for_reply getting a reply. 1743 1744 Don't lose async replies. That's bad. 1745 1746 `xlsfonts -l`, which uses XListFontsWithInfo, worked fine, because the 1747 _XReply path worked; that path waited for replies, rather than polling. 1748 1749 However, XRecordProcessReplies, which does nothing but call XPending, 1750 relied on the event-handling path to process async replies, and that was 1751 busted. 1752 1753 Fixes: https://bugs.freedesktop.org/show_bug.cgi?id=28595 1754 1755 Signed-off-by: Jamey Sharp <jamey@minilop.net> 1756 1757commit ef67486c5a8aada24fd95b2991a3c4979f53805f 1758Author: Jamey Sharp <jamey@minilop.net> 1759Date: Mon Jun 21 13:34:15 2010 -0700 1760 1761 Revert "xcb_io.c: poll_for_response doesn't guarantee there's a pending request." 1762 1763 This reverts commit 4a8b6528ff69f6feb8c0e119939b4ce6c088f29e, because as 1764 a matter of fact, if poll_for_response returns NULL when we know 1765 dpy->xcb->next_event is non-NULL, there *is* guaranteed to be a pending 1766 request. 1767 1768commit 301ec5b41e9d253a446db656e1789ac7345dc433 1769Author: Jamey Sharp <jamey@minilop.net> 1770Date: Mon Jun 21 13:24:24 2010 -0700 1771 1772 Revert "poll_for_response: Really handle xcb_poll_for_reply getting a reply." 1773 1774 This reverts commit c115095d7f2bc4f5a4fb26380e3698fefdad7611. We *do* 1775 need to check poll_for_event every time through the loop in 1776 poll_for_response, so the commit did too much. 1777 1778commit 4a8b6528ff69f6feb8c0e119939b4ce6c088f29e 1779Author: Jamey Sharp <jamey@minilop.net> 1780Date: Mon Jun 21 10:54:02 2010 -0700 1781 1782 xcb_io.c: poll_for_response doesn't guarantee there's a pending request. 1783 1784 Fixes the second bug reported in: 1785 https://bugs.freedesktop.org/show_bug.cgi?id=28595 1786 1787 Signed-off-by: Jamey Sharp <jamey@minilop.net> 1788 1789commit c115095d7f2bc4f5a4fb26380e3698fefdad7611 1790Author: Jamey Sharp <jamey@minilop.net> 1791Date: Sat Jun 19 10:44:55 2010 -0700 1792 1793 poll_for_response: Really handle xcb_poll_for_reply getting a reply. 1794 1795 Don't lose async replies. That's bad. 1796 1797 `xlsfonts -l`, which uses XListFontsWithInfo, worked fine, because the 1798 _XReply path worked; that path waited for replies, rather than polling. 1799 1800 However, XRecordProcessReplies, which does nothing but call XPending, 1801 relied on the event-handling path to process async replies, and that was 1802 busted. 1803 1804 Fixes: https://bugs.freedesktop.org/show_bug.cgi?id=28595 1805 1806 Signed-off-by: Jamey Sharp <jamey@minilop.net> 1807 Signed-off-by: Josh Triplett <josh@joshtriplett.org> 1808 1809commit a25ae169862ab9b76daf259613b37c6b07bc2ef2 1810Author: Marko Myllynen <myllynen@redhat.com> 1811Date: Sun Jun 13 19:23:05 2010 +0300 1812 1813 Implement SFS 5966 Annex 4 for Finland 1814 1815 This patch adds Annex 4 of SFS 5966 for Finland and fixes two typos in 1816 Annex 3 (which were actually copied verbatim from the standard text). 1817 1818 The implementation of the standard is now complete. 1819 1820 X.Org bug#28498 <https://bugs.freedesktop.org/show_bug.cgi?id=28498> 1821 1822 Signed-off-by: Julien Cristau <jcristau@debian.org> 1823 1824commit 47b04195d8a31c8f9e6dd804196162c6cfca3ac6 1825Author: Alan Coopersmith <alan.coopersmith@oracle.com> 1826Date: Fri Jun 4 13:20:17 2010 -0700 1827 1828 LINEAR_RGB_InitSCCData: When malloc fails, don't try to free unallocated bits 1829 1830 One of the malloc failure checks had a goto to the wrong spot in the 1831 list of cleanup free() calls to unwind at the end, and was freeing 1832 bits that hadn't been initialized/allocated yet, since they would be 1833 stored in the struct that just failed to be allocated. 1834 1835 Error: Null pointer dereference (CWE 476) 1836 Read from pointer that could be constant 'NULL' 1837 at line 805 of /export/alanc/X.Org/sx86/lib/libX11/src/xcms/LRGB.c in function 'LINEAR_RGB_InitSCCData'. 1838 Pointer checked against constant 'NULL' at line 754 but does not protect the dereference. 1839 1840 [ This bug was found by the Parfait bug checking tool. 1841 For more information see http://research.sun.com/projects/parfait ] 1842 1843 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 1844 1845commit aebbf3623888119b43893b253195d93b613a6e1e 1846Author: Josh Triplett <josh@joshtriplett.org> 1847Date: Sun Jun 6 19:11:55 2010 -0700 1848 1849 Mark the rest of Xprivate.h as _X_HIDDEN. 1850 1851 None of the functions in Xprivate.h should have any callers outside of 1852 Xlib, by definition. 1853 1854 Signed-off-by: Josh Triplett <josh@joshtriplett.org> 1855 Suggested-by: Jamey Sharp <jamey@minilop.net> 1856 Reviewed-by: Jamey Sharp <jamey@minilop.net> 1857 1858commit abcd1b67c8135ad652833e5a60d818837c39fce1 1859Author: Julien Cristau <jcristau@debian.org> 1860Date: Fri Jun 4 13:57:45 2010 +0200 1861 1862 Hide _XSeqSyncFunction 1863 1864 Commit a6d974dc59f2722b36e2df9d4f07aeee4f83ce43 made _XSeqSyncFunction 1865 non-static, but we don't need to export it. 1866 1867 Signed-off-by: Julien Cristau <jcristau@debian.org> 1868 Reviewed-by: Adam Jackson <ajax@redhat.com> 1869 Reviewed-by: Jamey Sharp <jamey@minilop.net> 1870 1871commit 15e5eaf62897b3179d1fbe457cb19f886f0449f8 1872Author: Josh Triplett <josh@joshtriplett.org> 1873Date: Thu Jun 3 09:41:01 2010 -0700 1874 1875 Remove support for building without XCB 1876 1877 And there was much rejoicing. 1878 1879 Signed-off-by: Josh Triplett <josh@joshtriplett.org> 1880 Reviewed-by: Jamey Sharp <jamey@minilop.net> 1881 1882 Consensus on #xorg-devel agrees with removing --without-xcb; in 1883 particular, acks from Adam Jackson, Daniel Stone, Kristian Høgsberg, 1884 Julien Cristau, and Rémi Cardona. 1885 1886commit fb19eb767a32fd4ff74021c51bc6f60eb8bdff74 1887Author: Alan Coopersmith <alan.coopersmith@oracle.com> 1888Date: Thu Jun 3 15:21:40 2010 -0700 1889 1890 libX11 1.3.4 1891 1892 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 1893 1894commit 8f3db40ca5108a919244f3fff7466d01a14b3ce2 1895Author: Alan Coopersmith <alan.coopersmith@oracle.com> 1896Date: Thu Jun 3 13:08:17 2010 -0700 1897 1898 Workaround bug in groff flag processing that breaks distcheck 1899 1900 At least with the groff 1.19.2 package I have installed, groff passes 1901 on the -I flags for the include path to grohtml, which if they come 1902 after the -P-I... flag we pass to grohtml to specify the image file 1903 name pattern cause it to override that flag and put the images in 1904 the wrong place, breaking "make distcheck" - changing the flag order 1905 works around this. 1906 1907 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 1908 1909commit bdb31a1fb707cebccc9efbbf68cb55c10fa4ea3e 1910Author: Alan Coopersmith <alan.coopersmith@oracle.com> 1911Date: Thu Jun 3 11:25:33 2010 -0700 1912 1913 Fix typo that made configure always report "none" for man page suffix 1914 1915 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 1916 1917commit 6bb7d2d21d6b58019fb37b724b59c9744f30b9ce 1918Author: Paul Bender <pebender@gmail.com> 1919Date: Thu Jun 3 11:20:26 2010 -0700 1920 1921 Bug 22591 - configure does not obey the --enable-*-transport options 1922 1923 https://bugs.freedesktop.org/show_bug.cgi?id=22591 1924 1925 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 1926 1927commit d7f35946d673bb00f2768e025b6e1017422b2174 1928Author: Paul Bender <pebender@gmail.com> 1929Date: Thu Jun 3 11:17:45 2010 -0700 1930 1931 Bug 22590 - libX11 1.2.1 has broken abstract namespace support 1932 1933 https://bugs.freedesktop.org/show_bug.cgi?id=22590 1934 1935 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 1936 1937commit b2487d07f7b355f230a56e32c763acd08862735c 1938Author: Alan Coopersmith <alan.coopersmith@oracle.com> 1939Date: Thu Jun 3 11:06:15 2010 -0700 1940 1941 Bug 22584 - libX11 does not cross compile 1942 1943 Adaptation of patch submitted by Paul Bender in attachment 27301 to 1944 https://bugs.freedesktop.org/show_bug.cgi?id=22584 1945 1946 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 1947 Reviewed-by: Mikhail Gusarov <dottedmag@dottedmag.net> 1948 Reviewed-by: Dan Nicholson <dbn.lists@gmail.com> 1949 1950commit 4378219ff8c1418418c70086085358b69d574e74 1951Author: Alan Coopersmith <alan.coopersmith@oracle.com> 1952Date: Tue Jun 1 18:55:48 2010 -0700 1953 1954 Clarify requirements in XRestackWindows man page 1955 1956 The required common parent window is not specified in the arguments, 1957 just implied as the parent of the first window in the list. 1958 1959 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 1960 1961commit f09c5299a381e2729e800a0ac43f1c0e371f65f6 1962Author: Jeremy Huddleston <jeremyhu@apple.com> 1963Date: Wed May 12 16:42:18 2010 -0700 1964 1965 xcb: Add TCP fallback 1966 1967 If we fail to connect to a UNIX socket and the transport isn't specified, 1968 fallback on TCP. This matches behavior with the xtrans codepath and the 1969 Xlib spec. 1970 1971 http://lists.x.org/archives/xorg-devel/2010-April/007915.html 1972 1973 Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com> 1974 Reviewed-by: Jamey Sharp <jamey@minilop.net> 1975 1976commit fd82552d5c0ce1931f29006a0c36f5e03cf8577e 1977Merge: aae2a4a 933aee1 1978Author: Jamey Sharp <jamey@minilop.net> 1979Date: Mon May 10 16:51:24 2010 -0700 1980 1981 Merge branch 'xlib-xcb-thread-fixes' 1982 1983commit aae2a4a7aab26de3fa715d6ecd0a0e0926b37fc9 1984Author: Jeremy Huddleston <jeremyhu@apple.com> 1985Date: Fri Apr 23 21:50:29 2010 -0700 1986 1987 Don't append the screen number when using a launchd socket 1988 1989 ssh gets confused by this. XQuartz is the only DDX using this 1990 functionality, and it doesn't support different screens, so 1991 let's just not include this until most ssh know how to handle 1992 this. 1993 1994 Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com> 1995 1996commit adcd0ec209abf832a769d52db660fb37eaad6e0c 1997Author: Jeremy Huddleston <jeremyhu@apple.com> 1998Date: Fri Apr 23 16:33:44 2010 -0700 1999 2000 Remove launchd logic from _XConnectXCB as it's handled in XCB 2001 2002 Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com> 2003 2004commit d232b259c36fdde1f4179822809fec1480867dc5 2005Author: Jeremy Huddleston <jeremyhu@apple.com> 2006Date: Tue Feb 2 17:01:28 2010 -0800 2007 2008 Fix various build warnings 2009 2010 imLcIm.c: In function '_XimCachedFileName': 2011 imLcIm.c:361: warning: format '%03x' expects type 'unsigned int', but argument 8 has type 'long unsigned int' 2012 imLcIm.c:364: warning: format '%03x' expects type 'unsigned int', but argument 8 has type 'long unsigned int' 2013 2014 imRm.c: In function '_XimDefaultArea': 2015 imRm.c:597: warning: cast from pointer to integer of different size 2016 imRm.c: In function '_XimDefaultColormap': 2017 imRm.c:626: warning: cast from pointer to integer of different size 2018 2019 lcFile.c:224: warning: no previous prototype for 'xlocaledir' 2020 2021 lcUTF8.c: In function 'iconv_cstombs': 2022 lcUTF8.c:1841: warning: assignment discards qualifiers from pointer target type 2023 lcUTF8.c:1869: warning: pointer targets in passing argument 1 of 'wctomb' differ in signedness 2024 lcUTF8.c:1873: warning: pointer targets in passing argument 1 of 'wctomb' differ in signedness 2025 lcUTF8.c: In function 'iconv_mbstocs': 2026 lcUTF8.c:1935: warning: pointer targets in passing argument 2 of 'mbtowc' differ in signedness 2027 lcUTF8.c: In function 'iconv_mbtocs': 2028 lcUTF8.c:2031: warning: pointer targets in passing argument 2 of 'mbtowc' differ in signedness 2029 lcUTF8.c: In function 'iconv_mbstostr': 2030 lcUTF8.c:2121: warning: pointer targets in passing argument 2 of 'mbtowc' differ in signedness 2031 lcUTF8.c: In function 'iconv_strtombs': 2032 lcUTF8.c:2180: warning: pointer targets in passing argument 1 of 'wctomb' differ in signedness 2033 lcUTF8.c: In function '_XlcAddGB18030LocaleConverters': 2034 lcUTF8.c:2367: warning: passing argument 5 of '_XlcSetConverter' from incompatible pointer type 2035 lcUTF8.c:2368: warning: passing argument 5 of '_XlcSetConverter' from incompatible pointer type 2036 lcUTF8.c:2373: warning: passing argument 5 of '_XlcSetConverter' from incompatible pointer type 2037 lcUTF8.c:2374: warning: passing argument 5 of '_XlcSetConverter' from incompatible pointer type 2038 lcUTF8.c:2375: warning: passing argument 5 of '_XlcSetConverter' from incompatible pointer type 2039 lcUTF8.c:2376: warning: passing argument 5 of '_XlcSetConverter' from incompatible pointer type 2040 lcUTF8.c:2377: warning: passing argument 5 of '_XlcSetConverter' from incompatible pointer type 2041 2042 XlibInt.c: In function '_XGetHostname': 2043 XlibInt.c:3441: warning: implicit declaration of function 'gethostname' 2044 XlibInt.c:3441: warning: nested extern declaration of 'gethostname' 2045 2046 ConnDis.c: In function '_XDisconnectDisplay': 2047 ConnDis.c:540: warning: old-style function definition 2048 ConnDis.c: In function '_XSendClientPrefix': 2049 ConnDis.c:554: warning: old-style function definition 2050 ConnDis.c: In function 'XSetAuthorization': 2051 ConnDis.c:677: warning: old-style function definition 2052 2053 Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com> 2054 2055commit 3e11c73187acb2e2be9a812840bbbea947527ccb 2056Author: Daniel Kahn Gillmor <dkg@fifthhorseman.net> 2057Date: Fri Apr 23 00:01:54 2010 +0200 2058 2059 Allow X11 users to compose anarchism 2060 2061 I can easily compose the hammer and sickle (the symbol representative 2062 of communism) by pressing the key sequence: 2063 2064 <Compose> <C> <C> <C> <P> -> ☭ 2065 2066 But i can't easily make the circled A (the symbol representative of 2067 anarchism). 2068 2069 I'd like to be able to use <Compose> <O> <A> (this is a 2070 currently unused key sequence) to generate the symbol: Ⓐ 2071 2072 Debian bug#555938 <http://bugs.debian.org/555938> 2073 2074 Signed-off-by: Julien Cristau <jcristau@debian.org> 2075 2076commit 933aee1d5c53b0cc7d608011a29188b594c8d70b 2077Author: Jamey Sharp <jamey@minilop.net> 2078Date: Fri Apr 16 20:18:28 2010 -0700 2079 2080 Fix Xlib/XCB for multi-threaded applications (with caveats). 2081 2082 Rather than trying to group all response processing in one monolithic 2083 process_responses function, let _XEventsQueued, _XReadEvents, and 2084 _XReply each do their own thing with a minimum of code that can all be 2085 reasoned about independently. 2086 2087 Tested with `ico -threads 20`, which seems to be able to make many 2088 icosahedrons dance at once quite nicely now. 2089 2090 Caveats: 2091 2092 - Anything that was not thread-safe in Xlib before XCB probably still 2093 isn't. XListFontsWithInfo, for instance. 2094 2095 - If one thread is waiting for events and another thread tries to read a 2096 reply, both will hang until an event arrives. Previously, if this 2097 happened it might work sometimes, but otherwise would trigger either 2098 an assertion failure or a permanent hang. 2099 2100 - Versions of libxcb up to and including 1.6 have a bug that can cause 2101 xcb_wait_for_event or xcb_wait_for_reply to hang if they run 2102 concurrently with xcb_writev or other writers. So you'll want that fix 2103 as well. 2104 2105 Signed-off-by: Jamey Sharp <jamey@minilop.net> 2106 Reviewed-by: Josh Triplett <josh@freedesktop.org> 2107 2108commit aab43278ae619eb57d2dd9c7396f460f078588fc 2109Author: Jamey Sharp <jamey@minilop.net> 2110Date: Fri Apr 16 22:24:16 2010 -0700 2111 2112 Use InternalLockDisplay on code paths called from LockDisplay. 2113 2114 It's easier to reason about the code when we can't re-enter the 2115 Xlib-private sync-handlers while they're already running. 2116 2117 Signed-off-by: Jamey Sharp <jamey@minilop.net> 2118 Reviewed-by: Josh Triplett <josh@freedesktop.org> 2119 2120commit 660b7d05f4ca4ab4661c9fe7ce655a4909b4e556 2121Author: Jamey Sharp <jamey@minilop.net> 2122Date: Fri Apr 16 19:45:11 2010 -0700 2123 2124 Fix _XSend to enqueue the right range of pending requests. 2125 2126 _XSend was off-by-one on both ends. It should not re-enqueue the last 2127 request that was already flushed, but it should enqueue the last request 2128 currently being flushed. 2129 2130 Signed-off-by: Jamey Sharp <jamey@minilop.net> 2131 Reviewed-by: Josh Triplett <josh@freedesktop.org> 2132 2133commit f2735889908d6e5a7f8dbee42f00c54a52665191 2134Author: Jamey Sharp <jamey@minilop.net> 2135Date: Fri Apr 16 19:45:11 2010 -0700 2136 2137 Pending requests are always added in-order. 2138 2139 Replace insert_pending_request, which did an in-order search of the 2140 queue to find the right insertion point, with a simpler 2141 append_pending_request, and use that in _XSend as well. 2142 2143 Includes assertions to check that the list of pending requests is in 2144 order by sequence number and does not have duplicates. 2145 2146 Signed-off-by: Jamey Sharp <jamey@minilop.net> 2147 Reviewed-by: Josh Triplett <josh@freedesktop.org> 2148 2149commit d9cf5885b0f97942fbbd2a7cc50118132ece50f6 2150Author: Markus Duft <markus.duft@salomon.at> 2151Date: Fri Apr 16 08:39:34 2010 -0700 2152 2153 Bug 26839: Fix build problem on Interix (POSIX layer on Windows) 2154 2155 https://bugs.freedesktop.org/show_bug.cgi?id=26839 2156 2157 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 2158 2159commit a3f5f1b90936d23e9894e3261b2d77fb7b32a51a 2160Author: Josh Triplett <josh@freedesktop.org> 2161Date: Thu Apr 15 14:24:21 2010 -0700 2162 2163 Stop returning an int from _XIDHandler and _XSeqSyncFunction 2164 2165 _XIDHandler and _XSeqSyncFunction originally ran from dpy->synchandler, and 2166 thus had to return an int. Now, they only run from _XPrivSyncHandler or 2167 LockDisplay, neither of which needs to check their return value since they 2168 always returned 0. Make them both void. 2169 2170 Signed-off-by: Josh Triplett <josh@freedesktop.org> 2171 Signed-off-by: Jamey Sharp <jamey@minilop.net> 2172 2173commit a6d974dc59f2722b36e2df9d4f07aeee4f83ce43 2174Author: Jamey Sharp <jamey@minilop.net> 2175Date: Thu Apr 15 13:05:08 2010 -0700 2176 2177 Move XID and sync handling from SyncHandle to LockDisplay to fix races. 2178 2179 XID and sync handling happened via _XPrivSyncHandler, assigned to 2180 dpy->synchandler and called from SyncHandle. _XPrivSyncHandler thus ran 2181 without the Display lock, so manipulating the Display caused races, and 2182 these races led to assertions in multithreaded code (demonstrated via 2183 ico). 2184 2185 In the XTHREADS case, after you've called XInitThreads, we can hook 2186 LockDisplay and UnlockDisplay. Use that to run _XIDHandler and 2187 _XSeqSyncHandler from LockDisplay rather than SyncHandle; we then know 2188 that we hold the lock, and thus we can avoid races. We think it makes 2189 sense to do these both from LockDisplay rather than UnlockDisplay, so 2190 that you know you have valid sync and a valid XID before you start 2191 setting up the request you locked to prepare. 2192 2193 In the !XTHREADS case, or if you haven't called XInitThreads, you don't 2194 get to use Xlib from multiple threads, so we can use the logic we have 2195 now (with synchandler and savedsynchandler) without any concern about 2196 races. 2197 2198 This approach gets a bit exciting when the XID and sequence sync 2199 handlers drop and re-acquire the Display lock. Reacquisition will re-run 2200 the handlers, but they return immediately unless they have work to do, 2201 so they can't recurse more than once. In the worst case, if both of 2202 them have work to do, we can nest the Display lock three deep. In the 2203 case of the _XIDHandler, we drop the lock to call xcb_generate_id, which 2204 takes the socket back if it needs to request more XIDs, and taking the 2205 socket back will reacquire the lock; we take care to avoid letting 2206 _XIDHandler run again and re-enter XCB from the return_socket callback 2207 (which causes Very Bad Things, and is Not Allowed). 2208 2209 Tested with ico (with 1 and 20 threads), and with several test programs 2210 for XID and sequence sync. Tested with and without XInitThreads(), and 2211 with and without XCB. 2212 2213 Fixes: https://bugs.freedesktop.org/show_bug.cgi?id=23192 2214 2215 Signed-off-by: Jamey Sharp <jamey@minilop.net> 2216 Signed-off-by: Josh Triplett <josh@freedesktop.org> 2217 2218commit b089b53b697c2851db2985d32af3b29f1da5e31e 2219Author: Jamey Sharp <jamey@minilop.net> 2220Date: Wed Apr 14 12:59:11 2010 -0700 2221 2222 Honest. Extensions get to filter async errors too. 2223 2224 Under some circumstances, errors are picked up by calling 2225 xcb_poll_for_reply, rather than xcb_poll_for_event, because Xlib issued 2226 the requests with the XCB_REQUEST_CHECKED flag. That happens when either 2227 an async handler is queued at the time the requests are flushed, or when 2228 XSetEventQueueOwner has been used to prevent Xlib from processing XCB's 2229 event queue. 2230 2231 This bugfix extends 405132dab64bf2375f8e57d02b1b53da2311933a to cover 2232 those cases. 2233 2234 Fixes: https://bugs.freedesktop.org/show_bug.cgi?id=26545 2235 2236 Signed-off-by: Jamey Sharp <jamey@minilop.net> 2237 2238commit a15c31274650e391bc6de5d0951eb4464c228139 2239Author: Jamey Sharp <jamey@minilop.net> 2240Date: Wed Apr 14 12:10:34 2010 -0700 2241 2242 _XError already runs async handlers; only call them directly for replies. 2243 2244 The previous behavior probably would have triggered bug reports someday. 2245 2246 Signed-off-by: Jamey Sharp <jamey@minilop.net> 2247 2248commit 405132dab64bf2375f8e57d02b1b53da2311933a 2249Author: Jamey Sharp <jamey@minilop.net> 2250Date: Tue Apr 13 12:12:36 2010 -0700 2251 2252 Extensions get to filter async errors too. 2253 2254 Apparently I misread XlibInt.c:_XReply and thought that handlers set 2255 with XESetError should be consulted only for the sequence number that 2256 _XReply is currently looking for. In fact, the error handlers are also 2257 consulted when an error arrives for a request that was not expected to 2258 have a reply. 2259 2260 However, in an odd twist, the error handlers are *not* consulted outside 2261 of _XReply--that is, when looking for events, or waiting to be able to 2262 flush the output queue. So this patch takes some small pains to preserve 2263 that behavior, though it seems likely to have been unintentional. 2264 2265 Fixes: https://bugs.freedesktop.org/show_bug.cgi?id=26545 2266 2267 Signed-off-by: Jamey Sharp <jamey@minilop.net> 2268 2269commit d3eab4a38f3e53ef21eb3b6fa66ead7afecf6227 2270Author: Jamey Sharp <jamey@minilop.net> 2271Date: Tue Apr 13 12:49:59 2010 -0700 2272 2273 Prefer the xcb_generic_error_t we already have over casting to xEvent. 2274 2275 Just a minor cleanup. 2276 2277 Signed-off-by: Jamey Sharp <jamey@minilop.net> 2278 2279commit 75ea8c37935ccc911557d16a303ba595b8ab106b 2280Author: Jamey Sharp <jamey@minilop.net> 2281Date: Mon Apr 12 11:30:20 2010 -0700 2282 2283 Run the user's synchandler as well as any internal synchandlers. 2284 2285 Fixes https://bugs.freedesktop.org/show_bug.cgi?id=27595 2286 2287 Signed-off-by: Jamey Sharp <jamey@minilop.net> 2288 2289commit c3f3e4a9e531d010312c97e753d6e543e607094d 2290Author: Kusanagi Kouichi <slash@ac.auone-net.jp> 2291Date: Fri Feb 12 17:16:10 2010 +0900 2292 2293 Fix manual typos. 2294 2295 Signed-off-by: Kusanagi Kouichi <slash@ac.auone-net.jp> 2296 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 2297 2298commit 75c6c5595408caba9ef8233839d77021d02f86f2 2299Author: Dirk Wallenstein <dirkwallenstein@t-online.de> 2300Date: Fri Feb 5 20:42:46 2010 +0100 2301 2302 man: Correct the XkbAllAccessXEventsMask mask name 2303 2304 This mask has probably been renamed but not been updated in the manuals. 2305 2306 Signed-off-by: Dirk Wallenstein <dirkwallenstein@t-online.de> 2307 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 2308 2309commit 9262aceaff24c954cab8c252690032bc2ec25e7d 2310Author: Dirk Wallenstein <dirkwallenstein@t-online.de> 2311Date: Fri Feb 5 20:42:45 2010 +0100 2312 2313 man: Add missing geometry component flag 2314 2315 Signed-off-by: Dirk Wallenstein <dirkwallenstein@t-online.de> 2316 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 2317 2318commit 50cf134465f6fd263f37acecac94518468ef1c6d 2319Author: Dirk Wallenstein <halsmit@t-online.de> 2320Date: Tue Feb 2 21:24:32 2010 +0100 2321 2322 man: Return value of XkbGetState is Status and not Bool 2323 2324 Signed-off-by: Dirk Wallenstein <halsmit@t-online.de> 2325 Reviewed-by: Julien Cristau <jcristau@debian.org> 2326 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 2327 2328commit 7a93ae2bb5292a97fdd27ed818bc81248b37f641 2329Author: Dirk Wallenstein <halsmit@t-online.de> 2330Date: Tue Feb 2 21:24:30 2010 +0100 2331 2332 man: Fix return value specification of XkbKeyActionEntry 2333 2334 The XkbKeyActionEntry macro expands to a pointer. 2335 2336 Signed-off-by: Dirk Wallenstein <halsmit@t-online.de> 2337 Reviewed-by: Julien Cristau <jcristau@debian.org> 2338 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 2339 2340commit e9884d4a05a5661ec343ea8a2aa0562b6419e086 2341Author: Dirk Wallenstein <halsmit@t-online.de> 2342Date: Tue Feb 2 21:24:29 2010 +0100 2343 2344 man: Redirect users from XKeycodeToKeysym to XkbKeycodeToKeysym #25732 2345 2346 XKeycodeToKeysym keeps compatibility with pre-XKB and thus only sees 2 2347 groups with 2 levels each. It wraps the index into the next group. 2348 This behavior confuses the unaware user, and therefore this will add a 2349 reference to XkbKeycodeToKeysym in the corresponding man paragraph. 2350 2351 Another bug had that issue, too. #5349 2352 2353 Signed-off-by: Dirk Wallenstein <halsmit@t-online.de> 2354 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 2355 2356commit 6474cdf97cd648afaeaa872155f3fa21cfb43f80 2357Author: Alan Coopersmith <alan.coopersmith@oracle.com> 2358Date: Thu Apr 8 19:59:55 2010 -0700 2359 2360 Fix typo in new fi_FI.UTF-8 that was reported by "make check" 2361 2362 Unrecognized pattern in Compose on line #154: 2363 <dead_diaeresis> <space> " "¨" 2364 2365 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 2366 2367commit 91bd5e7af2d3a9526aefb73dc10f417896f0e4dd 2368Author: Marko Myllynen <myllynen@redhat.com> 2369Date: Thu Apr 8 19:52:42 2010 -0700 2370 2371 Bug 27465 - Rewritten fi_FI.UTF-8 Compose file 2372 2373 I've rewritten the fi_FI.UTF-8 Compose file so that it 2374 2375 - includes en_US.UTF-8/Compose for base compose definitions (and thus gets any 2376 possible additions to en_US.UTF-8/Compose automatically included) 2377 - overrides any en_US.UTF-8/Compose definitions with fi_FI.UTF-8/Compose 2378 definitions (thus making it safe to include en_US.UTF-8/Compose) 2379 - lists all the definitions specified in the SFS 5966 standard (thus making it 2380 easy to verify that the implementation is valid and complete) 2381 - adds a header about the file itself as required by the standard 2382 2383 The rewritten version is ~320 lines compared to over 5000 lines of the previous 2384 version. 2385 2386 https://bugs.freedesktop.org/show_bug.cgi?id=27465 2387 2388commit f6a4fd0c7615684d08e848245849dea4017a5214 2389Author: Gaetan Nadon <memsize@videotron.ca> 2390Date: Thu Apr 1 21:46:12 2010 -0400 2391 2392 config: update and relocate AC_DEFINE_DIR macro 2393 2394 Remove deprecated acinclude.m4 macro container file 2395 Use separate macro files as per autoconf recommendation 2396 Use the latest macro from GNU (ax) which replaces 2397 the non-gnu version (ac) 2398 This preserves the Autoconf macro AC namespace. 2399 2400 Also moved out of acinclude.m4 is the DOLT macro 2401 2402 Signed-off-by: Gaetan Nadon <memsize@videotron.ca> 2403 2404commit 61d5231db418cec51bd718633c3bba39b18689d6 2405Author: Gaetan Nadon <memsize@videotron.ca> 2406Date: Mon Mar 29 14:53:48 2010 -0400 2407 2408 config: remove the pkgconfig pc.in file from EXTRA_DIST 2409 2410 Automake always includes it in the tarball. 2411 2412 Signed-off-by: Gaetan Nadon <memsize@videotron.ca> 2413 2414commit 69fc76a0321c6b25cc4286173c53435c69ab8e0e 2415Author: Fernando Carrijo <fcarrijo@yahoo.com.br> 2416Date: Wed Mar 17 23:53:16 2010 -0300 2417 2418 No need for req->firstKeyCode to be set twice. 2419 2420 There is no reason to set req->firstKeyCode twice when a client, wishful 2421 for changing keyboard mappings, calls XChangeKeyboardMapping. This patch 2422 fixes the mistake by making no functional changes to libX11 whatsoever. 2423 2424 Signed-off-by: Fernando Carrijo <fcarrijo@yahoo.com.br> 2425 Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net> 2426 2427commit b5797597f83ee62228abfb88f026ef92163e07a5 2428Author: Gaetan Nadon <memsize@videotron.ca> 2429Date: Tue Feb 16 10:37:21 2010 -0500 2430 2431 config: move CWARNFLAGS from configure.ac to Makefile.am 2432 2433 Compiler warning flags should be explicitly set in the makefile 2434 rather than being merged with other packages compiler flags. 2435 2436 Reviewed-by: Dan Nicholson <dbn.lists@gmail.com> 2437 Signed-off-by: Gaetan Nadon <memsize@videotron.ca> 2438 2439commit 052c4d7995b0e52a038933beb85cd544571c6b7e 2440Author: Gaetan Nadon <memsize@videotron.ca> 2441Date: Tue Feb 16 14:28:21 2010 -0500 2442 2443 specs: change install cmd due to automake 1.11 2444 2445 specData_INSTALL is defined in 1.9 and 1.10 but not 1.11 2446 2447 Signed-off-by: Gaetan Nadon <memsize@videotron.ca> 2448 2449commit 7277a18cda9f5a6807d11cf4ceb9449b1c302c18 2450Author: Gaetan Nadon <memsize@videotron.ca> 2451Date: Tue Feb 9 17:27:08 2010 -0500 2452 2453 doc: use $(mkdir_p) rather than $(MKDIR_P) due to automake 1.9.6 2454 2455 $(MKDIR_P) is not defined in automake 1.9. 2456 2457 Signed-off-by: Gaetan Nadon <memsize@videotron.ca> 2458 2459commit e66eda95b520727969d721416d4ea49b54ef2b03 2460Author: Gaetan Nadon <memsize@videotron.ca> 2461Date: Tue Feb 2 16:29:26 2010 -0500 2462 2463 specs: install html images in $docdir with html files 2464 2465 The images required by the html files have been omitted. 2466 2467 Signed-off-by: Gaetan Nadon <memsize@videotron.ca> 2468 2469commit 137d1ff6be99d040e77c8c4c52029c5bdf1f4808 2470Author: Gaetan Nadon <memsize@videotron.ca> 2471Date: Sun Jan 31 14:16:20 2010 -0500 2472 2473 doc: use new macros to control doc generation 2474 2475 Namely XORG_WITH_GROFF for the groff generation tool 2476 XORG_WITH_PS2PDF for the conversion of PS docs to PDF 2477 XORG_ENABLE_SPECS for the generation of specs 2478 2479 Signed-off-by: Gaetan Nadon <memsize@videotron.ca> 2480 2481commit 9ca583c5d6fcf9cd8151ee7b019630b141d32fab 2482Author: Gaetan Nadon <memsize@videotron.ca> 2483Date: Tue Jan 26 19:41:08 2010 -0500 2484 2485 doc: clean-up generated html images 2486 2487 Generate images in /images as is the convention 2488 Provide a base file name for images rather than process ID 2489 Remove images directory when running make clean 2490 2491 Signed-off-by: Gaetan Nadon <memsize@videotron.ca> 2492 2493commit eb289b34bfc9978eef724e0f268975938334c06c 2494Author: Kristian Høgsberg <krh@bitplanet.net> 2495Date: Thu Jan 21 13:39:17 2010 -0500 2496 2497 XErrorDB: Add new DRI2 request names 2498 2499commit 6babf2123d05adb9349394c49cc2d81d1f66cf9e 2500Author: Julien Cristau <jcristau@debian.org> 2501Date: Sat Jan 16 22:47:03 2010 +0000 2502 2503 man: Fix typo in Makefile 2504 2505 Missing line continuation was preventing the XCompose alias from being 2506 generated. 2507 2508 Signed-off-by: Julien Cristau <jcristau@debian.org> 2509 Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com> 2510 2511commit 68530599e61cf9fef3fcc91650e7cef21837fce7 2512Author: Alan Coopersmith <alan.coopersmith@sun.com> 2513Date: Sat Jan 16 11:41:32 2010 -0800 2514 2515 libX11 1.3.3 2516 2517 Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com> 2518 2519commit 1e5af224b9fbdb154620f898558704f2bc4bf4e9 2520Author: Alan Coopersmith <alan.coopersmith@sun.com> 2521Date: Thu Jan 14 18:33:39 2010 -0800 2522 2523 Update COPYING file with actual licenses from libX11 code & docs 2524 2525 COPYING was previously a years out-of-date copy of the LICENSES 2526 doc summarizing all licenses for all XFree86 components, many of 2527 which did not apply to libX11. 2528 2529 Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com> 2530 2531commit ddb1786720d6136b1b28be599c75c10ad1b76a2a 2532Author: Alan Coopersmith <alan.coopersmith@sun.com> 2533Date: Thu Jan 14 17:38:26 2010 -0800 2534 2535 Purge CVS/RCS id tags 2536 2537 Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com> 2538 2539commit c1db9ddcfa7091f173478dca45bf720badedfca4 2540Author: Alan Coopersmith <alan.coopersmith@sun.com> 2541Date: Thu Jan 14 15:39:14 2010 -0800 2542 2543 Update Sun license notices to current X.Org standard form 2544 2545 Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com> 2546 2547commit 1aaa7c0358c5c035b99625f5715cb722bc2d2a2f 2548Author: Alan Coopersmith <alan.coopersmith@sun.com> 2549Date: Thu Jan 14 08:28:22 2010 -0800 2550 2551 Add %S substitutions to Compose man page 2552 2553 Commit 9df349a7894725f9469b106af645f57f7f3f9af3 added support for %S 2554 in Compose file include statements - this documents it in the Compose 2555 file man page. 2556 2557 Also changes the existing substitution documentation to list format 2558 instead of a paragraph format to allow easier adding of %S. 2559 2560 Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com> 2561 2562commit 94b45db93058cffa25598fe27dd3e385ace9d305 2563Author: Richard Purdie <rpurdie@linux.intel.com> 2564Date: Thu Jan 14 08:04:28 2010 -0800 2565 2566 Fix configure.ac PKG_ macro calls 2567 2568 If the first call to PKG_CHECK_MODULES() may not be called during execution 2569 which is the case here since its inside a case statement, call 2570 PKG_PROG_PKG_CONFIG() to ensure things worked correctly. 2571 2572 Fixes a configure failure introduced by commit 2573 87529c039050ce3336ff9ce00f1b5a21d15690da when xcb is enabled. 2574 2575 http://bugs.freedesktop.org/show_bug.cgi?id=26041 2576 2577 Signed-off-by: Richard Purdie <rpurdie@linux.intel.com> 2578 Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com> 2579 2580commit df559d8bc2238a2c369152fcb06e5b5ab132a5dc 2581Author: Alan Coopersmith <alan.coopersmith@sun.com> 2582Date: Tue Jan 12 09:18:15 2010 -0800 2583 2584 Raise xorg-macros requirement to 1.4 2585 2586 Needed since the changes in 464390f16d7ed4aa5bf80f89863ba92273075ec2 2587 depend on the INSTALL file delivered in xorg-macros 1.4 2588 2589 Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com> 2590 2591commit 9df349a7894725f9469b106af645f57f7f3f9af3 2592Author: James Cloos <cloos@jhcloos.com> 2593Date: Wed Jan 13 11:04:38 2010 -0500 2594 2595 Allow inclusion of system level compose files. 2596 2597 With the release of XFree86 4.4 an inclusion system of compose files was 2598 added to Xlib to allow inclusion of the default compose file (with %L), 2599 any compose files from user’s home directory (with %H), or a compose 2600 file with a hard coded path¹. However, even today including system level 2601 compose files is not possible in a platform independent manner although 2602 the machinery for including compose files and overriding previously 2603 defined compositions is already in place. 2604 2605 With the ability to include system level compose files one could greatly 2606 reduce the need for compose file rule duplication and the work needed to 2607 propagate changes in one compose file to others. For example, currently 2608 the Finnish compose file fi_FI.UTF-8 weights over 5000 lines² but it 2609 is almost identical with en_US.UTF-8 except for perhaps half a dozen 2610 compositions. 2611 2612 This commit allows one to include system level compose files with the 2613 following kind of syntax: 2614 2615 include "%S/en_US.UTF-8/Compose" 2616 2617 1] http://www.xfree86.org/4.4.0/RELNOTES5.html#42 2618 2] http://cgit.freedesktop.org/xorg/lib/libX11/tree/nls/fi_FI.UTF-8/Compose.pre 2619 2620 Signed-off-by: Marko Myllynen <myllynen@redhat.com> 2621 Signed-off-by: James Cloos <cloos@jhcloos.com> 2622 2623commit ccf21a8877f40136e25f2f62d0668b0c76b3cfbd 2624Author: Thien-Thi Nguyen <ttn@gnuvola.org> 2625Date: Tue Dec 1 10:31:47 2009 +0100 2626 2627 libX11: Fix comment: Invert polarity (direction) of reformat description. 2628 2629 Signed-off-by: Thien-Thi Nguyen <ttn@gnuvola.org> 2630 Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com> 2631 2632commit 4d4676c0d6324d2ff9d00d15ab485fa5d848a369 2633Author: Osamu Sayama <osamu.sayama@sun.com> 2634Date: Tue Jan 5 17:26:40 2010 -0800 2635 2636 set_fontset_extents crash after get_rotate_fontname fix in 2bef065b70f7 2637 2638 - In set_fontset_extents, check font_data is not NULL before running 2639 loop that may increment it to a non-NULL invalid pointer. 2640 - Make sure get_rotate_fontname counts the final field 2641 2642 Fixes OpenSolaris bug 6913809: X application dumps core in ja_JP.UTF-8 locale 2643 <http://bugs.opensolaris.org/bugdatabase/view_bug.do?bug_id=6913809> 2644 2645 Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com> 2646 Reviewed-by: Adam Jackson <ajax@redhat.com> 2647 2648commit 87529c039050ce3336ff9ce00f1b5a21d15690da 2649Author: Alan Coopersmith <alan.coopersmith@sun.com> 2650Date: Tue Jan 5 18:02:37 2010 -0800 2651 2652 Merge X11, XKBPROTO, & XPROTO pkg-config lists 2653 2654 Since the XPROTO_CFLAGS & XKBPROTO_CFLAGS are just merged into X11_CFLAGS 2655 in configure.ac anyway, might as well combine the lists passed to 2656 PKG_CHECK_MODULES to reduce duplication in the flags. 2657 2658 Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com> 2659 Reviewed-by: Rémi Cardona <remi@gentoo.org> 2660 Acked-by: Peter Hutterer <peter.hutterer@who-t.net> 2661 2662commit 2dd053667b44c55e2bf601aec7b75fc6fee1cf44 2663Author: Alan Coopersmith <alan.coopersmith@sun.com> 2664Date: Tue Jan 5 17:56:58 2010 -0800 2665 2666 Add XCompose man page shadow for Compose man page 2667 2668 Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com> 2669 2670commit 02543bba816e065c02cd36e0c9e21519a9ee9c96 2671Author: Alan Coopersmith <alan.coopersmith@sun.com> 2672Date: Tue Jan 5 17:47:44 2010 -0800 2673 2674 Add $(AM_V_GEN) to silence lint rules too 2675 2676 Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com> 2677 2678commit db7c6fdeeaef9475458498e4cf09d6b1329e9aa3 2679Author: Alan Coopersmith <alan.coopersmith@sun.com> 2680Date: Tue Jan 5 17:42:42 2010 -0800 2681 2682 Remove GCC_WARNINGS now that XORG_CWARNFLAGS sets them for us 2683 2684 Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com> 2685 2686commit 6b4e526e7ba105622f6b143e8e2639b44cb6cc19 2687Author: Gaetan Nadon <memsize@videotron.ca> 2688Date: Sun Nov 29 10:44:24 2009 -0500 2689 2690 configure.ac: restore correct order for XORG_DEFAULT_OPTIONS 2691 2692 It must be following AC_USE_SYSTEM_EXTENSION 2693 2694commit 3dbaa11d1c8705e1b309c6686f354766b651ad20 2695Author: Gaetan Nadon <memsize@videotron.ca> 2696Date: Sun Nov 29 10:01:44 2009 -0500 2697 2698 Add .gitignore in /specs for generated files 2699 2700 Being in /specs, it will apply for all 3 subdirs 2701 2702commit f45d39d37aab04742e44cd8c3c993aad7587e40c 2703Author: Gaetan Nadon <memsize@videotron.ca> 2704Date: Fri Nov 27 20:56:03 2009 -0500 2705 2706 Makefile.am: add ChangeLog and INSTALL on MAINTAINERCLEANFILES 2707 2708 Now that the INSTALL file is generated. 2709 Allows running make maintainer-clean. 2710 2711commit 464390f16d7ed4aa5bf80f89863ba92273075ec2 2712Author: Gaetan Nadon <memsize@videotron.ca> 2713Date: Wed Oct 28 14:09:10 2009 -0400 2714 2715 INSTALL, NEWS, README or AUTHORS files are missing/incorrect #24206 2716 2717 Add missing INSTALL file. Use standard GNU file on building tarball 2718 README may have been updated 2719 Remove AUTHORS file as it is empty and no content available yet. 2720 Remove NEWS file as it is empty and no content available yet. 2721 2722commit 6360e7f0ce6a75da2bed33ede7fea783a1fb80e1 2723Author: Gaetan Nadon <memsize@videotron.ca> 2724Date: Tue Oct 27 15:07:25 2009 -0400 2725 2726 Deploy the new XORG_DEFAULT_OPTIONS #24242 2727 2728 This macro aggregate a number of existing macros that sets commmon 2729 X.Org components configuration options. It shields the configuration file from 2730 future changes. 2731 2732commit d02f943c98fde2f14319bc57fd9ad77eb9a2a572 2733Author: Gaetan Nadon <memsize@videotron.ca> 2734Date: Mon Oct 26 22:08:42 2009 -0400 2735 2736 Makefile.am: ChangeLog not required: EXTRA_DIST or *CLEANFILES #24432 2737 2738 ChangeLog filename is known to Automake and requires no further 2739 coding in the makefile. 2740 2741commit f77c89c751a6a63c8ef11ecdddca2aed11ff6e29 2742Author: Gaetan Nadon <memsize@videotron.ca> 2743Date: Thu Oct 22 12:34:19 2009 -0400 2744 2745 .gitignore: use common defaults with custom section # 24239 2746 2747 Using common defaults will reduce errors and maintenance. 2748 Only the very small or inexistent custom section need periodic maintenance 2749 when the structure of the component changes. Do not edit defaults. 2750 2751commit 46c7b0e9d0d85cf5ccc0d40d19821fcc3335503b 2752Author: Alan Coopersmith <alan.coopersmith@sun.com> 2753Date: Thu Nov 12 23:05:40 2009 -0800 2754 2755 Add compose-check.pl to EXTRA_DIST 2756 2757 Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com> 2758 2759commit 54c64267cc8bc98641cc39a22cb7bd71673e89e0 2760Author: Julien Cristau <jcristau@debian.org> 2761Date: Thu Oct 29 17:17:24 2009 +0100 2762 2763 man: fix XCopyGC argument order 2764 2765 Ubuntu bug#408337 2766 2767commit aad10032651cdc2a53b359035954454a28d6db67 2768Author: Alan Coopersmith <alan.coopersmith@sun.com> 2769Date: Fri Oct 23 13:55:14 2009 -0700 2770 2771 libX11 1.3.2 2772 2773 Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com> 2774 2775commit 6303ada89cb228c0f9656036f798703afb42fc29 2776Author: Peter Hutterer <peter.hutterer@who-t.net> 2777Date: Wed Oct 21 12:42:07 2009 +1000 2778 2779 Add smiley faces to compose sequences. 2780 2781 I wonder how we could have lasted that long without them. 2782 2783 Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net> 2784 Acked-by: Daniel Stone <daniel@fooishbar.org> 2785 Acked-By: James Cloos <cloos@jhcloos.com> 2786 2787commit 0e104ebd8628803c27e36b16922ad1edd891325a 2788Author: Alan Coopersmith <alan.coopersmith@sun.com> 2789Date: Thu Oct 22 23:12:30 2009 -0700 2790 2791 Add man page for Compose file format 2792 2793 Based on grammar description in modules/im/ximcp/imLcPrs.c and 2794 note on XFree86 changes formerly found in xorg-docs RELNOTES.sgml 2795 2796 Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com> 2797 2798commit 9c95f2af7c442b3a59b1a30cf804f1ef4e7fc5b5 2799Author: Jeremy Huddleston <jeremyhu@freedesktop.org> 2800Date: Tue Oct 20 12:46:03 2009 -0700 2801 2802 Add extra configuration and sanity checks for groff and ps2pdf 2803 2804 1) Add AC_ARG_VAR for GROFF and PS2PDF to inform users of these 2805 environment variables. 2806 2) Check that groff -ms works 2807 2808 Some distributions ship the ms macros as a separate package which may 2809 not be installed together with groff, so we need to make sure that groff 2810 works and the required macros are actually installed before attempting 2811 to build the specs. 2812 2813 Signed-off-by: Jeremy Huddleston <jeremyhu@freedesktop.org> 2814 Signed-off-by: Dan Nicholson <dbn.lists@gmail.com> 2815 Signed-off-by: Yaakov Selkowitz <yselkowitz@users.sourceforge.net> 2816 2817commit d3f801fd2f9198eaad6797414dba652f9c006c6d 2818Author: Yaakov Selkowitz <yselkowitz@users.sourceforge.net> 2819Date: Sun Oct 18 17:34:53 2009 -0500 2820 2821 Fix VPATH build of libX11 specs 2822 2823 Signed-off-by: Yaakov Selkowitz <yselkowitz@users.sourceforge.net> 2824 2825commit ad15e1a89d30ccc11d80745897b83def1448e8c0 2826Author: Alan Coopersmith <alan.coopersmith@sun.com> 2827Date: Sat Oct 17 16:14:34 2009 -0700 2828 2829 libX11 1.3.1 2830 2831 Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com> 2832 2833commit 0cbf98c17a7484bb58b2464b98d63bb3b4ea2594 2834Author: Alan Coopersmith <alan.coopersmith@sun.com> 2835Date: Sat Oct 17 16:28:25 2009 -0700 2836 2837 Fix make distcheck 2838 2839 Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com> 2840 2841commit 082e62ad268ef16a3bebc5a3c9fa008dbdc483ed 2842Author: Alan Coopersmith <alan.coopersmith@sun.com> 2843Date: Fri Oct 16 19:25:35 2009 -0700 2844 2845 Use $(AM_V_GEN) to silence echo commands for generating shadow man pages 2846 2847 Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com> 2848 2849commit 4e66da0783b2e5e3b288aaecd3c89396ed425c20 2850Author: Alan Coopersmith <alan.coopersmith@sun.com> 2851Date: Wed Oct 14 16:18:24 2009 -0700 2852 2853 Move libX11 & XIM/locale specs from xorg-docs 2854 2855 If groff is found, and --disable-specs is not passed to configure, 2856 specs will be converted to text, html and ps (or pdf if ps2pdf is 2857 found) and installed to $(docdir) 2858 2859 Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com> 2860 2861commit 5d3d817a42ddcc8d0c6efd33efd1442fe14f5c6b 2862Author: Yaakov Selkowitz <yselkowitz@users.sourceforge.net> 2863Date: Tue Oct 13 19:15:51 2009 -0500 2864 2865 Provide _Xsetlocale compat wrappers on Cygwin 2866 2867 Previous versions of Cygwin did not have proper locale support, so Cygwin/X 2868 defined X_LOCALE, using _Xsetlocale instead. Cygwin 1.7 has added locale 2869 support, but we can't remove the _Xsetlocale entry point without breaking 2870 ABI. 2871 2872 Signed-off-by: Yaakov Selkowitz <yselkowitz@users.sourceforge.net> 2873 2874commit 2c8b3a877a713bb66a6316a7051b43c46af6e1a0 2875Author: Yaakov Selkowitz <yselkowitz@users.sourceforge.net> 2876Date: Tue Oct 13 19:15:49 2009 -0500 2877 2878 dolt: add Cygwin to supported platforms 2879 2880 Signed-off-by: Yaakov Selkowitz <yselkowitz@users.sourceforge.net> 2881 2882commit a2c8e3e34b15b57ff881a52101fc961a602f35e4 2883Author: Alan Coopersmith <alan.coopersmith@sun.com> 2884Date: Wed Oct 14 13:23:30 2009 -0700 2885 2886 Recognize XSUNBUFFERSIZE alias for XLIBBUFFERSIZE on Solaris 2887 2888 Also fix indenting of the XLIBBUFFERSIZE code to match surrounding code 2889 2890 Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com> 2891 2892commit 34ddfca7b7d58240b0fe74bec6b2e0652d15c051 2893Author: Jon TURNEY <jon.turney@dronecode.org.uk> 2894Date: Tue Feb 10 17:47:25 2009 +0000 2895 2896 Include sys/select.h for select() and struct timeval, if it exists 2897 2898 This is a cygwin build fix 2899 2900commit 383165916ddac91740d4c780174d4c0d07cdb994 2901Author: Xake <xake@rymdraket.net> 2902Date: Sun Sep 27 11:16:36 2009 +0200 2903 2904 Use AM_V_GEN instead of customized macros for AM_SILENT_RULES 2905 2906 Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com> 2907 2908commit 854269d55cdda8caf425515bfed2855e211a5ada 2909Author: Julien Cristau <jcristau@debian.org> 2910Date: Tue Oct 6 16:11:24 2009 +0200 2911 2912 configure: quote argument to m4_pattern_forbid 2913 2914 Without this, configure spits out 2915 ../configure: line 12364: ac_fn_c_check_member: command not found 2916 ../configure: line 12378: ac_fn_c_check_type: command not found 2917 2918 Also anchor the pattern to make it stricter. 2919 2920 Signed-off-by: Julien Cristau <jcristau@debian.org> 2921 2922commit 3bb020587ce74e0737ec7aceb20041f1e77d3b87 2923Author: Jeremy Huddleston <jeremyhu@freedesktop.org> 2924Date: Thu Oct 1 22:20:38 2009 -0700 2925 2926 Split CFLAGS into CPPFLAGS and CFLAGS 2927 2928 On some build systems, CPPFLAGS is set to "-I/some/prefix/include". If older 2929 X11 headers are in /some/prefix/include, they will be preferred over the 2930 shipped headers. This corrects that problem. 2931 2932commit d54caf1c9c55af8247621b7ba6afb20b23699839 2933Author: Peter Hutterer <peter.hutterer@who-t.net> 2934Date: Fri Oct 2 10:59:08 2009 +1000 2935 2936 libX11 1.3 2937 2938 Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net> 2939 2940commit dd201bcf9e7f8863b7ef32273a5ef021678133c1 2941Author: Peter Hutterer <peter.hutterer@who-t.net> 2942Date: Fri Oct 2 12:10:29 2009 +1000 2943 2944 nls: remove duplicate Compose sequences from pt_BR.UTF-8 2945 2946 Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net> 2947 2948commit a293ae9e83739067fc92db1a39c262857bc2283e 2949Author: Peter Hutterer <peter.hutterer@who-t.net> 2950Date: Fri Sep 25 11:19:41 2009 +1000 2951 2952 Add XF86TouchpadToggle to XKeysymDB 2953 2954 Lenovo laptops provide a key to enable or disable the touchpad and the 2955 trackstick. This key is usually located on Fn + F8. 2956 2957 Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net> 2958 Acked-by: Adam Jackson <ajax@redhat.com> 2959 2960commit 69839f8903a24eab08f17a781b3797fb64dce9cf 2961Author: Alan Coopersmith <alan.coopersmith@sun.com> 2962Date: Sun Sep 27 10:34:16 2009 -0700 2963 2964 Bug 24173: libX11 from git fails to build with automake older then 1.11 2965 2966 AM_CONDITIONAL must come *before* the AC_OUTPUT that creates the 2967 Makefiles, instead of after. 2968 <http://bugs.freedesktop.org/show_bug.cgi?id=24173> 2969 2970 Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com> 2971 2972commit f5effd041f58ef07703cca2b4f396758811e1eec 2973Author: Alan Coopersmith <alan.coopersmith@sun.com> 2974Date: Wed Apr 15 10:59:23 2009 -0700 2975 2976 Resolve conflicting Compose sequences in iso8859-2, el_GR.UTF-8 & pt_BR.UTF-8 2977 2978 Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com> 2979 2980commit 3843778358d3a0cd6a2d07dba5dd061248053ac9 2981Author: Alan Coopersmith <alan.coopersmith@sun.com> 2982Date: Wed Apr 15 10:56:09 2009 -0700 2983 2984 Add perl script to check for duplicate or conflicting compose file entries 2985 2986 Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com> 2987 2988commit 19cc5e1fa17a285045662820a8b4de2a0f9a194d 2989Author: Alan Coopersmith <alan.coopersmith@sun.com> 2990Date: Fri Sep 18 17:10:04 2009 -0700 2991 2992 Use make rules instead of shell for loops to generate shadow man pages 2993 2994 Allows parallel make and simpler build logs/error reporting 2995 2996 Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com> 2997 2998commit 7dabcac973d0b6692a3cd62bd6d8e0467b24200b 2999Author: Alan Coopersmith <alan.coopersmith@sun.com> 3000Date: Fri Sep 18 16:58:53 2009 -0700 3001 3002 Add AM_SILENT_RULES support for cpp rules for man & nls files 3003 3004 Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com> 3005 3006commit bfa19cddd8546b4930a773f3bbd81137c362d82b 3007Author: Alan Coopersmith <alan.coopersmith@sun.com> 3008Date: Fri Sep 18 16:58:16 2009 -0700 3009 3010 Update to using xorg-macros 1.3 & XORG_DEFAULT_OPTIONS 3011 3012 Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com> 3013 3014commit 51396066c8003a96a6399c9a4bed2a81e512b582 3015Author: Mikko Niskanen <mikko.niskanen@iki.fi> 3016Date: Fri Sep 4 10:11:15 2009 +1000 3017 3018 Fix wrong typedef on HP-UX (#18998) 3019 3020 shl_dt doesn't exist, the type is shl_t. 3021 3022 X.Org Bug 18998 <http://bugs.freedesktop.org/show_bug.cgi?id=18998> 3023 3024 Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net> 3025 3026commit 615220a312b9430a580fe6dcf51703c6ef244f66 3027Author: Paul Bender <pebender@gmail.com> 3028Date: Fri Sep 4 09:57:10 2009 +1000 3029 3030 Don't require xdmcp in configure.ac (#22583) 3031 3032 X.Org Bug 22583 <http://bugs.freedesktop.org/show_bug.cgi?id=22583> 3033 3034 Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net> 3035 3036commit 20f9ecd86ad2a9ac6966f7eee32234cb5ef77c29 3037Author: Peter Hutterer <peter.hutterer@who-t.net> 3038Date: Thu Sep 3 14:02:44 2009 +1000 3039 3040 man: fix parameters to XkbAllocGeomOverlay{Rows|Keys} (#23499) 3041 3042 X.Org Bug 23499 <http://bugs.freedesktop.org/show_bug.cgi?id=23499> 3043 3044 Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net> 3045 3046commit c2814a614dc4d9409bfa0f44c18bfd69ad7f7b85 3047Author: Peter Hutterer <peter.hutterer@who-t.net> 3048Date: Thu Sep 3 12:05:25 2009 +1000 3049 3050 man: XQueryTree may return BadWindow. (#23416) 3051 3052 X.Org Bug 23416 <http://bugs.freedesktop.org/show_bug.cgi?id=XXX> 3053 3054 Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net> 3055 3056commit dbe98d456ccc6eeca9fa3e241a3db0a4d83c5a65 3057Author: Alan Coopersmith <alan.coopersmith@sun.com> 3058Date: Fri Aug 28 23:07:58 2009 +0800 3059 3060 Fix version tag in .TH line of several XKB man pages 3061 3062 Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com> 3063 3064commit bf24400936c10af6f5aa0c75cfe2207ab9b680b4 3065Author: Alan Coopersmith <alan.coopersmith@sun.com> 3066Date: Fri Aug 28 23:04:38 2009 +0800 3067 3068 XkbSetDeviceButtonActions.man: remove non-existent actions argument 3069 3070 Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com> 3071 3072commit 53affa9335116f2d367f041e6502a411d4619e47 3073Author: Alan Coopersmith <alan.coopersmith@sun.com> 3074Date: Fri Aug 28 23:00:17 2009 +0800 3075 3076 XkbQueryExtension.man: Arguments should be pointers 3077 3078 Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com> 3079 3080commit 6233948885acc5873a5abddfff235afec555f3c2 3081Author: Alan Coopersmith <alan.coopersmith@sun.com> 3082Date: Fri Aug 28 22:53:03 2009 +0800 3083 3084 XkbSAActionSetCtrls.man: Fix typo in formatting macro 3085 3086 Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com> 3087 3088commit 28a9ca57cdec4aa9ca92322f963b01f0c2daf47a 3089Author: Alan Coopersmith <alan.coopersmith@sun.com> 3090Date: Fri Aug 28 22:49:31 2009 +0800 3091 3092 Convert Xkb API man pages to ANSI prototypes 3093 3094 Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com> 3095 3096commit fa2eecca85baab9616f7143cc1a853a594b4a90c 3097Author: James Cloos <cloos@jhcloos.com> 3098Date: Mon Aug 24 06:35:17 2009 -0400 3099 3100 Add some (Serbian) Cyrillic NFD sequences. 3101 3102 A number of characters in use in the various countries which use the 3103 Cyrillic script do not appear as pre-composed characters in The UCS 3104 or Unicode; they are only available as combining-character sequences. 3105 3106 This commit adds support for using (prefix) dead keys and Multi_key- 3107 initiated sequences to enter a number of these combining-character 3108 sequences. This ensures that users can enter these scripts even 3109 when using the current Cyrillic keymaps, which lack support for 3110 the combining characters. 3111 3112 Please see the discussions on the xkb mailing list. 3113 3114 Signed-off-by: James Cloos <cloos@jhcloos.com> 3115 3116commit d1bdc909f9246119696c8b0d9afb7bd8afb71b60 3117Author: Julien Cristau <jcristau@debian.org> 3118Date: Wed Aug 5 18:14:23 2009 +0200 3119 3120 man/xkb: delete spurious newline in .TH headers 3121 3122commit ee723b83b24682db833a2f0abd96cd319b8a62af 3123Author: Julien Cristau <jcristau@debian.org> 3124Date: Wed Aug 5 16:45:19 2009 +0200 3125 3126 man: use __libmansuffix__ instead of 3X11 for references to other pages 3127 3128commit 595e204feb82c798a92eea41fea03be6476ac181 3129Author: Julien Cristau <jcristau@debian.org> 3130Date: Wed Aug 5 16:43:36 2009 +0200 3131 3132 man/xkb: use __libmansuffix__ instead of hardcoding 3Xkb for manpage sections 3133 3134commit 9da7e230d5320e1556ad2084fcd06ee7994385ea 3135Author: Peter Hutterer <peter.hutterer@who-t.net> 3136Date: Wed Aug 5 14:15:02 2009 +1000 3137 3138 Bump to 1.2.99.901 (1.3 RC1) 3139 3140 Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net> 3141 3142commit 8f78c7b4e3570cd46c5a220982963c17fe2157b8 3143Author: Filippo Giunchedi <filippo@debian.org> 3144Date: Sat Jun 6 16:56:54 2009 +0200 3145 3146 nls: add {left,right}wards arrow to compose table 3147 3148 Debian bug#532117 <http://bugs.debian.org/532117> 3149 3150 Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net> 3151 3152commit 7949bfa00390241d994f32463e50d4bd78920568 3153Author: Julien Cristau <jcristau@debian.org> 3154Date: Fri Jul 31 13:33:52 2009 +0200 3155 3156 Update library version for new symbols 3157 3158 Commit 554f755e5545f63d3c8f299297927238da155773 added generic event 3159 cookie handling. Bump libX11 version number accordingly. 3160 3161 Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net> 3162 3163commit 640fec5f4feacd01a00eea3dcd4edb220907d3dc 3164Author: Julien Cristau <jcristau@debian.org> 3165Date: Sun Aug 2 17:18:31 2009 +0200 3166 3167 Add _XFUNCPROTOBEGIN/END to Xlib-xcb.h 3168 3169 X.Org bug#22252 <https://bugs.freedesktop.org/show_bug.cgi?id=22252> 3170 3171 Reported-by: Riku Salminen <rsalmin2@cc.hut.fi> 3172 Signed-off-by: Julien Cristau <jcristau@debian.org> 3173 3174commit bc06d49e9dac1836d6824769ddb2ac5ba9f14df7 3175Author: Peter Hutterer <peter.hutterer@who-t.net> 3176Date: Wed Jul 29 08:44:09 2009 +1000 3177 3178 Fix compiler warning 'unused variable qelt' 3179 3180 Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net> 3181 3182commit 03f4907e14f5755e72309f08742977b871e81e33 3183Author: Peter Hutterer <peter.hutterer@who-t.net> 3184Date: Wed Jul 29 08:34:57 2009 +1000 3185 3186 Add utlist.h to the Makefile.am 3187 3188 utlist.h contains the linked list macros, it was added with the recent 3189 addition of event cookies but utlist.h wasn't added to the Makefile.am. As a 3190 result, make dist failed. 3191 3192 Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net> 3193 3194commit 554f755e5545f63d3c8f299297927238da155773 3195Author: Peter Hutterer <peter.hutterer@who-t.net> 3196Date: Fri Jun 26 11:27:43 2009 +1000 3197 3198 Add generic event cookie handling to libX11. 3199 3200 Generic events require more bytes than Xlib provides in the standard XEvent. 3201 Memory allocated by the extension and stored as pointers inside the event is 3202 prone to leak by simple 'while (1) { XNextEvent(...); }' loops. 3203 3204 This patch adds cookie handling for generic events. Extensions may register 3205 a cookie handler in addition to the normal event vectors. If an extension 3206 has registered a cookie handler, _all_ generic events for this extensions 3207 must be handled through cookies. Otherwise, the default event handler is 3208 used. 3209 3210 The cookie handler must return an XGenericEventCookie with a pointer to the 3211 data.The rest of the event (type, serialNumber, etc.) are to be filled as 3212 normal. When a client retrieves such a cookie event, the data is stored in 3213 an internal queue (the 'cookiejar'). This data is freed on the next call to 3214 XNextEvent(). 3215 3216 New extension interfaces: 3217 XESetWireToEventCookie(display, extension_number, cookie_handler) 3218 3219 Where cookie_handler must set cookie->data. The data pointer is of arbitray 3220 size and type but must be a single memory block. This memory block 3221 represents the actual extension's event. 3222 3223 New client interfaces: 3224 XGetEventData(display, *cookie); 3225 XFreeEventData(display, *cookie); 3226 3227 If the client needs the actual event data, it must call XGetEventData() with 3228 the cookie. This returns the data pointer (and removes it from the cookie 3229 jar) and the client is then responsible for freeing the event with 3230 XFreeEventData(). It is safe to call either function with a non-cookie 3231 event. Events unclaimed or not handled by the XGetEventData() are cleaned up 3232 automatically. 3233 3234 Example client code: 3235 XEvent event; 3236 XGenericEventCookie *cookie = &ev; 3237 3238 XNextEvent(display, &event); 3239 if (XGetEventData(display, cookie)) { 3240 XIEvent *xievent = cookie->data; 3241 ... 3242 } else if (cookie->type == GenericEvent) { 3243 /* handle generic event */ 3244 } else { 3245 /* handle extension/core event */ 3246 } 3247 XFreeEventData(display, cookie); 3248 3249 Cookies are not multi-threading safe. Clients that use XGetEventData() must 3250 lock between XNextEvent and XGetEventData to avoid other threads freeing 3251 cookies. 3252 3253 Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net> 3254 3255commit d7675cb8fa7155e7aff1459636a117a97aa1bf28 3256Author: Peter Hutterer <peter.hutterer@who-t.net> 3257Date: Mon Jul 6 13:17:35 2009 +1000 3258 3259 Bump to 1.2.99.1 3260 3261 Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net> 3262 3263commit 75fe48e7a42a685d7098e8d7108b9b956c471563 3264Author: Peter Hutterer <peter.hutterer@who-t.net> 3265Date: Fri Jul 10 14:07:34 2009 +1000 3266 3267 Bump to 1.2.2 3268 3269 Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net> 3270 3271commit 5d0fe0e0e92759af5667c5dca2eacb1b6f2d66ea 3272Author: Peter Hutterer <peter.hutterer@who-t.net> 3273Date: Thu Jul 2 09:10:25 2009 +1000 3274 3275 XMaskEvent/XCheckMaskedEvents must not check for GenericEvents. 3276 3277 GenericEvent cannot be selected for in the core event masks and they must 3278 thus be treated like extension events. 3279 3280 Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net> 3281 3282commit c1bf65b89f4e361f6178a73dd5334c8f2bd95732 3283Author: Peter Hutterer <peter.hutterer@who-t.net> 3284Date: Thu Jul 2 09:06:05 2009 +1000 3285 3286 XWindowEvent/XCheckWindowEvent must not return GenericEvents. 3287 3288 GenericEvents have no fixed position for the window, so they must be treated 3289 like extension events. 3290 3291 Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net> 3292 3293commit 38f9054554d63525d2dd51aafb5eb57821158ab9 3294Author: Alan Coopersmith <alan.coopersmith@sun.com> 3295Date: Mon Jun 15 19:00:43 2009 -0700 3296 3297 Drop ancient USG SysV #ifdefs 3298 3299 Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com> 3300 3301commit 7bfe1323f16a1a69cc474659f7ac0c2570b1cf42 3302Author: Adam Jackson <ajax@redhat.com> 3303Date: Fri Jun 12 12:44:01 2009 -0400 3304 3305 Remove X_NOT_STDC_ENV usage. (#6527) 3306 3307commit 6dd74d7fb414ca1e99bae5c13e333961f396eb36 3308Author: Julien Cristau <jcristau@debian.org> 3309Date: Fri May 29 11:18:11 2009 +0200 3310 3311 nls: remove more duplicated aliases 3312 3313 Signed-off-by: Julien Cristau <jcristau@debian.org> 3314 3315commit e4b0899f516da224010e68bd2d953d5293d94993 3316Author: parag <parag@rawhideTM.pnq.redhat.com> 3317Date: Thu May 28 11:29:35 2009 +0530 3318 3319 nls: Add pa_PK locale information and make pa_IN as default for pa. 3320 3321 X.Org bug#21954 <http://bugs.freedesktop.org/show_bug.cgi?id=21954> 3322 3323 [jcristau: removed the pa_PK.UTF-8 alias to itself] 3324 3325 Signed-off-by: parag <pnemade@redhat.com> 3326 Signed-off-by: Julien Cristau <jcristau@debian.org> 3327 3328commit f0ea1f6d51145592f8617854f9320ec5dbff3299 3329Author: Julien Cristau <jcristau@debian.org> 3330Date: Fri May 29 10:58:20 2009 +0200 3331 3332 nls: remove broken sd_IN.UTF-8 alias 3333 3334 Signed-off-by: Julien Cristau <jcristau@debian.org> 3335 3336commit e29e010dabdb17d6498f2ef1786f69b8830c18ca 3337Author: Julien Cristau <jcristau@debian.org> 3338Date: Fri May 29 10:57:43 2009 +0200 3339 3340 nls: remove duplicated en_US* aliases 3341 3342 Signed-off-by: Julien Cristau <jcristau@debian.org> 3343 3344commit a89a300d87852c84389ad97db66dcb8930cb45dd 3345Author: Caolan McNamara <caolanm@redhat.com> 3346Date: Thu May 21 18:41:05 2009 +0200 3347 3348 man: missing space in XAllocColor man page 3349 3350 X.Org bug#21854 <http://bugs.freedesktop.org/show_bug.cgi?id=21854> 3351 3352commit c1c001e36504fd304f76f69bf6af3643225c49ea 3353Author: James Cloos <cloos@jhcloos.com> 3354Date: Wed May 13 13:03:54 2009 -0400 3355 3356 [nls] Replace remaining UCS Combining Characters in Compose sequences. 3357 3358 The replaces the instances of keysyms which match <U03[0-6][0-9A-Fa-f]>, 3359 where the keysym is used as a dead_key, with an actual dead_key symbol. 3360 3361 The only remaining instances of UCS combining characters in the 3362 compose sequences are of U0338 COMBINING LONG SOLIDUS OVERLAY 3363 used as a suffix in Multi_key-initiated sequences to create 3364 mathematics characters such as ∉ U+2209 NOT AN ELEMENT OF 3365 from ∈ U+2208 ELEMENT OF. 3366 3367commit e2b0bad3d3b9e9ca781fc264eb7584afbe2a1a4f 3368Author: James Cloos <cloos@jhcloos.com> 3369Date: Wed May 13 09:58:59 2009 -0400 3370 3371 [nls] Remove extraneous instances of UCS Combining Characters in Compose sequences. 3372 3373 This removes those instances of keysyms which match <U03[0-6][0-9A-Fa-f]>, 3374 where the matching keysym is used as a dead_key, and for which alternative 3375 compose sequences exist. 3376 3377commit 79f47e6dff2f0a0b673bbfecc47528edca814baa 3378Author: James Cloos <cloos@jhcloos.com> 3379Date: Fri May 8 20:11:54 2009 -0400 3380 3381 [nls] Remove combining_ keysyms from the Compose files 3382 3383 Some of the UTF-8 Compose tables included combining_ keysyms in 3384 the compose sequences as though they were dead symbols. This 3385 is contrary to how combining characters are used in the UCS. 3386 Therefore, those lines have been removed from the Compose tables. 3387 3388 There were also some combining_ keysyms as targets. As those 3389 are not included in x11proto’s keysymdef.h, and as those do 3390 exist there as Uxxxx keysyms, they are replaced with the Uxxxx 3391 keysym names. 3392 3393 This addresses http://bugzilla.freedesktop.org/show_bug.cgi?id=5107 3394 and is based on attachment 25644 by samuel.thibault@ens-lyon.org. 3395 3396 Signed-off-by: James Cloos <cloos@jhcloos.com> 3397 3398commit 4a08a3dfbda497b2be46e3e5fe6b777815ea27f9 3399Author: parag <pnemade@redhat.com> 3400Date: Tue May 5 16:50:47 2009 +0530 3401 3402 libX11: Add new Indic language information to nls directory files. #21560 3403 3404 Signed-off-by: parag <pnemade@redhat.com> 3405 3406commit aaf81096eb44b4c2812108721ba02738391884da 3407Author: Alan Coopersmith <alan.coopersmith@sun.com> 3408Date: Sat May 2 01:38:14 2009 -0700 3409 3410 Correct return type in XkbGetKeyboard man page 3411 3412 Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com> 3413 3414commit 2bef065b70f70af520b5de8fb23529254d15f003 3415Author: Christoph Pfister <christophpfister@gmail.com> 3416Date: Mon Apr 27 22:32:57 2009 -0700 3417 3418 X.Org Bug #21117: crash in get_rotate_fontname (omGeneric.c) 3419 3420 http://bugs.freedesktop.org/show_bug.cgi?id=21117 3421 3422 Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com> 3423 3424commit 5c1cde105db10df24d3c532f032cbc59050c7313 3425Author: Alan Coopersmith <alan.coopersmith@sun.com> 3426Date: Fri Apr 17 22:14:47 2009 -0700 3427 3428 Use AC_USE_SYSTEM_EXTENSIONS instead of hand-rolled check for _GNU_SOURCE 3429 3430 Raises minimum autoconf version required to 2.60 3431 3432 Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com> 3433 3434commit 84b7a91ef84f345384e4b0e13907385ca3ca3255 3435Author: Julien Cristau <jcristau@debian.org> 3436Date: Tue Apr 14 15:59:57 2009 +0100 3437 3438 Fix fi_FI.UTF-8, again 3439 3440 Commit 97fc6babd4ccaf300e25708868aa2a738893dc30 "NLS: Add UTF-8 compose 3441 file for Finnish" made fi_FI.UTF-8 use a broken empty XLC_LOCALE file. 3442 This reverts it back to using the en_US.UTF-8 one. 3443 3444commit 128daff4422f973ea40dd1e31b2db230e643549e 3445Author: Theppitak Karoonboonyanan <thep@linux.thai.net> 3446Date: Thu Apr 9 12:01:07 2009 +0700 3447 3448 Thai XIM not retrieve MB surrounding on UTF-8 LC 3449 3450 On th_TH.UTF-8 locale, Thai XIM rejects all combining characters for GTK+ apps 3451 that use X Input Method. 3452 3453 This is because GTK+ imxim immodule passes surrounding text in locale encoding, 3454 which is UTF-8 for UTF-8 locales. But current Thai XIM in Xlib assumes the 3455 multi-byte StringConversionText response for the StringConversionCallback to 3456 always be TIS-620, by retrieving a single byte and using it as-is. 3457 3458 If the Thai XIM tries to convert the multi-byte text based on locale codeset 3459 before using it, it will work again. 3460 3461 X.Org But 12759 <http://bugs.freedesktop.org/show_bug.cgi?id=12759> 3462 3463 Signed-off-by: Theppitak Karoonboonyanan <thep@linux.thai.net> 3464 Signed-off-by: Julien Cristau <jcristau@debian.org> 3465 3466commit e09f0d227fbf95b6252759af9d426efd57686f9f 3467Author: Theppitak Karoonboonyanan <thep@linux.thai.net> 3468Date: Thu Apr 9 11:47:55 2009 +0700 3469 3470 Thai XIM not filters when NumLock or CapsLock is on 3471 3472 The Thai XIM component in libx11 activated on 'th*' locales normally filters 3473 input sequence according to orthographic rules. However, when NumLock/CapsLock 3474 is on, this stops working. All sequences are passed through. 3475 3476 This is caused by missing masks in _XimThaiFilter(), which normally screens out 3477 certain special keys from entering orthographic rules. Unfortunately, this 3478 included events with NumLock/CapsLock on. Negating the masks from the check 3479 allows the events to be tested by the rules. 3480 3481 X.Org Bug 12517 <http://bugs.freedesktop.org/show_bug.cgi?id=12517> 3482 3483 Signed-off-by: Theppitak Karoonboonyanan <thep@linux.thai.net> 3484 Signed-off-by: Julien Cristau <jcristau@debian.org> 3485 3486commit d108d3c706af3502820b5202564488ea19908b77 3487Author: Theppitak Karoonboonyanan <thep@linux.thai.net> 3488Date: Thu Apr 9 11:25:25 2009 +0700 3489 3490 CharSet-to-CompoundText Conversion Failed for Thai Locales 3491 3492 SCIM fails to commit Thai input characters on Thai locales, because it commits 3493 string in compound text form, which was converted via 3494 XwcTextListToTextProperty(). But the XLC_LOCALE for th_TH and th_TH.UTF-8 3495 declares cs1's ct_encoding as TIS620-0:GR, which was commented out in 3496 src/xlibi18n/lcCT.c default_ct_data, in favor of ISO8859-11 ESC sequence. 3497 So, declaring cs1 as ISO8859-11:GR instead makes it work. 3498 3499 Besides, for th_TH.UTF-8, adding cs2 class with ISO10646-1 encoding also adds 3500 support for UTF-8 input. 3501 3502 And, along discussion in the bug, a similar problem was found for fontset, too, 3503 by causing delays on X apps startups on systems without tis620-0 fonts. This 3504 is normally the case, as mkfontdir and mkfontscale generate iso8859-11 entries 3505 by default for Thai X fonts. So, Thai fontset charset is also patched. 3506 3507 X.Org Bug 16475 <http://bugs.freedesktop.org/show_bug.cgi?id=16475> 3508 3509 Signed-off-by: Theppitak Karoonboonyanan <thep@linux.thai.net> 3510 Signed-off-by: Julien Cristau <jcristau@debian.org> 3511 3512commit fd62d3318c846cd43d66a505946e94704d7d83dc 3513Author: Alan Coopersmith <alan.coopersmith@sun.com> 3514Date: Wed Apr 8 19:42:25 2009 -0700 3515 3516 Revert "Change masculine to ordmasculine in Compose file comments" 3517 3518 This reverts commit 892b401d5acc055803a20e349ede0d64490f2230. 3519 3520 As Julien Cristau correctly points out, I misread the Compose file grammar 3521 in modules/im/ximcp/imLcPrs.c, and those are keysyms, not comments, and 3522 the keysym is named XK_masculine in keysymdef.h. This change is thus a 3523 bug in the Solaris compose tables to be fixed, not an improvement to bring 3524 upstream. 3525 3526commit eac57c77afdf44f50692225b8b0345a7c927bc84 3527Author: Alan Coopersmith <alan.coopersmith@sun.com> 3528Date: Tue Apr 7 15:38:45 2009 -0700 3529 3530 Version bump: 1.2.1 3531 3532 Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com> 3533 3534commit bfbec08baec33c5024510b0bcbbee6e4a8473e79 3535Author: Yaakov Selkowitz (Cygwin Ports maintainer) <yselkowitz@users.sourceforge.net> 3536Date: Tue Apr 7 13:46:57 2009 -0700 3537 3538 Bug 20773: Xcursor dynamic loading on Cygwin 3539 3540 X.Org Bug #20773 <http://bugs.freedesktop.org/show_bug.cgi?id=20773> 3541 Patch #24096 <http://bugs.freedesktop.org/attachment.cgi?id=24096> 3542 3543 Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com> 3544 3545commit c8c41614911be4fa222fa22478677d263b41c751 3546Author: Alan Coopersmith <alan.coopersmith@sun.com> 3547Date: Mon Apr 6 16:52:46 2009 -0700 3548 3549 Fix a several sparse warnings: Using plain integer as NULL pointer 3550 3551 Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com> 3552 3553commit b336c3d0cc2aefc8926500cff5f76b5a3e803886 3554Author: Alan Coopersmith <alan.coopersmith@sun.com> 3555Date: Mon Apr 6 16:32:05 2009 -0700 3556 3557 Further ansify prototypes & reduce #ifdefs in locking.c 3558 3559 Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com> 3560 3561commit 892b401d5acc055803a20e349ede0d64490f2230 3562Author: Alan Coopersmith <alan.coopersmith@sun.com> 3563Date: Mon Apr 6 10:50:09 2009 -0700 3564 3565 Change masculine to ordmasculine in Compose file comments 3566 3567 Matches the ordfeminine name used for the matching character, 3568 and the ordmasculine name used in many font descriptions of the glyph. 3569 3570 Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com> 3571 3572commit e3198b55dc16ec57346cc28aa8d34165ce8cde96 3573Author: Julien Cristau <jcristau@debian.org> 3574Date: Fri Mar 13 13:52:33 2009 +0100 3575 3576 Add a ru_RU.UTF-8 locale 3577 3578 Based on patch by Eugene Konev <ejka@imfi.kspu.ru> for X.Org 6.9.0. 3579 3580 Debian bug#330144 <http://bugs.debian.org/330144> 3581 X.Org bug#15887 <http://bugs.freedesktop.org/show_bug.cgi?id=15887> 3582 3583commit d239de9452691d6f875e6e5ace3d499ec3bf14d9 3584Author: Alan Coopersmith <alan.coopersmith@sun.com> 3585Date: Wed Mar 25 17:59:09 2009 -0700 3586 3587 Delete some unused "#ifdef notdef" static functions 3588 3589 Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com> 3590 3591commit 4281892e31058ef3aecc96a5767824b34d88d415 3592Author: Alan Coopersmith <alan.coopersmith@sun.com> 3593Date: Wed Mar 25 17:52:48 2009 -0700 3594 3595 Remove _XP_PRINT_SERVER_ #ifdefs from Xrm.c 3596 3597 This copy of Xrm.c is never compiled into the Xprint server any more, so 3598 this old code-sharing #ifdef from the monolith tree isn't needed. 3599 3600 Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com> 3601 3602commit 27a2e16e8ea11c1604e28645fae4d6ba4371d513 3603Author: Alan Coopersmith <alan.coopersmith@sun.com> 3604Date: Tue Mar 17 18:38:58 2009 -0700 3605 3606 makekeys: combine malloc(strlen)+strcpy into strdup 3607 3608 Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com> 3609 3610commit 78a894231ae8ec4959007b6d9b8d2a15d6333a1e 3611Author: Alan Coopersmith <alan.coopersmith@sun.com> 3612Date: Tue Mar 17 15:42:19 2009 -0700 3613 3614 When makekeys fails to find a good hash, print error instead of divide-by-zero 3615 3616 Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com> 3617 3618commit c9f84af591d15fbc3fa890bcd955d94f1ff82a0b 3619Author: Alan Coopersmith <alan.coopersmith@sun.com> 3620Date: Tue Mar 17 14:59:16 2009 -0700 3621 3622 Remove ifdef checks for macII left over from ancient A/UX 3.0 support 3623 3624 Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com> 3625 3626commit 4b90da0ffb32b791d915ecae11996cc2f2cac9a7 3627Author: Alan Coopersmith <alan.coopersmith@sun.com> 3628Date: Mon Mar 16 18:37:49 2009 -0700 3629 3630 XErrorDB additions for DRI2 requests 3631 3632 Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com> 3633 3634commit 273f45af1441be9d2135e4cac8c46ceb33470236 3635Author: Alan Coopersmith <alan.coopersmith@sun.com> 3636Date: Mon Mar 16 18:35:44 2009 -0700 3637 3638 XErrorDB additions for XInput errors and new XInput 1.5 requests 3639 3640 Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com> 3641 3642commit 90ef36f6336068183bf9d13ca972202db35b1202 3643Author: Alan Coopersmith <alan.coopersmith@sun.com> 3644Date: Mon Mar 16 18:23:05 2009 -0700 3645 3646 XErrorDB additions for RANDR 1.3 3647 3648 Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com> 3649 3650commit 124a4efaccf329f1a44f6b824e70278bdd1cad83 3651Author: Lubos Lunak <l.lunak@suse.cz> 3652Date: Mon Mar 16 18:03:36 2009 -0700 3653 3654 XErrorDB updates for XTEST, RANDR, DAMAGE extensions 3655 3656 From http://lists.freedesktop.org/archives/xorg/2008-January/031937.html 3657 3658 Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com> 3659 3660commit 80811846e37b805fddb37c71589fd5f6f6037b3f 3661Author: Lubos Lunak <l.lunak@suse.cz> 3662Date: Mon Mar 16 17:57:52 2009 -0700 3663 3664 XGetErrorText() fails for extension error codes equal to the error base 3665 3666 From http://lists.freedesktop.org/archives/xorg/2008-January/031937.html 3667 3668 Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com> 3669 3670commit da95ecbbdcacc483cd0b5fd7db1fb2e2543341bd 3671Author: Milos Komarcevic <miloskomarcevic@netscape.net> 3672Date: Mon Mar 16 17:43:26 2009 -0700 3673 3674 Bug 11456: Serbian locale updates (sr_RS and sr_ME) 3675 3676 X.Org Bug #11456 <http://bugs.freedesktop.org/show_bug.cgi?id=11456> 3677 Patch #23937 <http://bugs.freedesktop.org/attachment.cgi?id=23937> 3678 3679 Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com> 3680 3681commit 934a6c0519a9e32505beee55b004f36c2a710217 3682Author: Alan Coopersmith <alan.coopersmith@sun.com> 3683Date: Mon Mar 16 14:55:22 2009 -0700 3684 3685 Bug 10082: Compose entries for some standard mathematical operators 3686 3687 X.Org Bug #10082 <http://bugs.freedesktop.org/show_bug.cgi?id=10082> 3688 3689 Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com> 3690 3691commit abf4da1ed0f735ca7ce471dc13a0ec3677391486 3692Author: Alan Coopersmith <alan.coopersmith@sun.com> 3693Date: Mon Mar 16 14:27:46 2009 -0700 3694 3695 Bug 14651: We need to add new locale specification for Belarusian Latin locale 3696 3697 X.Org Bug #14651 <http://bugs.freedesktop.org/show_bug.cgi?id=14651> 3698 3699 Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com> 3700 3701commit 837703c8651e1321a50147a8311c56e4758ce08a 3702Author: Caolan McNamara <caolanm@redhat.com> 3703Date: Mon Mar 16 14:15:50 2009 -0700 3704 3705 Bug 20575: man page for XCreatePixmapFromBitmapData doesn't match signature 3706 3707 X.Org Bug #20575 <http://bugs.freedesktop.org/show_bug.cgi?id=20575> 3708 Patch #23717 <http://bugs.freedesktop.org/attachment.cgi?id=23717> 3709 3710 Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com> 3711 3712commit 22199018879055d8653e59d8236bef57164fac66 3713Author: Alan Coopersmith <alan.coopersmith@sun.com> 3714Date: Mon Mar 16 13:28:18 2009 -0700 3715 3716 Correct locale alias for sh_BA.ISO8859-2@bosnia (should be sr, not nr) 3717 3718 Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com> 3719 3720commit 4c63c27eab2b88f5556dbf72c36321f50f6de35e 3721Author: Alan Coopersmith <alan.coopersmith@sun.com> 3722Date: Thu Mar 12 18:57:20 2009 -0700 3723 3724 Bug 9953: Please provide locale alias hu_HU.utf8 3725 3726 X.Org Bug #9953 <http://bugs.freedesktop.org/show_bug.cgi?id=9953> 3727 Debian Bug #407573 <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=407573> 3728 3729 Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com> 3730 3731commit 501f4e0ada1690783ada05ad412e4b191ad55336 3732Author: Alan Coopersmith <alan.coopersmith@sun.com> 3733Date: Thu Mar 12 17:38:21 2009 -0700 3734 3735 Bug 6820: Xlib shouldn't handle EAGAIN as a fatal IO error 3736 3737 X.Org Bug #6820 <http://bugs.freedesktop.org/show_bug.cgi?id=6820> 3738 Patch #17637 <http://bugs.freedesktop.org/attachment.cgi?id=17637> 3739 3740 Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com> 3741 3742commit 7b9c543e7210c7da204871c31a160e79d3a949b6 3743Author: Paul Bender <pebender@gmail.com> 3744Date: Thu Mar 12 17:11:42 2009 -0700 3745 3746 Bug 15664: xau & xdmcp not needed in x11.pc dependencies when built with xcb 3747 3748 X.Org bug #15664 <https://bugs.freedesktop.org/show_bug.cgi?id=15664> 3749 Patch #16128 <https://bugs.freedesktop.org/attachment.cgi?id=16128> 3750 3751 Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com> 3752 3753commit fd2cf1ef66c2aff3dc758956c9e9e567b9892c06 3754Author: Xue Wei <Wei.Xue@Sun.COM> 3755Date: Wed Mar 4 19:32:29 2009 -0800 3756 3757 Add UTF-8 locale entries for es_US, kk_KZ, mt_MT, and sh_BA 3758 3759 Sun bug 6809309 Add new utf8 locales supported by Xlib 3760 <http://bugs.opensolaris.org/bugdatabase/view_bug.do?bug_id=6809309> 3761 3762 Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com> 3763 3764commit cb70c9bc43267577859a3674ca9de9be396ba69e 3765Author: Alan Coopersmith <alan.coopersmith@sun.com> 3766Date: Mon Feb 23 19:29:15 2009 -0800 3767 3768 Add --with-locale-lib-dir configure option to set locale lib install dir 3769 3770 Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com> 3771 3772commit ccd3584f0330db8dac90b9313c33ab8b5b2ec6af 3773Author: Alan Coopersmith <alan.coopersmith@sun.com> 3774Date: Mon Feb 23 18:33:51 2009 -0800 3775 3776 Incorporate more locale names/aliases from Solaris libX11 3777 3778 Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com> 3779 3780commit 83ce4daefdf544f801c7d666c89162690a36ce41 3781Author: Alan Coopersmith <alan.coopersmith@sun.com> 3782Date: Mon Feb 23 18:32:34 2009 -0800 3783 3784 Incorporate char range comments from Solaris version of ksc5601.h 3785 3786 Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com> 3787 3788commit ee279c84e34f1ebb8a6ff17d54ee146d11e29764 3789Author: Chris Ball <cjb@laptop.org> 3790Date: Sat Feb 21 14:48:42 2009 -0500 3791 3792 Fix fi_FI locale install directory. 3793 3794 fi_FI was setting "x11thislocaledir" to en_US, with the result that its 3795 locale data was written in that locale dir. 3796 3797 Signed-off-by: Chris Ball <cjb@laptop.org> 3798 3799commit da6bbca07c796c69172a649405474f03bee66754 3800Author: Emilio Jesús Gallego Arias <egallego@babel.ls.fi.upm.es> 3801Date: Sat Feb 21 20:17:23 2009 +0100 3802 3803 xcb_io: Avoid datatype overflow on AMD64 and friends. 3804 3805commit 4ef6491afa69e8441caee7bbebc583e6e796275e 3806Author: Chris Ball <cjb@laptop.org> 3807Date: Sat Feb 21 12:51:03 2009 -0500 3808 3809 Build fix for fi_FI. 3810 3811 Commit 642c4e928e770e0.. instructs make to enter nls/fi_FI, but no 3812 Makefile is written there by configure. 3813 3814 Signed-off-by: Chris Ball <cjb@laptop.org> 3815 3816commit 642c4e928e770e012379539a6ce09e11c02f09a6 3817Author: Julien Cristau <jcristau@debian.org> 3818Date: Sat Feb 21 03:12:05 2009 +0100 3819 3820 nls: actually use the fi_FI.UTF-8 files 3821 3822 The subdir wasn't added to nls/Makefile.am 3823 3824commit 9bad8309ef289bb943651abf6967b24fa2252aac 3825Author: Alan Coopersmith <alan.coopersmith@sun.com> 3826Date: Fri Feb 20 14:45:54 2009 -0800 3827 3828 flags member of Display structure needs to be marked volatile 3829 3830 Since the Xlib multithreaded code checks the flags variable in _XFlushInt 3831 to see if the other threads are done yet, it has to be marked volatile so 3832 the compiler doesn't optimize out re-loading it on each trip through the 3833 while loop and end up in an impossible-to-exit infinite loop of CPU chewing. 3834 3835 Part of fix for Sun bug 6409332: infinite loop in XFlushInt() on x86/32-bit 3836 <http://bugs.opensolaris.org/bugdatabase/view_bug.do?bug_id=6409332> 3837 3838 Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com> 3839 3840commit ef5c446395aa30d7b1096a112e241a81c5b358e7 3841Author: Xue Wei <Wei.Xue@Sun.COM> 3842Date: Fri Feb 20 15:12:35 2009 -0800 3843 3844 Add nn_NO.UTF-8 to compose.dir.pre for Norwegian Nynorsk 3845 3846 Sun bug 6691236: Swing applications dump core when locale is nn_NO.UTF-8 3847 <http://bugs.opensolaris.org/bugdatabase/view_bug.do?bug_id=6691236> 3848 3849 Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com> 3850 3851commit 3822f2654e9630167f0c6cae317b472c09771672 3852Author: Xue Wei <Wei.Xue@Sun.COM> 3853Date: Fri Feb 20 15:03:51 2009 -0800 3854 3855 Add locale aliases for no_NO & sh_BA locale variants 3856 3857 Fixes Sun bug id 6691219: xterm refuses to start in some locales 3858 <http://bugs.opensolaris.org/bugdatabase/view_bug.do?bug_id=6691219> 3859 3860 Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com> 3861 3862commit 63b6b5b5f522c0a606b32163c643edb64ca91d54 3863Author: Xue Wei <Wei.Xue@Sun.COM> 3864Date: Fri Feb 20 14:23:11 2009 -0800 3865 3866 Add kk_KZ.UTF-8 to locale.dir.pre for Kazakhstan 3867 3868 Fixes Sun bug id 6737254 ("kk_KZ.UTF-8 locale: In Java applications 3869 changing keyboard layout with gimlet does not work") 3870 <http://bugs.opensolaris.org/bugdatabase/view_bug.do?bug_id=6737254> 3871 3872 Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com> 3873 3874commit d497301707962f3b94542e999a36abffcfbd303d 3875Author: Julien Cristau <jcristau@debian.org> 3876Date: Tue Feb 17 16:09:41 2009 +0100 3877 3878 Bump to 1.2 3879 3880commit 990e71361d1d7b79bf07b1dc93e4e905d4f1bdaf 3881Author: Julien Cristau <jcristau@debian.org> 3882Date: Tue Feb 17 15:23:40 2009 +0100 3883 3884 Check Xmalloc return value in _XConnectXCB 3885 3886 X.Org bug#19137 <http://bugs.freedesktop.org/show_bug.cgi?id=19137> 3887 3888 Signed-off-by: Julien Cristau <jcristau@debian.org> 3889 3890commit b4b5893f69419ff577bbaa4d18f78e4ffd729a0c 3891Author: James Cloos <cloos@jhcloos.com> 3892Date: Sat Feb 14 12:35:56 2009 -0500 3893 3894 dolt: allow older versions of bash to compile the library 3895 3896 Cf xserver commit 7be6520d and bugzilla #19031. 3897 3898commit 20982d6866e24453642b0b592fa0f13a88aa747c 3899Author: Will Thompson <will@willthompson.co.uk> 3900Date: Thu Feb 5 02:53:06 2009 +1100 3901 3902 NLS: Compose: Non-aliasing CCCP 3903 3904 Oops, cccp aliased cc for question mark. Upper-case it to avoid fail. 3905 3906 Signed-off-by: Will Thompson <will@willthompson.co.uk> 3907 Signed-off-by: Daniel Stone <daniel@fooishbar.org> (sorry) 3908 3909commit f052665394f3f0319e93a98f1d5d4ea287e1dd07 3910Author: Will Thompson <will@willthompson.co.uk> 3911Date: Wed Feb 4 14:51:11 2009 +0000 3912 3913 Add two essential compose sequences 3914 3915 Signed-off-by: Will Thompson <will@willthompson.co.uk> 3916 Signed-off-by: Daniel Stone <daniel@fooishbar.org> 3917 3918commit d7bea6fa909bf34c43efe0ca8239ab0f9f3a415f 3919Author: Alan Coopersmith <alan.coopersmith@sun.com> 3920Date: Mon Feb 2 20:34:31 2009 -0800 3921 3922 Add README with pointers to mailing list, bugzilla & git repos 3923 3924 Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com> 3925 3926commit f682c27e93512773122887d2cbabb1657af45d2e 3927Author: Paulo Cesar Pereira de Andrade <pcpa@mandriva.com.br> 3928Date: Mon Feb 2 16:36:39 2009 -0200 3929 3930 Check if a function argument is NULL. 3931 3932 This was an addition to patch (also by me) 3933 https://bugs.freedesktop.org/attachment.cgi?id=14660 3934 that was not added when rediscovering/correcting the problem. 3935 3936commit 427e9d45d424b84efd9fc499aebf8d72392844c5 3937Author: Paulo Cesar Pereira de Andrade <pcpa@mandriva.com.br> 3938Date: Thu Feb 28 15:58:12 2008 -0300 3939 3940 Allow multiple inclusions of cursorfont.h, cosmetic patch. 3941 3942commit b91524a53e691f6a5d278fd8972b48a14ebeedeb 3943Author: Paulo Cesar Pereira de Andrade <pcpa@mandriva.com.br> 3944Date: Thu Feb 28 15:54:43 2008 -0300 3945 3946 Don't add prototypes for functions that don't exist. 3947 3948 Note that a full review was not done, only for functions that receive 3949 char/short arguments, or one of it's parameters is a function pointer 3950 that requires char/short arguments. 3951 3952commit 537eb52fe266ac439c4b383bb04a70017b709911 3953Author: Paulo Cesar Pereira de Andrade <pcpa@mandriva.com.br> 3954Date: Thu Feb 28 15:50:27 2008 -0300 3955 3956 WORD64 compile fix. This bug catched on a overview of the code. 3957 3958 The code is wrong since the first git revision, so it seens that it has 3959 not been compiled with WORD64 for quite some time, there is also another 3960 interesting code in xkb/XKBRdBuf.c: 3961 <hash>ifdef WORD64 3962 _XkbWriteCopyData32 Not Implemented Yet for sizeof(int)==8 3963 <hash>endif 3964 and possibly there are other similar problems. 3965 3966commit ffd0300fb74c6183208ae599133f2ded09e08d97 3967Author: Brian Rogers <brian@xyzw.org> 3968Date: Sat Jan 31 10:37:51 2009 -0800 3969 3970 Initialize event_notify after allocating the memory for it. 3971 3972 An uninitialized or otherwise invalid condition variable can apparently 3973 cause a hang in pthread_cond_broadcast. Ekiga, openoffice, and xine 3974 at least are freezing as a result of event_notify never being initialized. 3975 3976 Signed-off-by: Brian Rogers <brian@xyzw.org> 3977 Signed-off-by: Bart Massey <bart@cs.pdx.edu> 3978 3979commit 97fc6babd4ccaf300e25708868aa2a738893dc30 3980Author: James Cloos <cloos@jhcloos.com> 3981Date: Thu Jan 29 20:10:41 2009 -0500 3982 3983 NLS: Add UTF-8 compose file for Finnish 3984 3985 From bug report: 3986 3987 https://bugs.freedesktop.org/show_bug.cgi?id=18747 3988 3989commit 1bd2966ed88f83479a066c6ca7da23a515979550 3990Author: Paulo Cesar Pereira de Andrade <pcpa@mandriva.com.br> 3991Date: Thu Jan 29 20:25:15 2009 -0200 3992 3993 patches to avoid gcc warnings for libX11 (#4) 3994 3995 Author is Peter Breitenlohner <peb@mppmu.mpg.de> 3996 Bug #17946, attachment #19443 3997 3998 This patch avoids the gcc warning 3999 ../../../../libX11-1.1.5/modules/im/ximcp/imDefLkup.c:223: warning: passing arg 1 of `_XimProcSyncReply' from incompatible pointer type 4000 (same as already done at other places) 4001 4002 BTW: what is the difference between XIM (the type of ic->core.im) 4003 and Xim ? 4004 4005commit f16dd6af3eb17a25b8ee03d6617a7acc6e919fb0 4006Author: Paulo Cesar Pereira de Andrade <pcpa@mandriva.com.br> 4007Date: Thu Jan 29 20:22:21 2009 -0200 4008 4009 patches to avoid gcc warnings for libX11 (#3) 4010 4011 Author is Peter Breitenlohner <peb@mppmu.mpg.de> 4012 Bug #17946, attachment #19441 4013 4014 This patch avoids the two gcc warnings 4015 ../../../../libX11-1.1.5/modules/im/ximcp/imRm.c:413: warning: assignment discards qualifiers from pointer target type 4016 ../../../../libX11-1.1.5/modules/im/ximcp/imRm.c:450: warning: assignment discards qualifiers from pointer target type 4017 4018 Note, that this as a rather crude fix of the problem (and it is really a 4019 shame to cast name_table to non-const). 4020 4021 The right solution would be to declare XIMValuesList.supported_values 4022 (in include/X11/Xlib.h) as 'const char **' (or '_Xconst char **'). 4023 This will, however, require extensive modifications in various places. 4024 4025commit cce75c5dce73fe1f8626ed9e6798138ada09a860 4026Author: Paulo Cesar Pereira de Andrade <pcpa@mandriva.com.br> 4027Date: Thu Jan 29 20:20:18 2009 -0200 4028 4029 patches to avoid gcc warnings for libX11 (#2) 4030 4031 Author is Peter Breitenlohner <peb@mppmu.mpg.de> 4032 Bug #17946, attachment #19440 4033 4034 Avoid a preprocessor message 4035 <stdin>:194: warning: no newline at end of file 4036 4037 Two more such warnings (in XkbSAGroup.man and XkbSASetGroup.man) 4038 seem to be caused by a truncated (or otherwise incomplete) 4039 manpage. 4040 4041commit 692baebcc50f1e952800bfe4e2e6bc42f54e62fe 4042Author: Paulo Cesar Pereira de Andrade <pcpa@mandriva.com.br> 4043Date: Thu Jan 29 20:12:24 2009 -0200 4044 4045 patches to avoid gcc warnings for libX11 (#1) 4046 4047 Author is Peter Breitenlohner <peb@mppmu.mpg.de> 4048 Bug #17946, attachment #19439 4049 4050 Define as 1 (one) as done by autoconf and the command line 4051 option, e.g. -DX11_t, not as empty. 4052 4053 This avoids the gcc (3.4.6) warnings: 4054 ../../libX11-1.1.5/src/x11_trans.c:27:1: warning: "X11_t" redefined 4055 <command line>:7:1: warning: this is the location of the previous definition 4056 ../../libX11-1.1.5/src/x11_trans.c:28:1: warning: "TRANS_CLIENT" redefined 4057 <command line>:8:1: warning: this is the location of the previous definition 4058 4059 Similarly, follow the autoconf convention to define XTHREADS 4060 and XUSE_MTSAFE_API as one. 4061 4062 This avoids analogous warnings when compiling libXcomposite, 4063 libXcursor, and libXdamage. 4064 4065 No reason to AC_SUBST XTHREADS and XUSE_MTSAFE_API (unused). 4066 4067commit a1977883c9f5ef0e515569d6e2ebccb07411f98c 4068Author: Paulo Cesar Pereira de Andrade <pcpa@mandriva.com.br> 4069Date: Thu Jan 29 15:01:06 2009 -0200 4070 4071 Janitor: Correct some gcc/sparse warnings. 4072 4073 Most remaining warnings are about XIM/Xim to/from conversion 4074 and discarding const from pointers. 4075 4076commit 8ba0ca32a63c532f128bdca7f1bf982cab8e12be 4077Author: Paulo Cesar Pereira de Andrade <pcpa@mandriva.com.br> 4078Date: Wed Jan 28 20:31:42 2009 -0200 4079 4080 Janitor: ansification, make distcheck, compiler warnings. 4081 4082 Only convert to use "ansi prototypes" the functions warned from 4083 compilation with "./autogen.sh --prefix=/usr", on a Linux computer. 4084 4085 Also, only address "trivial" compiler warning fixes in this commit. 4086 4087 The new .gitignore is the output of a command like: 4088 % find . -name .gitignore -exec cat {} \; | sort | uniq 4089 and only the toplevel .gitignore file was kept. 4090 4091commit 091c1624fd2f9d933329d6152e4ecd865aa7903a 4092Author: Peter Hutterer <peter.hutterer@who-t.net> 4093Date: Tue Jan 13 12:05:54 2009 +1000 4094 4095 Fix wrong implies symbol. 4096 4097 Quote Simos Xenitellis: 4098 > I checked the gtk+ commit logs that go back to 2000, and I see that still it 4099 > was 4100 > 4101 > { 0x08ce, 0x21d2 }, /* implies ⇒ RIGHTWARDS 4102 > DOUBLE ARROW */ 4103 > 4104 > In XFree86, it appears there was an error when they converted the 4105 > original table to 4106 > http://cvsweb.xfree86.org/cvsweb/xc/lib/X11/imKStoUCS.c?rev=1.1&content-type=text/vnd.viewcvs-markup 4107 > and the problem still shows up there (November 2000). 4108 4109 http://lists.freedesktop.org/archives/xorg/2008-October/039743.html 4110 4111 Reported by Erik Streb del Toro. 4112 4113commit e32521f19e0b07649b7e3a03d56a2bd556b138fb 4114Author: James Cloos <cloos@jhcloos.com> 4115Date: Sun Dec 7 04:13:34 2008 -0500 4116 4117 [i18n] s/U00DC/Udiaeresis/g 4118 4119 The xkeyboard-config keyboards generate the symbol Udiaeresis, not 4120 U00DC. Make sure the relevant Compose sequences expect the symbol 4121 which the keyboards actually send. 4122 4123commit b7502abfe22f8dc009b21cda1172af221d8f9f32 4124Author: James Cloos <cloos@jhcloos.com> 4125Date: Sun Dec 7 04:09:46 2008 -0500 4126 4127 Revert "For nls/*.pre, allow people to comment lines by starting them with '##'." 4128 4129 As of commit c9d20e3 the initial double-hashes are replaced with proper C comments. 4130 4131 This reverts commit a225a0be48770beb689d5ac5da97073634f7deab. 4132 4133commit c9d20e3f697c9cfae5511412023362c1db7449b1 4134Author: James Cloos <cloos@jhcloos.com> 4135Date: Sun Dec 7 04:08:23 2008 -0500 4136 4137 Use C comments rather than initial doubled hashes to exclude lines from .pre files 4138 4139commit c34ce54d9eac2d8052dc5f205a2ab09866ef5d25 4140Author: vehemens <vehemens@verizon.net> 4141Date: Sun Dec 7 01:18:26 2008 -0500 4142 4143 [i18n] Distribute new headers which were added for gb18030 support. 4144 4145 big5hkscs.h and gbk.h, added in 67e34d7a, need to be in SOURCES to 4146 make it into the tar. 4147 4148 Completes 67e34d7a82ccd31f1208c0c43a6d58c3c05bf51. 4149 4150 Signed-off-by: James Cloos <cloos@jhcloos.com> 4151 4152commit 418819558d2c60e58b4e3022ce0fadf2143488ac 4153Author: Stefan Dirsch <sndirsch@suse.de> 4154Date: Sat Nov 22 22:01:07 2008 +0100 4155 4156 Fixed strange font mixups, when fontsets are still used (#2676, Novell #74299). 4157 4158commit 67e34d7a82ccd31f1208c0c43a6d58c3c05bf51a 4159Author: Stefan Dirsch <sndirsch@suse.de> 4160Date: Sat Nov 22 19:40:54 2008 +0100 4161 4162 Added remaining xlib patch required for gb18030 support (#1573). 4163 4164commit 55782a0a1fe1560f1a9c0ed78bc7f2575c15abcf 4165Author: Stefan Dirsch <sndirsch@suse.de> 4166Date: Sat Nov 22 17:53:06 2008 +0100 4167 4168 Added remaining hunk of Egbert's patch to prevent XIM deadlocks (#1182). 4169 4170commit c859446c500c883a67f7a86cab1a44844e24dade 4171Author: Ken Thomases <ken@codeweavers.com> 4172Date: Fri Nov 21 13:58:10 2008 -0500 4173 4174 [i18n] Provide translation from XK_partialderivative (8ef) to Unicode (U2202) 4175 4176 Signed-off-by: James Cloos <cloos@jhcloos.com> 4177 4178commit 5e68e94d852c730ef9264fc0d8ca61a2ffe98b53 4179Author: Jeremy Huddleston <jeremyhu@freedesktop.org> 4180Date: Mon Nov 17 20:47:26 2008 -0800 4181 4182 Force local transport when using the launchd socket. 4183 4184 Fixes a regression due to 4185 bf53987eaf0fbd7f7627783fc39e7ee99e8361ba 4186 4187commit 7aca689ce14d314b5c8c72c8df76f53f76ab467c 4188Author: Peter Hutterer <peter.hutterer@redhat.com> 4189Date: Fri Nov 14 10:32:50 2008 +1000 4190 4191 Add XF86Suspend, XF86Hibernate to KeysymDB. 4192 4193commit d16b11f25f8265e651def8d80bcd430c0448e664 4194Author: James Cloos <cloos@jhcloos.com> 4195Date: Tue Nov 11 19:43:39 2008 -0500 4196 4197 [nls] Annotate the Bépo compose sequences 4198 4199 Add comments with the UCS names. 4200 Add utf-8 strings for each result. 4201 Format for easy reading. 4202 4203commit 730298464240be6f65b32416b3f9b20062c61825 4204Author: James Cloos <cloos@jhcloos.com> 4205Date: Tue Nov 11 16:41:34 2008 -0500 4206 4207 [nls] Add some UTF-8 Compose sequences 4208 4209 As requested for the Bépo keyboard layout (http://clavier-dvorak.org/wiki/). 4210 4211 Cf. bugs: 4212 4213 https://bugs.freedesktop.org/show_bug.cgi?id=17821 4214 https://bugs.freedesktop.org/show_bug.cgi?id=17822 4215 4216commit ad6008a0c92733826983eb93f063d3d6276007d8 4217Author: Colin Harrison <colin.harrison@virgin.net> 4218Date: Thu Nov 6 17:48:21 2008 -0500 4219 4220 Fix copy/paste typo in imLcPrs 4221 4222 Signed-off-by: James Cloos <cloos@jhcloos.com> 4223 4224commit 0f0168ad18f8a280fc5a689eb02cfaa62d022ea6 4225Author: Adam Jackson <ajax@redhat.com> 4226Date: Thu Nov 6 14:54:13 2008 -0500 4227 4228 Fix leak in _XimXGetReadData 4229 4230 Spotted by Denis Dzyubenko 4231 4232commit ae23c25b9349ab1d7ff81f3075c000cf35fc442b 4233Author: Julien Cristau <jcristau@debian.org> 4234Date: Wed Nov 5 22:09:37 2008 +0100 4235 4236 Bump to 1.1.99.2 4237 4238commit d31e644c65c52828ea3e7abd94a8cf9aee12265c 4239Author: Julien Cristau <jcristau@debian.org> 4240Date: Wed Nov 5 21:33:13 2008 +0100 4241 4242 Fix distcheck 4243 4244commit e6a7b70cdb2ae8b713012839a0a0bbb93817b8ef 4245Author: Jamey Sharp <jamey@minilop.net> 4246Date: Wed Oct 29 14:00:33 2008 -0700 4247 4248 Support multiple independent internal sync handlers 4249 4250 Xlib has several independent tasks that need to be performed with the 4251 display unlocked. It does this by replacing the existing sync handler with 4252 one of a variety of internal sync handlers. However, if multiple internal 4253 sync handlers need to run, then the last one registering wins and 4254 previously registered internal sync handlers are never invoked. This 4255 manifested as a bug with DRI applications on Xlib/XCB as that requires 4256 both an XID handler after every XID allocation, and the periodic sequence 4257 number handler. The XID handler would win, and the sequence number handler 4258 would never be invoked. 4259 4260 Fix this by unifying the internal sync handler mechanism into a single 4261 function that calls all of the known internal sync handlers. They all need 4262 to deal with being called when not strictly necessary now. 4263 4264 Signed-off-by: Keith Packard <keithp@keithp.com> 4265 Signed-off-by: Jamey Sharp <jamey@minilop.net> 4266 Signed-off-by: Josh Triplett <josh@freedesktop.org> 4267 4268commit 2dbaaab9c4e3894b33dcae850551dee5473431d5 4269Author: Keith Packard <keithp@keithp.com> 4270Date: Sat Oct 11 21:44:21 2008 -0700 4271 4272 Ensure that _XReadEvents always leaves an event in the queue on return 4273 4274 XNextEvent assumes that the event queue will be non-empty on return from 4275 _XReadEvents, but with multiple event readers running, the previous change 4276 could leave the queue empty on return from process_responses. Re-invoke 4277 process_responses until the queue is non-empty. 4278 4279 Signed-off-by: Keith Packard <keithp@keithp.com> 4280 4281commit bedfe68259037c5564fe52758c92b9c97729640a 4282Author: Keith Packard <keithp@keithp.com> 4283Date: Sat Oct 11 21:10:23 2008 -0700 4284 4285 Permit only one Xlib thread to block waiting for events 4286 4287 As Xlib queues events internally, we must prevent multiple Xlib threads from 4288 entering XCB to wait for an event in case the queued event is to be 4289 delivered to the thread which didn't manage to read it. In other words, let 4290 only one Xlib thread into xcb_wait_for_event at a time. 4291 4292 Jamey Sharp looked over my shoulder while making this fix and, while hating 4293 my whitespace conventions, appears happy enough with the actual code. 4294 4295 Signed-off-by: Keith Packard <keithp@keithp.com> 4296 4297commit cc19618d2eb3ed92a0b574aee26a7da8b4aed5d2 4298Author: Jamey Sharp <jamey@minilop.net> 4299Date: Sun Mar 23 16:33:50 2008 -0700 4300 4301 Fix XAllocID race: hold the user display lock until we have a new XID. 4302 4303 Xlib built --without-xcb is also vulnerable to this race, and a similar 4304 fix might work there too. 4305 4306 Also, use an XID that's truly invalid while waiting for the next XID to be 4307 requested. 4308 4309commit 54e5c0941b0ded1628d559a9f0a3451ea96c299b 4310Author: Josh Triplett <josh@freedesktop.org> 4311Date: Sat Mar 15 17:22:23 2008 -0700 4312 4313 Use XCB's new socket handoff mechanism rather than the old XCB Xlib lock. 4314 4315 Previously, Xlib/XCB used XCB's Xlib lock to prevent XCB from sending 4316 requests between calls to Xlib's LockDisplay and UnlockDisplay macros. 4317 Xlib/XCB then sent all of its requests using XCB's xcb_send_request, and 4318 had to flush its requests when unlocking the display. 4319 4320 XCB 1.2 adds a new socket handoff mechanism, xcb_take_socket. Replace 4321 much of the existing Xlib/XCB implementation with the use of 4322 xcb_take_socket to take ownership of the write side of the X connection 4323 socket, and a return_socket callback which writes any outstanding requests 4324 with xcb_writev. This approach allows Xlib/XCB to use the same buffering 4325 as traditional Xlib did. In particular, programs which use Xlib/XCB and 4326 never make XCB calls will never need to hand the socket back to XCB, and 4327 vice versa. 4328 4329 This allows us to discard large quantities of synchronization code from 4330 Xlib/XCB, together with the synchronization bugs present in that code. 4331 Several test cases which previously failed now work perfectly, including 4332 multi-threaded ico. In addition, the infamous locking correctness 4333 assertions, triggered when double-locking or when unlocking without a 4334 previous lock, no longer exist, because Xlib/XCB no longer has any reason 4335 to care more about application locking than traditional Xlib does. 4336 4337 Furthermore, the handoff approach provides great improvements to 4338 performance. Results from x11perf's XNoOp test, which represented the 4339 worst case for the lock-based Xlib/XCB: 4340 4341 Traditional Xlib: average 19100000/sec 4342 Lock-based Xlib/XCB: average 3350000/sec 4343 Handoff-based Xlib/XCB: average 17400000/sec 4344 4345 Thus, for no-ops, the handoff mechanism provides more than a 4x speedup to 4346 Xlib/XCB, bringing Xlib/XCB within 9% of traditional Xlib no-op 4347 performance. Of course, real-world workloads do not use no-op, so your 4348 mileage may vary. In particular, since no-ops represent the worst case, 4349 we expect real workloads to more closely match the performance of 4350 traditional Xlib. 4351 4352 While removing synchronization code, we changed _XReply to not drop any 4353 locks when calling xcb_wait_for_reply; previously, we had to carefully 4354 avoid a deadlock between the Display lock and the XCB Xlib lock. Holding 4355 the locks reduces implementation complexity and should not impact 4356 applications. 4357 4358 Commit by Jamey Sharp and Josh Triplett. 4359 XCB's handoff mechanism inspired by Keith Packard. 4360 4361commit 5a19ac473f7a8046b0421fbd5d53da160c22ed75 4362Author: Chris Ball <cjb@laptop.org> 4363Date: Mon Nov 3 22:57:29 2008 -0500 4364 4365 Remove configure check for xcb-xlib. 4366 4367 xcb-xlib has been intentionally removed from libxcb; stop checking for 4368 it at configure-time. 4369 4370commit 34b35dda0bb7f3cf0ad9ab95ad7953d35d24f71b 4371Author: Josh Triplett <josh@freedesktop.org> 4372Date: Wed Oct 29 14:37:44 2008 -0700 4373 4374 .gitignore: Add dolt files 4375 4376commit 1290cccf2d90083eba852f5f413f7e3dff48ccd2 4377Author: Peter Hutterer <peter.hutterer@redhat.com> 4378Date: Tue Oct 28 11:56:55 2008 +1030 4379 4380 man: fix formatting error in XkbGetIndicatorState man page. 4381 4382commit b1022fa6d7e97640049e93ffa108083fc8d71b05 4383Author: James Cloos <cloos@jhcloos.com> 4384Date: Sat Oct 25 09:13:08 2008 -0400 4385 4386 Increase size of working arrays in the makekeys utility program. 4387 4388 Makekeys is used to create an optimal hash of the keysyms defined 4389 in x11proto’s keysymdef.h. 4390 4391 The recent addition of new keysyms there has triggered a bug in 4392 makekeys where it tries to use a zero on the rhs of the % (mod) 4393 operator (resulting in a divide by zero error) whenever it fails 4394 to find a solution within its constraints. 4395 4396 Increasing the size of the arrays allows it to find a solution for 4397 the current set of keysyms. 4398 4399 Makekeys is only run durring the build process, so this has no impact 4400 on users of libX11, only on the amount of VM needed to build it. 4401 4402 It still needs a more complete fix, but this allows compiles to 4403 progress until that is completed. 4404 4405commit 3e9afd501e40d76040635bd9a3045bcaf5a03b60 4406Author: James Cloos <cloos@jhcloos.com> 4407Date: Sat Oct 11 01:03:14 2008 -0400 4408 4409 Dolt-ify 4410 4411 Add dolt to acinclude.m4 and call it it configure.ac to speed compiles. 4412 4413commit 39c0b266cac8cbc15bf501d7869186862f01d823 4414Author: Peter Hutterer <peter.hutterer@redhat.com> 4415Date: Wed Oct 15 14:30:20 2008 +1030 4416 4417 Add more keysyms for PS3 BD remotes, Ericsson Phones #16519 4418 4419 X.Org Bug 16519 <https://bugs.freedesktop.org/show_bug.cgi?id=16519> 4420 4421commit d23aad31338e7d869d878d5aa1b6b91d20287005 4422Author: Peter Hutterer <peter.hutterer@redhat.com> 4423Date: Mon Oct 13 09:41:59 2008 +1030 4424 4425 Add XF86Battery, XF86Bluetooth, XF86WLAN, XF86UWB to keysymdb. 4426 4427commit 214ea6f5fd6aeaa7303ea4a69f9aedabf219ec4c 4428Author: Peter Hutterer <peter.hutterer@who-t.net> 4429Date: Thu Jul 24 15:44:26 2008 +0930 4430 4431 xkb: fix out-by-1 error in _XkbWriteKeyExplicit. 4432 4433 Thanks to Michael Meeks, Novell Bug 369263. 4434 https://bugzilla.novell.com/show_bug.cgi?id=369263 4435 4436commit e7ece39afc8e0adc3b6b1e70b337b98376754462 4437Author: Alan Coopersmith <alan.coopersmith@sun.com> 4438Date: Tue Oct 7 15:41:38 2008 -0700 4439 4440 Sun bug #6739431: double free in _X11TransConnectDisplay() 4441 4442 Double free() introduced in bf53987eaf0fbd7f7627783fc39e7ee99e8361ba 4443 After copying original_hostname to phostname, set original_hostname 4444 to NULL, so we don't free the same pointer twice when we free both 4445 original_hostname and phostname. 4446 4447 <http://bugs.opensolaris.org/bugdatabase/view_bug.do?bug_id=6739431> 4448 4449commit 0877bc916afbd1ff8f1833edc930b765ea783576 4450Author: Daniel Stone <daniel@fooishbar.org> 4451Date: Tue Sep 23 19:02:02 2008 +0300 4452 4453 configure.ac: Fix CC_FOR_BUILD logic error 4454 4455 Turns out we were accidentally smashing it so that you couldn't set it 4456 externally at all. Oops. 4457 4458commit 58bf3aa746908f01c37be7045699e43a4e270944 4459Author: John Tapsell <johnflux@gmail.com> 4460Date: Tue Sep 23 17:30:13 2008 +0300 4461 4462 Build: Use native compiler for makekeys 4463 4464 makekeys needs to be run during the build process, as opposed to on the 4465 target, so build it with either of gcc or cc to fix cross-compiling. 4466 This can be overridden by setting $CC_FOR_BUILD. 4467 4468commit 340422a5c7a413faef18666cada27cee14615250 4469Author: Adam Jackson <ajax@redhat.com> 4470Date: Wed Sep 17 12:54:34 2008 -0400 4471 4472 Fix the previous patch for the BadFont case. 4473 4474commit 2335eafe4b53c27f6f9ee1bab3e1f5842f896428 4475Author: Matthias Clasen <mclasen@redhat.com> 4476Date: Wed Sep 17 10:43:52 2008 -0400 4477 4478 Bug #17616: Fix an XCB leak when the client has a non-fatal error handler. 4479 4480commit db0b85db29699be6bf7e78dede655d59ba926dfc 4481Author: Rafael Ávila de Espíndola <rafael.espindola@gmail.com> 4482Date: Sun Sep 14 19:15:26 2008 -0400 4483 4484 Fix problem with <dead_acute> <c> in pt_BR.UTF-8 4485 4486 The <dead_acute> <C> and <dead_acute> <c> lines in the pt_BR UTF-8 4487 Compose file show "Ç" and "ç" (c with cedilla accent) (akin to the 4488 ISO 8859 pt_BR Compose file) as the string but specify the keysym 4489 and comment for Ć and ć (c with acute accent). 4490 4491 This commit normalizes those two lines to match the specified string. 4492 4493 Fixes: https://bugs.freedesktop.org/show_bug.cgi?id=4671 4494 4495 Signed-off-by: James Cloos <cloos@jhcloos.com> 4496 4497commit b065c011baa69b69e3ea77c30d5e153c0d103e2d 4498Author: Michael Verret <michael.verret@gmail.com> 4499Date: Mon Sep 8 16:33:35 2008 -0400 4500 4501 Fix documentation typo 4502 4503 Signed-off-by: James Cloos <cloos@jhcloos.com> 4504 4505commit 4213ea95185377bdd1b51e82933f331fc0f52e5b 4506Author: James Cloos <cloos@jhcloos.com> 4507Date: Sat Sep 6 04:19:19 2008 -0400 4508 4509 Remove extraneous <angle brackets> from the Ethiopic Compose file. 4510 4511 The am_ET.UTF-8 Compose file submitted in: 4512 4513 https://bugs.freedesktop.org/show_bug.cgi?id=11307 4514 4515 for the OLCP project used incorrect syntax. (It has angle brackets around the 4516 Uxxxx symbols on the right hand side rather than only on the left hand side). 4517 4518 This bug is noted in OLPC’s ticket: 4519 4520 http://dev.laptop.org/ticket/7474 4521 http://dev.laptop.org/attachment/ticket/7474/olpc_7474_dead_vowels_libX11.patch 4522 4523commit 9df84b513dd2b6e65e6d528cfac6d4cc3ea46918 4524Author: James Cloos <cloos@jhcloos.com> 4525Date: Mon Sep 1 17:49:33 2008 -0400 4526 4527 Complete the set of vulgar fractions 4528 4529 Unicode 1.1 added thirds, fifths, sixths and eights; 4530 we might as well catch up. 4531 4532 (Unicode and ISO 10646 have 1/7 (U2150), 1/9 (U2151), 1/10 (U2152) 4533 and 0/3 (U2189) in their pipelines, but those four can be added 4534 here after they are published.) 4535 4536commit a788792e9de95f8db0639557859722a35087481d 4537Author: James Cloos <cloos@jhcloos.com> 4538Date: Wed Aug 20 15:28:07 2008 -0400 4539 4540 nls (en_US) Re-remove long compositions that override shorter 4541 4542 As reported in <https://bugs.freedesktop.org/show_bug.cgi?id=17228>: 4543 4544 Commit a6f4bbf7 4545 nls (en_US): remove long compositions that override shorter [...] 4546 removed some longer compose sequences because there are shorter 4547 ones which take preference over the longer. For example the 4548 sequences: 4549 4550 <Multi_key> <apostrophe> <comma> <c> : U1E09 # ḉ 4551 <Multi_key> <apostrophe> <comma> <C> : U1E08 # Ḉ 4552 4553 were removed becase there already was: 4554 4555 <Multi_key> <apostrophe> <comma> : U201A # ‚ 4556 4557 Then commit 4ba09125 4558 Work on making the en_US and pt_BR UTF-8 Compose as similar as 4559 possible added exactly the same key sequences again. Obviusly 4560 they won't work. 4561 4562commit 55248e5c84c3fd8c349a3bb4cb15a1ec86989d74 4563Author: James Cloos <cloos@jhcloos.com> 4564Date: Thu Jul 17 21:01:42 2008 -0400 4565 4566 Add more <Multi_key> <cedilla> Compose tuples 4567 4568 The last commit missed the el_GR UTF-8 Compose.pre as well as 4569 the various ISO 8859 locales which have compose sequences 4570 generating ‘WITH CEDILLA’ characters. 4571 4572 (Interestingly, some of the 8859 locales already supported 4573 <Multi_key> <cedilla> for some CEDILLA characters, but not 4574 for Ç or ç.) 4575 4576 This is further work on bug 10397. 4577 4578commit 4ba091255bb953d53078ba5619d6751052c739f7 4579Author: James Cloos <cloos@jhcloos.com> 4580Date: Thu Jul 17 17:16:50 2008 -0400 4581 4582 Work on making the en_US and pt_BR UTF-8 Compose as similar as possible. 4583 4584 The eventual goal here is to have a single primary UTF-8 Compose 4585 file which the locale-specific UTF-8 Compose.pre files can #include. 4586 4587commit 254522d3c24e0590732fc03cdd61ff4564819d94 4588Author: James Cloos <cloos@jhcloos.com> 4589Date: Thu Jul 17 17:13:36 2008 -0400 4590 4591 Add <Multi_key> <cedilla> Compose tuples 4592 4593 The en_US and pt_BR UTF-8 Compose tables had support for using <comma> 4594 with <Multi_key> to enter CEDILLA characters. Bug 10397 requests 4595 support for using <cedilla> instead of <comma> in said sequences. 4596 4597 This commit makes both styles work. 4598 4599commit 7dc907f6032e1d5cbe4da0e414bdf2c569c04b44 4600Author: James Cloos <cloos@jhcloos.com> 4601Date: Sat Jun 28 15:25:23 2008 -0400 4602 4603 Fix commit 21e464ec682ab23ba20ddf6bd72c6db214cfbe01 4604 4605 The new block was added twice to the en_US.UTF-8 Compose.pre; 4606 delete the duplicate. 4607 4608commit 596e081b7457dcd1c4ad555ac140e6999239bc0d 4609Author: Peter Hutterer <peter@cs.unisa.edu.au> 4610Date: Sat Jun 28 20:14:05 2008 +0930 4611 4612 Fix unbalanced parenthesis in XKBlib.h # 16551 4613 4614 X.Org Bug 16551 <http://bugs.freedesktop.org/show_bug.cgi?id=16551> 4615 4616commit f6af6dd2f76c12b56ec166bb771457b9f08fe246 4617Author: Adam Jackson <ajax@redhat.com> 4618Date: Tue Jun 24 13:16:53 2008 -0400 4619 4620 Bug #14898: Don't abuse the sprintf() implementation. 4621 4622 The thing you're printing into should not itself appear in the list of 4623 things to print from, that's bad juju. Just use strcat(). 4624 4625commit 21e464ec682ab23ba20ddf6bd72c6db214cfbe01 4626Author: Khaled Hosny <khaledhosny@eglug.org> 4627Date: Thu Jun 19 18:26:11 2008 -0400 4628 4629 NLS: Add Arabic Lam-Alef ligature compose sequences (bug #16426) 4630 4631 Add some Arabic digraphs to utf-8 locales with a Compose.pre 4632 4633 Signed-off-by: James Cloos <cloos@jhcloos.com> 4634 4635commit bf53987eaf0fbd7f7627783fc39e7ee99e8361ba 4636Author: Alan Coopersmith <alan.coopersmith@sun.com> 4637Date: Wed Jun 18 20:00:25 2008 -0700 4638 4639 Rework code to choose local connection types and fallback to others 4640 4641 Adds --with-local-transport-order configure flag if you don't like the 4642 default ordering (which is platform dependent) 4643 4644 Includes fixes for these Sun/Solaris bug ids: 4645 6678250 X Commands returning incorrect display value unix:0.0 not <system>:0.0 4646 <http://bugs.opensolaris.org/bugdatabase/view_bug.do?bug_id=6678250> 4647 6716481 libX11 should prefer Unix domain sockets over named pipes on Solaris 4648 <http://bugs.opensolaris.org/bugdatabase/view_bug.do?bug_id=6716481> 4649 4650commit cf49e537014c3cb5aaee07e57400933e0bb72b6b 4651Author: Alan Coopersmith <alan.coopersmith@sun.com> 4652Date: Tue Jun 17 14:41:17 2008 -0700 4653 4654 Strip whitespace from end of lines in source files 4655 4656commit f76fd81dfbbd5cfae75c87ce0511e88e08529cf3 4657Author: Jeff Smith <whydoubt@yahoo.com> 4658Date: Sun Jun 15 23:52:20 2008 -0500 4659 4660 Fix memory leak in XOpenDisplay 4661 4662 Signed-off-by: Peter Hutterer <peter@cs.unisa.edu.au> 4663 4664commit fca0b0ba3f72b7284601d4690bba99fc80a92614 4665Author: Jens Herden <jens@khmeros.info> 4666Date: Tue Jun 10 20:07:30 2008 +0300 4667 4668 NLS: Add Khmer compose sequences (bug #5706) 4669 4670 Add some Khmer digraphs to all locales with a Compose.pre. 4671 4672commit e54cffb649b1622c17457e470cfab8cc56d38c97 4673Merge: 19802cc 721b574 4674Author: Daniel Stone <daniel@fooishbar.org> 4675Date: Tue Jun 10 20:04:30 2008 +0300 4676 4677 Merge branch 'master' of ssh://git.freedesktop.org/git/xorg/lib/libX11 4678 4679commit 721b574d36f1884c3f1bf7bd933646e2ed6680b5 4680Author: Peter Hutterer <peter@cs.unisa.edu.au> 4681Date: Thu May 29 10:57:21 2008 +0930 4682 4683 Bump to 1.1.99.1 4684 4685commit 631d32d13247d1cf52c0833d438c5b38b01b17a4 4686Author: Peter Hutterer <peter@cs.unisa.edu.au> 4687Date: Wed May 28 17:31:59 2008 +0930 4688 4689 Require xproto 7.0.13 and libxcb 1.1.90 (for GenericEvents) 4690 4691commit e9195db7257e418f83707233baeeb84b225caf4f 4692Merge: c34f76f a7f8556 4693Author: Peter Hutterer <peter@cs.unisa.edu.au> 4694Date: Thu May 22 12:14:28 2008 +0930 4695 4696 Merge branch 'master' into xge 4697 4698commit 19802ccd3909145e3ba2f6c073271cb5f3701685 4699Author: Daniel Stone <daniel@fooishbar.org> 4700Date: Mon May 19 19:22:31 2008 +0300 4701 4702 gitignore: Update with loads more bits from server 4703 4704commit a7f85567a3e850fba0c44571453d2852ab1a09be 4705Author: Adam Jackson <ajax@redhat.com> 4706Date: Tue May 13 10:28:39 2008 -0400 4707 4708 Bug #15884: Remove useless sleep()'s from the connection code. 4709 4710 For network transports, there's enough delay in the network layer 4711 already without adding more. For local transports, just hurry up 4712 and fail if the server isn't there. 4713 4714commit c34f76f475bc632490122e67b5a82575d69d5569 4715Author: Peter Hutterer <peter@cs.unisa.edu.au> 4716Date: Mon May 12 21:46:24 2008 +0930 4717 4718 Pull down extra bytes when reading a GenericEvent (non-xcb). 4719 4720 I refuse to take any responsibily for this code. It works, I guess. 4721 But - all the flushing is done somewhere before that, so we might need to 4722 flush here. Under some circumstances anyway. Don't ask me, I'm an optical 4723 illusion. 4724 4725 Build with xcb as transport layer highly recommended. 4726 4727commit c9b2ff1e6a607463993afa4a8d085857d97cc2f3 4728Merge: 17d7dcb 9129057 4729Author: Peter Hutterer <peter@cs.unisa.edu.au> 4730Date: Mon May 12 17:58:37 2008 +0930 4731 4732 Merge branch 'master' into xge 4733 4734commit 9129057bdbff0ec9cd8bb780cf7f85f134a291eb 4735Author: Teemu Likonen <tlikonen@iki.fi> 4736Date: Wed May 7 21:44:22 2008 +0300 4737 4738 Change <dead_belowdot> to <dead_belowring> for U+1E00 and U+U1E01 4739 4740 Commit 6b6caeea830a977bdb54688cfb648d879821e752 added <dead_belowdot> 4741 <A> and <dead_belowdot> <a> compose sequences for letters U+1E00 and 4742 U+U1E01 (LATIN CAPITAL/SMALL LETTER A WITH RING BELOW). This caused 4743 duplicate compose sequences since these have already been defined. Also, 4744 using <dead_belowring> is more logical since the diacritic is indeed 4745 a "RING BELOW". 4746 4747commit 01a9cb58888d290cc3d319feec4ee4a0297a844c 4748Author: Daniel Stone <daniel@fooishbar.org> 4749Date: Wed May 7 20:04:44 2008 +0300 4750 4751 NLS: Make UTF-8 the default for Russian 4752 4753 No-one uses 8859-5 anymore, so make the default for Russian UTF-8; the 4754 only other possible answer would be KOI8-R. 4755 4756 Signed-off-by: Sergey V. Udaltsov <sergey.udaltsov@gmail.com> 4757 4758commit 407b81bfbbabf6feb565d6da22f9ef9a69016ab8 4759Author: Ross Burton <ross@burtonini.com> 4760Date: Tue Apr 29 13:38:10 2008 +0300 4761 4762 NLS: Add interrobang to UTF-8 compose tables (bug #15653) 4763 4764 It is what it says on the box. 4765 4766commit 0b6682303e9c61fefc3818acfda616b1e3691abf 4767Author: Theppitak Karoonboonyanan <thep@linux.thai.net> 4768Date: Mon Apr 28 11:51:25 2008 +0300 4769 4770 IM: Respect XMODIFIERS for Thai locale (bug #15719) 4771 4772 When looking at Thai input methods, make sure XMODIFIERS is checked 4773 before jumping straight into built-in Thai processing, so external XIM 4774 servers such as SCIM can be used with Thai. 4775 4776commit c13aded1b2f830ba5004abb0ec5518f9ea16087e 4777Author: Colin Harrison <colin.harrison-at-virgin.net> 4778Date: Sat Apr 26 18:56:05 2008 +0100 4779 4780 Fix missing error condition 4781 4782commit f5c5ffc175cb383c92ea0fa8c08cfb087c5f3083 4783Author: Colin Harrison <colin.harrison-at-virgin.net> 4784Date: Mon Apr 21 17:24:33 2008 +0100 4785 4786 Xlib warning fixes 4787 4788commit 6b6caeea830a977bdb54688cfb648d879821e752 4789Author: James Cloos <cloos@jhcloos.com> 4790Date: Fri Apr 18 02:50:55 2008 -0400 4791 4792 Add some dead_key sequences to en_US.UTF-8 Compose table 4793 4794 Make use of the new dead key symbols added to x11proto’s 4795 commit 44e24a27bca023cf7b799f191fe6d52e12efbe5f (which 4796 was in responce to bug #15446). 4797 4798commit 8f9b039580deaf658e464b7d6254064fcf183df6 4799Author: Alan Coopersmith <alan.coopersmith@sun.com> 4800Date: Mon Apr 14 19:09:42 2008 -0700 4801 4802 Update ac_define_dir macro in acinclude.m4 to 2008-04-12 version 4803 4804commit 9f5e96eb91ab55dd441c3e94b75caf48c588778f 4805Author: Alan Coopersmith <alan.coopersmith@sun.com> 4806Date: Mon Apr 14 18:21:14 2008 -0700 4807 4808 Fix mismatched brace indenting 4809 4810commit a19f9c65ee9e5e5d783feaa84998c36439b0288b 4811Author: Bart Massey <bart@cs.pdx.edu> 4812Date: Fri Apr 4 18:58:45 2008 -0700 4813 4814 added error check in Xcms color file parser; closes bug #15305 4815 4816commit 12e8d0d01dd72ce98e7683ddb1bde181b7ed246f 4817Author: Christian Weisgerber <naddy@mips.inka.de> 4818Date: Tue Mar 18 07:30:05 2008 +0100 4819 4820 ConnDis: properly cast 'addr' before accessing it as a byte array. 4821 4822 If you use XDM-AUTHORIZATION-1 authorization keys for remote X11 4823 clients over IPv6, the clients are liable to segfaults. 4824 4825commit 64325f38bab082a8e0e9ce779a8e582de5c8588e 4826Author: Josh Triplett <josh@freedesktop.org> 4827Date: Sat Mar 15 12:29:33 2008 -0700 4828 4829 Fix fd.o bug 15023: make Xlib sync correctly given many void requests 4830 4831 If given many requests without replies, Xlib may not sync until it flushes 4832 the output buffer. Thus, if Xlib can fit enough requests in the buffer to 4833 pass by the number of requests it would normally sync after (65536 - 4834 BUFSIZE/sizeof(xReq)), it will sync too late. The test case in bug 15023 4835 demonstrated this by issuing a request with a reply (ListExtensions) at 4836 just the right time to get confused with the GetInputFocus reply issued in 4837 response to the sync 65,536 requests later; the test case used an async 4838 handler to watch the replies, since otherwise it could not issue a request 4839 without waiting for the response. When the test case failed, Xlib's sync 4840 handler would eat the ListExtensions reply, and the test case's async 4841 handler would see the GetInputFocus reply. 4842 4843 Fix this by replacing SEQLIMIT with a function sync_hazard() that uses the 4844 buffer size to figure out when the sequence numbers could potentially wrap 4845 before the next flush. 4846 4847 With this commit, the test case consistently passed, and the async reply 4848 handler always saw the ListExtensions reply. 4849 4850 Commit by Jamey Sharp and Josh Triplett. 4851 4852commit a5395563bbee15fabe1e8fd7aa86f9f314d8d30e 4853Author: Colin Harrison <colin.harrison@virgin.net> 4854Date: Sat Mar 15 13:39:13 2008 -0400 4855 4856 Fix typo 4857 4858 Signed-off-by: James Cloos <cloos@jhcloos.com> 4859 4860commit f07585ca27a8487bc66dfe41486c823f0fdcea7d 4861Author: Daniel Stone <daniel@fooishbar.org> 4862Date: Sat Mar 15 17:32:57 2008 +0200 4863 4864 configure.ac: Don't search for legacy X11 headers 4865 4866 This can actually break cross-compiles, so don't do it anymore. 4867 4868commit bf69541238c7df6606340c0f389e5c47149b29c7 4869Author: Matthieu Herrb <matthieu.herrb@laas.fr> 4870Date: Sun Mar 9 09:08:07 2008 +0100 4871 4872 nuke RCS Ids 4873 4874commit 5e98aed13e529638df744e45893c471d5f2014fb 4875Author: Adam Jackson <ajax@redhat.com> 4876Date: Thu Mar 6 16:10:33 2008 -0500 4877 4878 libX11 1.1.4 4879 4880commit 8e085971dc661da9f80ff6b67747459c0fb15c08 4881Author: Alan Coopersmith <alan.coopersmith@sun.com> 4882Date: Thu Feb 28 20:17:41 2008 -0800 4883 4884 Man page typo fixes 4885 4886commit 1a1a42a3ca1dfaf42f1094936b71c140fc030fcb 4887Author: Søren Sandmann Pedersen <sandmann@redhat.com> 4888Date: Sun Feb 24 20:03:35 2008 -0500 4889 4890 XIM: Fix a hand when switching input context. 4891 4892 Red Hat bug #201284. 4893 4894commit e02e4ccafcaf3eb8993152dfcbfbee0240ea2db2 4895Author: Adam Jackson <ajax@redhat.com> 4896Date: Sun Feb 24 20:00:43 2008 -0500 4897 4898 Bug #14029: Don't LockDisplay() recursively. 4899 4900 See also Red Hat bugzilla #326461. 4901 4902commit e5892467ae3308c8651be76e06db322dcbc08522 4903Author: Alan Coopersmith <alan.coopersmith@sun.com> 4904Date: Fri Feb 15 17:27:53 2008 -0800 4905 4906 Add support for building lint library with --enable-lint-library 4907 4908commit e3eb83ec6a9bffa63cdffd94f077c12f85ad7240 4909Author: Alan Coopersmith <alan.coopersmith@sun.com> 4910Date: Mon Feb 11 20:11:43 2008 -0800 4911 4912 Spell out number in XkbGetKeyVirtualModMap man page to avoid cpp errors from # 4913 4914commit d5ceed7a73a6b61758ddb6ff4e194955fbd5c185 4915Author: Alan Coopersmith <alan.coopersmith@sun.com> 4916Date: Fri Feb 8 16:46:46 2008 -0800 4917 4918 Add WM_LOCALE_NAME to list of properties set in XSetWMProperties comment 4919 4920commit 416a812200f24d19149dcc497e5c51a0608120f6 4921Author: Alan Coopersmith <alan.coopersmith@sun.com> 4922Date: Fri Feb 8 15:31:31 2008 -0800 4923 4924 XErrorDB updates for Render 0.9 & XFixes 4.0 4925 4926commit 16a76091cd632e5a3708e235ff864b58f3e4613e 4927Author: Kim Woelders <kim@woelders.dk> 4928Date: Sat Dec 22 21:45:23 2007 +0100 4929 4930 Fix bs_BA entries in locale.dir.pre 4931 4932 X.Org bug#13786 <http://bugs.freedesktop.org/show_bug.cgi?id=13786> 4933 4934commit 32115c563b87d2f37e3f9de70fbd0f4d9e424aea 4935Merge: 8f0bd3f e8d4cef 4936Author: James Cloos <cloos@jhcloos.com> 4937Date: Fri Dec 14 22:43:47 2007 -0500 4938 4939 Merge branch 'master' of ssh://git.freedesktop.org/git/xorg/lib/libX11 4940 4941commit 8f0bd3f445cbdcc67650f6e8e3baf2ed89cb3695 4942Author: James Cloos <cloos@jhcloos.com> 4943Date: Fri Dec 14 22:42:59 2007 -0500 4944 4945 add a comment to en_US.UTF-8/Compose 4946 4947commit 4d6c45e60ed13d3b0fea10413873d6a74f9d6a3b 4948Author: James Cloos <cloos@jhcloos.com> 4949Date: Fri Dec 14 22:40:13 2007 -0500 4950 4951 Add <dead_stroke> compose sequences 4952 4953 The added sequences match the existing <Multi_key> <slash> sequences. 4954 4955 This is related to bug #12765¹. 4956 4957 1] https://bugs.freedesktop.org/show_bug.cgi?id=12765 4958 4959commit e8d4cefa0837afa149a10e981528b368485a9e38 4960Author: Jeremy Huddleston <jeremy@yuffie.local> 4961Date: Mon Dec 10 23:00:44 2007 -0800 4962 4963 Added launchd support. 4964 4965commit 17d7dcbfced4a9417b33507bd3fd9b7dd8268242 4966Merge: 5dfefd3 13ac804 4967Author: Peter Hutterer <peter@cs.unisa.edu.au> 4968Date: Thu Dec 6 14:08:29 2007 +1030 4969 4970 Merge branch 'master' into xge 4971 4972commit 5dfefd3829d3ba7e41d5db0ad28e9dfee92fadd5 4973Merge: a68a1cd eff33ae 4974Author: Peter Hutterer <peter@cs.unisa.edu.au> 4975Date: Thu Dec 6 13:57:09 2007 +1030 4976 4977 Merge branch 'master' into xge 4978 4979 Conflicts: 4980 4981 src/xcb_io.c 4982 4983commit 13ac80469f6958cabac596834e203bd9cb6d4c94 4984Author: James Cloos <cloos@jhcloos.com> 4985Date: Wed Dec 5 20:14:03 2007 -0500 4986 4987 Update the currency symbols block of en_US.UTF-8/Compose.pre 4988 Add XCOMM lines a la the existing NEW SHEQEL SIGN entry for 4989 the KIP, TUGRIK, DRACHMA. GERMAN PENNY, PESO, GUARANI, 4990 AUSTRAL, HRYVNIA and CEDI SIGNs. 4991 4992commit b0a8f2ec4ba698841683f8ce389f9d72e6bce53e 4993Author: Anton Zinoviev <anton@lml.bas.bg> 4994Date: Wed Dec 5 19:56:03 2007 -0500 4995 4996 Additions to the Compose file for UTF-8 4997 From bug #5371¹ 4998 4999 Commit 5cf5bc76642bfece7cb5b76faf414bf445f14489 left out this change 5000 from those in attachment #4122². The post³ on xorg resulted in only 5001 a positive reply⁴ from Daniel, so this block is now also commited. 5002 5003 1] https://bugs.freedesktop.org/show_bug.cgi?id=5371 5004 2] https://bugs.freedesktop.org/attachment.cgi?id=4122 5005 3] http://article.gmane.org/gmane.comp.freedesktop.xorg/20628 5006 4] http://article.gmane.org/gmane.comp.freedesktop.xorg/23966 5007 5008 Signed-off-by: James Cloos <cloos@jhcloos.com> 5009 Acked-by: Daniel Stone <daniel@fooishbar.org> 5010 5011commit 438d02ebc08ee171cf1d3936f4c81050d428ab92 5012Author: James Cloos <cloos@jhcloos.com> 5013Date: Tue Dec 4 17:25:39 2007 -0500 5014 5015 Fix the <U\x+> keysyms in the en_US.UTF-8 Compose file 5016 5017 Based on src/KeysymStr.c and src/StrKeysym.c and comments in 5018 bugs #11930¹ and #5129² it is clear that <U100XXXXX> is invalid; 5019 those should be in the form U plus the hex of the UCS Code Point. 5020 5021 The 0x01000000 is ORed in by the code. 5022 5023 This update fixes all of those. 5024 5025 1] https://bugs.freedesktop.org/show_bug.cgi?id=11930 5026 2] https://bugs.freedesktop.org/show_bug.cgi?id=5129 5027 5028commit 02e04059c89e175f51647e3b031344f743286b34 5029Merge: 1254c57 b57129e 5030Author: James Cloos <cloos@jhcloos.com> 5031Date: Tue Dec 4 06:55:04 2007 -0500 5032 5033 Merge branch 'master' of ssh://git.freedesktop.org/git/xorg/lib/libX11 5034 5035commit 1254c57dd3a8d6ea87041b2f63024f99094f290f 5036Author: James Cloos <cloos@jhcloos.com> 5037Date: Tue Dec 4 06:53:55 2007 -0500 5038 5039 Use the new dead_psili and dead_dasia keysyms added to proto/x11proto 7.0.11 5040 Inspired by bug 11930¹: 5041 5042 Commit 40ed4eef92e31fcf7ea0a436e1a00cdf49484c1b to x11proto added dead_psili 5043 and dead_dasia keysyms. Make use of them in the en_US.UTF-8 and el_GR.UTF-8 5044 Compose files. 5045 5046 This was done with a pair of perl scripts based on the one quoted in the 5047 log for commit c76d30253f1483ac8200ad5c032a818907e65030. 5048 5049 1] https://bugs.freedesktop.org/show_bug.cgi?id=11930 5050 5051commit b57129ef324c73ee91c2a796b800c4b45f4d4855 5052Author: Jeremy Huddleston <jeremy@yuffie.local> 5053Date: Mon Dec 3 20:04:19 2007 -0800 5054 5055 Use __APPLE__ instead of __DARWIN__ 5056 5057commit b9c032e1d5ed08510863dfb91b8bda588e6c8c9e 5058Author: Jeremy Huddleston <jeremy@yuffie.local> 5059Date: Wed Nov 28 16:43:49 2007 -0800 5060 5061 Define __DARWIN__ when host_os == darwin* as needed in SetLocale.c 5062 5063commit 4b91ed099554626f1ec17d5bdf7bd77ce1a70037 5064Author: Alan Coopersmith <alan.coopersmith@sun.com> 5065Date: Wed Nov 21 16:50:04 2007 -0800 5066 5067 X.Org Bug #4312: incorrect comment asterisk in XAnyEvent.3x man page 5068 5069 X.Org Bugzilla #4312 <http://bugs.freedesktop.org/show_bug.cgi?id=4312> 5070 5071 Protect /* sequences from cpp pre-processor removal without transforming 5072 to Unicode mathematical asterisk character 5073 5074commit 2af660c2fcd15c86c66459bfc074c190ea1462e6 5075Author: Jamey Sharp <jamey@minilop.net> 5076Date: Mon Oct 29 10:46:20 2007 -0700 5077 5078 Two threads can request sequence sync and XID fetch simultaneously. 5079 5080 So don't assert that they can't. 5081 5082 This makes the Xlib/XCB implementation of _XAllocID more closely 5083 resemble the traditional Xlib version. 5084 5085commit 6e5485e0a5e3ab738becad12193e760c5fee83a4 5086Author: Samuel Thibault <samuel.thibault@ens-lyon.org> 5087Date: Sun Oct 28 04:44:00 2007 -0800 5088 5089 X.Org Bug #12983: Typos in ./man/XChangeKeyboardControl.man 5090 5091 <http://bugs.freedesktop.org/show_bug.cgi?id=12983> 5092 5093commit 24527c92fd1f433ea135e85ec876a94a529fe500 5094Author: Yann Droneaud <ydroneaud@mandriva.com> 5095Date: Wed Oct 24 19:26:07 2007 +0300 5096 5097 XIM: Properly initialise client event 5098 5099 Make sure all ClientMessage fields are initialised to 0 before we send it. 5100 5101commit e41477f37b0d9b74a056d22dbf0073a94eecb9d6 5102Author: Daniel Stone <daniel@fooishbar.org> 5103Date: Wed Oct 24 19:22:22 2007 +0300 5104 5105 Colours: Fix --disable-xcms 5106 5107 Disable large tracts of colour management code when passing 5108 --disable-xcms. 5109 5110commit 11ea09745efa8de7dc82fe30ebd2393f08390957 5111Author: Eric Anholt <eric@anholt.net> 5112Date: Fri Aug 31 17:30:33 2007 -0700 5113 5114 Bug #2081: Note the range limitation of XSetScreenSaver arguments. 5115 5116commit 31540f1438ec63faf37044f2fd654b335ddf80f0 5117Author: Kristian Høgsberg <krh@redhat.com> 5118Date: Wed Aug 29 19:50:57 2007 -0400 5119 5120 Add GLX 1.4 requests and errors. 5121 5122commit 7c996f78914c77fe17e9f4feede980d895d9df51 5123Author: Eric Anholt <eric@anholt.net> 5124Date: Tue Aug 28 15:15:11 2007 -0700 5125 5126 Add XF86 keyboard/monitor brightness keysyms to the keysymbdb. 5127 5128commit fa4effe82759f864a22a2dc6c920fa72ddb175a8 5129Author: Eric S. Raymond <esr@thyrsus.com> 5130Date: Sun Jan 14 10:48:00 2007 -0800 5131 5132 Bug #9658: Bad markup on XIfEvent.3x 5133 5134 X.Org Bugzilla #9658 <https://bugs.freedesktop.org/show_bug.cgi?id=9658> 5135 5136commit 74cba78daa738ef4d92096107d95c1a585933666 5137Author: Eric S. Raymond <esr@thyrsus.com> 5138Date: Sun Jan 14 10:43:00 2007 -0800 5139 5140 Bug #9655: Bad markup in XrmUniqueQuark.3x 5141 5142 X.Org Bugzilla #9655 <https://bugs.freedesktop.org/show_bug.cgi?id=9655> 5143 5144commit 4341d1a34b2a2e460b58131b6fd81935f3355bbc 5145Author: Eric S. Raymond <esr@thyrsus.com> 5146Date: Sun Jan 14 10:43:00 2007 -0800 5147 5148 Bug #9654: Bad markup in XrmGetFileDatabase.3x 5149 5150 X.Org Bugzilla #9654 <https://bugs.freedesktop.org/show_bug.cgi?id=9654> 5151 5152commit 2db713252090cae08f0200fecad4fc25fb64c8b1 5153Author: Eric S. Raymond <esr@thyrsus.com> 5154Date: Sun Jan 14 10:40:00 2007 -0800 5155 5156 Bug #9653: Bad markup in XQueryColor.3x 5157 5158 X.Org Bugzilla #9653 <https://bugs.freedesktop.org/show_bug.cgi?id=9653> 5159 5160commit 9d3ceea4b902e0471824c1e07ad64342b9a1114e 5161Author: Eric S. Raymond <esr@thyrsus.com> 5162Date: Sun Jan 14 10:40:00 2007 -0800 5163 5164 Bug #9652: Bad markup in XDrawArc.3x 5165 5166 X.Org Bugzilla #9652 <https://bugs.freedesktop.org/show_bug.cgi?id=9652> 5167 5168commit 2e7e0748d353d7f53bbd65ec6bf0df8758528ddc 5169Author: Eric S. Raymond <esr@thyrsus.com> 5170Date: Sun Jan 14 10:39:00 2007 -0800 5171 5172 Bug #9651: Bad markup in XcmsColor.3x 5173 5174 X.Org Bugzilla #9651 <https://bugs.freedesktop.org/show_bug.cgi?id=9651> 5175 5176commit c316aaf0aab06951db9dc5c9c1148bfea835d885 5177Author: Eric S. Raymond <esr@thyrsus.com> 5178Date: Sun Jan 14 10:38:00 2007 -0800 5179 5180 Bug #9650: Bad markup in XLoadFont.3x manual page 5181 5182 X.Org Bugzilla #9650 <https://bugs.freedesktop.org/show_bug.cgi?id=9650> 5183 5184commit ca5d9a625ea0965853fa9e74a448b8c29c78ec95 5185Author: Eric S. Raymond <esr@thyrsus.com> 5186Date: Tue Jan 2 10:18:00 2007 -0800 5187 5188 Bug 9523: Markup problems in XQueryExtension.3x 5189 5190 X.Org Bugzilla #9523 <https://bugs.freedesktop.org/show_bug.cgi?id=9523> 5191 5192commit fe713c616e29ba19c179b43c18eca1035079ce18 5193Author: Ian Romanick <idr@us.ibm.com> 5194Date: Tue Aug 21 14:56:33 2007 -0700 5195 5196 Make sure nls/am_ET.UTF-8/Makefile is created by configure. 5197 5198commit e3430616f26b68e1439143cbe10732f3fc329d20 5199Author: Eric S. Raymond <esr@thyrsus.com> 5200Date: Tue Jan 2 08:40:00 2007 -0800 5201 5202 Bug #9516: Markup error in XAllocWMHints.3x 5203 5204 X.Org Bugzilla #9516 <https://bugs.freedesktop.org/show_bug.cgi?id=9516> 5205 5206commit d8fe979fc929833e8c754aed32641786d5a0622b 5207Merge: 21ca953 4ec1723 5208Author: James Cloos <cloos@jhcloos.com> 5209Date: Mon Aug 20 15:34:50 2007 -0400 5210 5211 Merge branch 'master' of ssh://git.freedesktop.org/git/xorg/lib/libX11 5212 5213commit 21ca953337fb221b85345bf35ce1a98a0dcb2bf2 5214Author: James Cloos <cloos@jhcloos.com> 5215Date: Mon Aug 20 15:34:03 2007 -0400 5216 5217 Fix typo 5218 The code <U1000000D> was used where <U10000DC> was obviously intended. 5219 5220 It is possible that <Udiaeresis> should be used instead, if that will 5221 not break anyone’s setup. 5222 5223commit 4ec1723fff729440cd3349c1f95d87d2a6ba89cf 5224Author: James Cloos <cloos@jhcloos.com> 5225Date: Mon Aug 20 15:25:48 2007 -0400 5226 5227 Add compose file for Ethiopic to match new keyboard in xkeyboard-config 5228 From bug report: 5229 5230 https://bugs.freedesktop.org/show_bug.cgi?id=11307 5231 5232commit eff33ae525337ce2026be135a26464c7b1237113 5233Author: James Cloos <cloos@jhcloos.com> 5234Date: Sat Aug 18 17:58:23 2007 -0400 5235 5236 Patch for Catalan locales 5237 From bugzilla bug 10943¹: 5238 5239 There are several Catalan locale codes which presently can 5240 be used in X11 systems; especially after they were accepted 5241 in belocs-locale-data². 5242 5243 In the following patches, I³ add ca_AD, ca_FR and ca_IT Catalan 5244 locale codes. For instance, without this, using ca_AD (actually 5245 a quite used locale⁴) some applications (eg. Emacs or Skype) 5246 cannot display Catalan diacritic marks as you type them. 5247 5248 1] https://bugs.freedesktop.org/show_bug.cgi?id=10943 5249 2] http://lists.debian.org/debian-devel-changes/2005/07/msg01429.html 5250 3] Toni Hermoso Pulido <toniher@softcatala.org> 5251 4] https://launchpad.net/~ubuntu.cat/+members 5252 5253commit 1f980cb7d022f53d0aee9e793b08203fb888e86e 5254Author: James Cloos <cloos@jhcloos.com> 5255Date: Sat Aug 18 17:47:04 2007 -0400 5256 5257 Add additional Euro signs to compose 5258 Inspired by bug 7419¹ make all of: 5259 5260 C=, =C, c=, =c, E=, =E, e=, E= 5261 5262 after <Multi_key> generate € U+20AC EURO SIGN. 5263 5264 1] https://bugs.freedesktop.org/show_bug.cgi?id=7419 5265 5266commit 4b0a14521449dfce8b4347bd17243efd1d3eae2d 5267Author: James Cloos <cloos@jhcloos.com> 5268Date: Sat Aug 18 17:29:08 2007 -0400 5269 5270 Compose fix for Latin-1 (from Debian) 5271 The description from bugzilla bug 7417¹ is: 5272 5273 We've been shipping this patch for some time in Debian now. The 5274 problem description from the patch header is reproduced below. You 5275 may want to note the licensing issue mentioned below, but we've been 5276 shipping it because the method by which this particular patch was 5277 generated and updated was also given below. 5278 5279 This patch by Denis Barbier. 5280 5281 The X11 protocol states that Unicode keysyms are in the range 5282 0x01000100 - 0x0110FFFF. If the result of composing characters is a 5283 Unicode codepoint, X returns the corresponding Unicode keysym, which 5284 is its Unicode codepoint augmented by 0x01000000. Latin-1 5285 characters must not appear with their Unicode codepoints in compose 5286 files, otherwise the returned composed character lies in the range 5287 0x01000000 - 0x010000FF which is not valid. 5288 5289 There are two solutions: either fix composing routines to return 5290 0xZZ instead of 0x010000ZZ (where Z is an hexadecimal digit), or 5291 replace U00ZZ by their corresponding keysyms in compose files. The 5292 latter is more logical and less error prone, so compose files will 5293 be patched. Many applications accept these invalid Unicode keysyms, 5294 but few of them don't, most notably xemacs. Only UTF-8 locales are 5295 affected. 5296 5297 This has been fixed very recently in XFree86 CVS (but not xorg), but 5298 for licensing reasons, this patch is not grabbed. Instead automatic 5299 conversion is performed by: 5300 5301 sed -e '/XK_LATIN1/,/XK_LATIN1/!d' /usr/include/X11/keysymdef.h \ 5302 | grep -v deprecated | grep 0x0 \ 5303 | sed -e 's/0x0/U0/' -e 's/XK_//' \ 5304 | awk '{ printf "s/\\b%s\\b/%s/ig\n", $3, $2; }' > sedfile 5305 for f in nls/*.UTF-8/Compose.pre 5306 do 5307 sed -f sedfile $f > $f.tmp && mv $f.tmp $f 5308 done 5309 5310 [I edited the quoted script to update it for the current location of 5311 the installed keysymdef.h and the current layout of the libX11 5312 repo. -JimC] 5313 5314 I applied the script, not the patch attached to the bugreport. 5315 5316 1] https://bugs.freedesktop.org/show_bug.cgi?id=7417 5317 5318commit 5cf5bc76642bfece7cb5b76faf414bf445f14489 5319Author: James Cloos <cloos@jhcloos.com> 5320Date: Sat Aug 18 17:13:41 2007 -0400 5321 5322 Add some compose sequences 5323 5324 Add some compose sequences from the patch in bug 5371 (attachment 4122). 5325 5326 Cf: 5327 5328 https://bugs.freedesktop.org/show_bug.cgi?id=5371 5329 https://bugs.freedesktop.org/attachment.cgi?id=4122 5330 5331commit d4002e389dd69780dfc7c2f7bd3cb0c57f05d4f8 5332Author: James Cloos <cloos@jhcloos.com> 5333Date: Sat Aug 18 13:57:31 2007 -0400 5334 5335 Fix SMP Compose targets 5336 The compose targets from the SMP (plane 1) were incorrect. 5337 5338 At some point the 0x10000 bit had been lost. 5339 5340commit f1ed3da9a30a1f0264fdc7d1c6466f27fe2a3d7d 5341Author: Jeremy C. Reed <reed@glacier.reedmedia.net> 5342Date: Thu Aug 16 17:37:22 2007 -0500 5343 5344 Fix a mutex reference-counting bug. 5345 5346 I was told that some systems have a much more permissive libpthread. 5347 I was asked to commit this. This is from NetBSD's X source. 5348 (I didn't receive any feedback on xorg list for over two weeks 5349 about this.) 5350 5351commit ac00a44b4875de70382da5a40dd87f976e5b9327 5352Author: Tilman Sauerbeck <tilman@code-monkey.de> 5353Date: Wed Aug 1 20:36:03 2007 +0200 5354 5355 Bumped version to 1.1.3. 5356 5357commit 76fae9cba1e9bdf7f0eb2ff2b90153d622136cf0 5358Author: Joerg Sonnenberger <joerg@netbsd.org> 5359Date: Fri Jul 27 11:15:47 2007 -0700 5360 5361 Fail properly on errors in recursive make. 5362 5363commit 1a18319b3bde08dd9ef69c7cd735a76000cf3177 5364Author: Brice Goglin <Brice.Goglin@ens-lyon.org> 5365Date: Thu Jul 26 23:31:15 2007 +0200 5366 5367 Add missing override parameter in XrmCombineDatabase prototype in the manpage 5368 5369 Reported by Arnaud Giersch <arnaud.giersch@iut-bm.univ-fcomte.fr> 5370 in http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=393434 5371 and https://bugs.freedesktop.org/show_bug.cgi?id=9948 5372 5373 Also add the type of the second argument in XrmMergeDatabases. 5374 5375commit 6f0764d4b56f64786b4980839ca262f10a51af6f 5376Author: Brice Goglin <Brice.Goglin@ens-lyon.org> 5377Date: Thu Jul 26 22:53:52 2007 +0200 5378 5379 Clarify return value of XGetCommand in case of error in the manpage 5380 5381 Reported by Sean Perry <shalehperry@attbi.com> 5382 in http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=133348 5383 and https://bugs.freedesktop.org/show_bug.cgi?id=9828 5384 5385commit b8bef57342632cc2d25580bb7daa3839bae04d89 5386Author: Alan Coopersmith <alan.coopersmith@sun.com> 5387Date: Wed Jul 25 17:44:06 2007 -0700 5388 5389 Include comment/copyright/license for AC_DEFINE_DIR in acinclude.m4 5390 5391commit 590cde811a79375231c59ed8583e02b111ed567c 5392Author: Kean Johnston <kean@armory.com> 5393Date: Thu Jul 19 16:44:20 2007 -0700 5394 5395 Reset hostname when falling back from :0 to hostname/localhost:0 as well 5396 5397commit d334665e619e9db657a2ea2764a8b852401d4a3f 5398Author: Kean Johnston <kean@armory.com> 5399Date: Tue Jul 17 16:34:30 2007 -0700 5400 5401 LOCALCONN fallback changes DisplayString() output, breaks KDE 5402 5403 See <http://lists.freedesktop.org/archives/xorg/2007-July/026443.html> 5404 5405commit 8e76bcf3cafda85058ce5f35f1f81929f4772f72 5406Author: Olivier Blin <blino@mandriva.org> 5407Date: Mon Jun 11 18:32:09 2007 +1000 5408 5409 fix XGetMotionEvents arguments order - Fixes bug 11222 5410 5411commit c2f88cdf5cd9c94b77e5bfdac572b5ac06ab4aa8 5412Author: Jamey Sharp <jamey@minilop.net> 5413Date: Sun Jun 10 16:19:59 2007 -0700 5414 5415 Fix locking in _XimGetWindowEventmask. 5416 5417 Now that XFilterEvent drops the Display lock before invoking callback 5418 functions, _XimGetWindowEventmask is called without the lock held. So 5419 when it called _XGetWindowAttributes, a variant of XGetWindowAttributes 5420 that does not lock the Display, Xlib/XCB would assert: 5421 5422 xcb_xlib.c:50: xcb_xlib_unlock: Assertion `c->xlib.lock' failed. 5423 5424 Should fix Gentoo #156367, Ubuntu #87947, Debian #427296. And others? 5425 5426commit 65f0ab5d46d80d55fc04d4eb14fa05f130eb8b9c 5427Author: Jamey Sharp <jamey@minilop.net> 5428Date: Sun Jun 3 21:41:47 2007 -0700 5429 5430 Move security fixes to the top of NEWS, and fix spacing. 5431 5432 Commit by Josh Triplett and Jamey Sharp. 5433 5434commit a549a258b8fcb1ba9d0c1b01b72967e385f67cab 5435Author: Jamey Sharp <jamey@minilop.net> 5436Date: Sun Jun 3 21:29:40 2007 -0700 5437 5438 Add NEWS item for bugfix in commit e2c1d788d1fe7bd2d34756493951552441e59b8c. 5439 5440 Commit by Josh Triplett and Jamey Sharp 5441 5442commit 5123b77a3d32d3ad479462f319762c328278aed9 5443Author: Jamey Sharp <jamey@minilop.net> 5444Date: Sun Jun 3 21:24:54 2007 -0700 5445 5446 Xlib/XCB: Inline and simplify handle_event, since only process_responses calls it now. 5447 5448 Commit by Josh Triplett and Jamey Sharp. 5449 5450commit 582ca690ea4f3ffd2b94826c4db97229bd3c7238 5451Author: Jamey Sharp <jamey@minilop.net> 5452Date: Sun Jun 3 20:59:12 2007 -0700 5453 5454 Xlib/XCB: Fix _XReadEvents to always enqueue a new event, even if an error occurs 5455 5456 Commit c337f9de7cfd89f983f83956b7457a274dd412f3 broke the invariant that 5457 _XReadEvents always enqueues at least one event even if an error occurred, 5458 because the one call to xcb_wait_for_event would then return an error, not an 5459 event, and nothing else ensured that process_responses would obtain an event. 5460 Fix this by reverting most of c337f9de7cfd89f983f83956b7457a274dd412f3 and 5461 f417570735aac865eb6b576d1ea76b5bfcd8573b and implementing the correct fix. In 5462 process_responses, wait_for_first_event now serves as a flag, cleared when 5463 actually handling an event. 5464 5465 Commit by Josh Triplett and Jamey Sharp. 5466 5467commit e2c1d788d1fe7bd2d34756493951552441e59b8c 5468Author: Jamey Sharp <jamey@minilop.net> 5469Date: Sun Jun 3 17:33:23 2007 -0700 5470 5471 Xlib/XCB: Only remove pending_requests when there are provably no more responses. 5472 5473commit 7a6dbd4b07ca0a49c30ca7a1d2437eafb2e15eab 5474Author: Josh Triplett <josh@freedesktop.org> 5475Date: Sun Jun 3 15:39:39 2007 -0700 5476 5477 Bump version number to 1.1.2, and add NEWS entry for 1.1.2 5478 5479 Signed-off-by: Josh Triplett <josh@freedesktop.org> 5480 5481commit 416f38f2e67ee1979b3d2feac6f06b3670238804 5482Author: Josh Triplett <josh@freedesktop.org> 5483Date: Sun Jun 3 12:13:44 2007 -0700 5484 5485 Revert "Revert "include: don't distribute XlibConf.h"" 5486 5487 This reverts commit 79fa3d8070d95b960ba486f2439225872471dadd. 5488 5489 Re-revert the XlibConf.h change, which prevented distribution, not 5490 installation. 5491 5492commit 79fa3d8070d95b960ba486f2439225872471dadd 5493Author: Josh Triplett <josh@freedesktop.org> 5494Date: Sat Jun 2 22:05:16 2007 -0700 5495 5496 Revert "include: don't distribute XlibConf.h" 5497 5498 This reverts commit c9e28e05ae01ce8a29bea09df759b6271865b44c. 5499 5500 The installed XlibInt.h includes XlibConf.h , so libX11 should ship 5501 XlibConf.h. (Commit c9e28e05ae01ce8a29bea09df759b6271865b44c didn't actually 5502 prevent automake from shipping XlibConf.h, because it used 5503 nodist_x11include_HEADERS rather than nodist_HEADERS.) 5504 5505commit f417570735aac865eb6b576d1ea76b5bfcd8573b 5506Author: Jamey Sharp <jamey@minilop.net> 5507Date: Sat Jun 2 17:59:15 2007 -0700 5508 5509 Xlib/XCB: inline wait_or_poll_for_event, which now had only one caller. 5510 5511 Commit by Josh Triplett and Jamey Sharp. 5512 5513commit c337f9de7cfd89f983f83956b7457a274dd412f3 5514Author: Jamey Sharp <jamey@minilop.net> 5515Date: Sat Jun 2 17:46:41 2007 -0700 5516 5517 Xlib/XCB: Ensure _XReadEvents reads at least one new event and blocks for exactly one event. 5518 5519 Commit by Jamey Sharp and Josh Triplett. 5520 5521commit 7f66c897f04806b75e574b55b48921b48045e3f9 5522Author: Jamey Sharp <jamey@minilop.net> 5523Date: Sat Jun 2 16:43:39 2007 -0700 5524 5525 Update _XReply's copy of _XCBUnlockDisplay's guts. 5526 5527 We introduced this bug in 6b81cbbedfb521ce046b77ee3cc54e884a1dc0c5. 5528 5529 Also add a comment in _XCBUnlockDisplay to discourage this problem from 5530 respawning. 5531 5532 Commit by Josh Triplett and Jamey Sharp. 5533 5534commit 740ead23512f8d2eaafaa69e514f1ebafad475b9 5535Author: Jamey Sharp <jamey@minilop.net> 5536Date: Sat Jun 2 16:01:01 2007 -0700 5537 5538 Xlib/XCB: Avoid re-crashing after _XIOError. 5539 5540 Commit by Josh Triplett and Jamey Sharp. 5541 5542commit 6b81cbbedfb521ce046b77ee3cc54e884a1dc0c5 5543Author: Jamey Sharp <jamey@minilop.net> 5544Date: Sat Jun 2 12:30:30 2007 -0700 5545 5546 Hold XCB's Xlib lock even when only the user lock (XLockDisplay) is held. 5547 5548 An Xlib client can query Display state, such as with NextRequest, while 5549 it holds only the Xlib user lock (between XLockDisplay and 5550 XUnlockDisplay), so XCB requests in other threads should be blocked when 5551 the Xlib user lock is held. 5552 5553 We acquire the lock even when XInitThreads was not called, so that pure 5554 XCB code can use multiple threads even in an otherwise single-threaded 5555 Xlib application. 5556 5557 Commit by Josh Triplett and Jamey Sharp. 5558 5559commit 95523387d619af5b400748898d722e080b5ce1a6 5560Author: Jamey Sharp <jamey@minilop.net> 5561Date: Sat Jun 2 11:57:39 2007 -0700 5562 5563 Allow re-entrant Xlib calls from _XIOError. 5564 5565 Some libraries try to clean up X resources from atexit handlers, _fini, 5566 or C++ destructors. To make these work, the Display lock should be 5567 downgraded to a user lock (as in XLockDisplay) before calling exit(3). 5568 This blocks Xlib calls from threads other than the one calling exit(3) 5569 while still allowing the exit handlers to call Xlib. 5570 5571 This assumes that the thread calling exit will call any atexit handlers. 5572 If this does not hold, then an alternate solution would involve 5573 registering an atexit handler to take over the lock, which would only 5574 assume that the same thread calls all the atexit handlers. 5575 5576 Commit by Josh Triplett and Jamey Sharp. 5577 5578commit 91b02b8064f4e0bcc56019f0722914850008a597 5579Author: Tilman Sauerbeck <tilman@code-monkey.de> 5580Date: Thu May 17 19:07:34 2007 +0200 5581 5582 More constification. 5583 5584commit a4f3841940158351f9424c3f59b305cce877177d 5585Author: Tilman Sauerbeck <tilman@code-monkey.de> 5586Date: Thu May 17 00:29:43 2007 +0200 5587 5588 Constified composite text charset table. 5589 5590commit 0581c0aa6039e6b2abb9f7b0a4f9904d8e01f00e 5591Author: Tilman Sauerbeck <tilman@code-monkey.de> 5592Date: Wed May 16 23:19:22 2007 +0200 5593 5594 Have the compiler fill in hexTable so we don't have to do it at runtime. 5595 5596commit 0e8d9ca47dab0d069e305d5784d05f2ade04f0a8 5597Author: Tilman Sauerbeck <tilman@code-monkey.de> 5598Date: Wed May 16 19:36:23 2007 +0200 5599 5600 More constification. 5601 5602commit 6d2bed8f04942b4de086a519ac693e729c9fdeea 5603Author: Tilman Sauerbeck <tilman@code-monkey.de> 5604Date: Wed May 16 19:18:20 2007 +0200 5605 5606 Constify and clean up token table. 5607 5608commit 6c508eab5df5d517f7e4cbe6087308cd53a564b2 5609Author: Tilman Sauerbeck <tilman@code-monkey.de> 5610Date: Wed May 16 18:24:42 2007 +0200 5611 5612 Constified more tables. 5613 5614commit e699c4231c205ef00d687b6412308d031b99806b 5615Author: Tilman Sauerbeck <tilman@code-monkey.de> 5616Date: Wed May 16 18:01:23 2007 +0200 5617 5618 Constified error list. 5619 5620commit a68a1cd7cb990ba276fbc36a7591044d78b3d3c1 5621Author: Peter Hutterer <peter@cs.unisa.edu.au> 5622Date: Tue May 15 16:54:01 2007 +0930 5623 5624 Add XGenericEvent definition and handling for long events. 5625 5626commit c76d30253f1483ac8200ad5c032a818907e65030 5627Author: Jan Willem Stumpel <jstumpel@planet.nl> 5628Date: Fri May 4 12:00:49 2007 -0700 5629 5630 Update el_GR.UTF-8/Compose.pre to match changes in xkeyboard-config cvs 5631 5632 Cf: 5633 5634 https://bugs.freedesktop.org/show_bug.cgi?id=10851 5635 https://bugs.freedesktop.org/show_bug.cgi?id=10824 5636 http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=386385 5637 5638 The greek keyboard definition was changed to replace dead_horn and 5639 dead_ogonek with U0313 COMBINING COMMA ABOVE (aka Psili) and U0314 5640 COMBINING REVERSED COMMA ABOVE (aka Dasia). 5641 5642 This patch modifies the Greek Compose.pre to match. 5643 5644 It is generated by the script Jan Willem Stumpel <jstumpel@planet.nl> 5645 posted to 386385@bugs.debian.org: 5646 5647 #!/usr/bin/perl 5648 while (<>) { 5649 print $_; 5650 if (/dead_horn/) { 5651 s/dead_horn/U0313/; 5652 print $_; 5653 } 5654 elsif (/dead_ogonek/) { 5655 s/dead_ogonek/U0314/; 5656 print $_; 5657 } 5658 } 5659 5660commit a48386ce6b5f8fd2d9dc11a966c9bf5da59f3831 5661Author: Magnus Kessler <Magnus.Kessler@gmx.net> 5662Date: Tue May 1 15:20:08 2007 +0200 5663 5664 Switched function definitions from K&R to ANSI style. 5665 5666commit 605d357074d556a05a3fba2e85cbea36a3204248 5667Author: Tilman Sauerbeck <tilman@code-monkey.de> 5668Date: Tue May 1 14:47:03 2007 +0200 5669 5670 Tweaked configure output about the man pages suffix. 5671 5672commit 9824b40d2af4ca2376512c1be7743da0d5065900 5673Author: Alan Coopersmith <alan.coopersmith@sun.com> 5674Date: Sat Apr 28 00:42:18 2007 -0700 5675 5676 Fix typo in nroff macro in XkbAddGeomOverlayKey.man 5677 5678commit f93849dcc68bd5042ea0884e5190dc7c35b31d68 5679Author: Alan Coopersmith <alan.coopersmith@sun.com> 5680Date: Sat Apr 28 00:30:55 2007 -0700 5681 5682 Protect C comments and #defines in XKB man pages from being mangled by cpp 5683 5684commit f2f27d4763c7665e422fab10b96b4cf5ad6c0a6f 5685Author: Alan Coopersmith <alan.coopersmith@sun.com> 5686Date: Sat Apr 28 00:14:50 2007 -0700 5687 5688 Add Makefile to process/install XKB man pages 5689 5690commit d9954c6f6f3a8c406b946acd0d034ff83c656156 5691Author: Dennis Arellano <Dennis.Arellano@Sun.COM> 5692Date: Thu Aug 19 00:00:00 1999 -0700 5693 5694 Add man pages for XKB API's 5695 5696 Man pages originally written for X11R6.4 integration to Solaris 7 11/99 5697 Sun bug id 4258344: Add new XKB API manpages for 6.4 upgrade 5698 <http://bugs.opensolaris.org/bugdatabase/view_bug.do?bug_id=4258344> 5699 5700 (Volunteer needed to convert prototypes in man pages to ANSI C style...) 5701 5702commit f640a49b5e2ebf29f9d655df544c63bf826f619a 5703Author: Tilman Sauerbeck <tilman@code-monkey.de> 5704Date: Fri Apr 20 18:39:59 2007 +0200 5705 5706 Markup tweak for XOpenIM. 5707 5708commit e972b0bb255af4f3258217852542faf5afa60b28 5709Author: Julien Cristau <jcristau@debian.org> 5710Date: Fri Apr 20 18:35:09 2007 +0200 5711 5712 Bug #9695: Fixed a few argument types in the XOpenIM manpage. 5713 5714commit b4e2276f329fa42397cb8609cfcd34ebafd3d96b 5715Author: Julien Cristau <jcristau@debian.org> 5716Date: Fri Apr 20 18:28:52 2007 +0200 5717 5718 Bug #9697: Fixed documentation of XVisualInfo struct. 5719 5720 The "depth" member was said to be unsigned int, but it's signed. 5721 5722commit 4068f3dae01c630f825002673b1d3a047ad61863 5723Author: Julien Cristau <jcristau@debian.org> 5724Date: Fri Apr 20 16:41:21 2007 +0200 5725 5726 Bug #9696: refer to XDefineCursor() instead of XDefineCusor(). 5727 5728commit 603c2f88d4e57ce1a3c16e8b6246866e6edd8fa8 5729Author: Tilman Sauerbeck <tilman@code-monkey.de> 5730Date: Sat Apr 7 14:42:55 2007 +0200 5731 5732 Use unistd.h to get getresuid() and friends. 5733 5734 This works since we now have _GNU_SOURCE defined. 5735 5736commit 0300f295bbd3a0c7c46baac8e0a27aeaf53c9d9b 5737Author: Tilman Sauerbeck <tilman@code-monkey.de> 5738Date: Sat Apr 7 14:27:12 2007 +0200 5739 5740 Bug #10562: Define _GNU_SOURCE on glibc systems. 5741 5742commit a225a0be48770beb689d5ac5da97073634f7deab 5743Author: Tilman Sauerbeck <tilman@code-monkey.de> 5744Date: Fri Apr 6 12:46:25 2007 +0200 5745 5746 For nls/*.pre, allow people to comment lines by starting them with '##'. 5747 5748 This fixes a bunch of cpp warnings from nls/en_US.UTF-8/Compose.pre. 5749 Fixing that file would have been a larger diff, and using ## may be 5750 nicer to use anyway. 5751 5752commit 1c75a9479011e5f1ad01c950628d0ef5a302d8b6 5753Author: Tilman Sauerbeck <tilman@code-monkey.de> 5754Date: Fri Apr 6 11:59:31 2007 +0200 5755 5756 Bug #10475: Fixed lots of char*/const char* mixups. 5757 5758 I didn't fix all of them, as that would require touching 5759 public headers. 5760 5761commit 680dd50193b5b3fcabdd3f1fcbd6a889d5a95c54 5762Author: Matthias Hopf <mhopf@suse.de> 5763Date: Thu Apr 5 11:53:18 2007 +0200 5764 5765 Fix 64bit issues with reallocation. 5766 5767commit 4d38aeaca42d0bdfe34a833a142ee4d895de03bf 5768Author: Tilman Sauerbeck <tilman@code-monkey.de> 5769Date: Wed Apr 4 18:41:18 2007 +0200 5770 5771 Fixed a few warnings. 5772 5773commit 7dc7ef398b6ad90ccd1680ed9cd1cfdd47312f5a 5774Author: Matthieu Herrb <matthieu@roadrock.(none)> 5775Date: Tue Apr 3 15:39:52 2007 +0200 5776 5777 Multiple integer overflows in the XGetPixel() and XInitImage functions 5778 5779 CVE-2007-1667 5780 5781commit 0284b144340a455a4b5b5011d81ac5a610372291 5782Author: David Baron <dbaron@dbaron.org> 5783Date: Fri Mar 30 17:07:46 2007 +0200 5784 5785 Bug #7703: Fixed XSetSizeHints() et al wrt use of uninitialized data. 5786 5787 Now only those fields of the respective hint struct are set that 5788 are actually valid in the input data. 5789 The changed functions are: 5790 XSetSizeHints(), XSetWMHints() and XSetWMSizeHints(). 5791 5792commit 0994faa0c76c45b106442db461b8a30a3e1c9395 5793Author: Tilman Sauerbeck <tilman@code-monkey.de> 5794Date: Thu Mar 29 17:31:25 2007 +0200 5795 5796 Fixed the change from the previous SendEvent commit. 5797 5798 Testing a different patch than the one you commit is bad, right? 5799 5800commit 398d75528a84f4b8414eb0e363cf53b1b16f6fdf 5801Author: Tilman Sauerbeck <tilman@code-monkey.de> 5802Date: Wed Mar 28 22:23:44 2007 +0200 5803 5804 Bug #10292: Fixed a memory leak related to XOpenDisplay() in the XCB code. 5805 5806commit ab0bcd07957cecc8e7c0e75d5160a625e91264fe 5807Author: David Baron <dbaron@dbaron.org> 5808Date: Wed Mar 28 22:21:40 2007 +0200 5809 5810 Bug #7713: Initialize all of the event's fields before sending it. 5811 5812commit bc80f9fe3ccce40ee41246b97470c4f0519756ad 5813Author: Julien Cristau <jcristau@debian.org> 5814Date: Sun Mar 18 13:14:48 2007 +0100 5815 5816 Bug #9279: Fixed a file descriptor leak. 5817 5818commit c9e28e05ae01ce8a29bea09df759b6271865b44c 5819Author: Daniel Stone <daniel@fooishbar.org> 5820Date: Sat Dec 16 00:45:19 2006 +0200 5821 5822 include: don't distribute XlibConf.h 5823 5824 Since XlibConf.h is built by configure, don't distribute it. 5825 5826commit dd1705ced2cac6b4b6b21e79272fcf9bed4bf376 5827Merge: 129bbb9 769b985 5828Author: Jeremy C. Reed <reed@glacier.reedmedia.net> 5829Date: Thu Dec 14 14:23:20 2006 -0600 5830 5831 Merge branch 'master' of git+ssh://git.freedesktop.org/git/xorg/lib/libX11 5832 5833commit 129bbb9f9114a571556fa3a24f15ba58a5cdb2de 5834Author: Jeremy C. Reed <reed@glacier.reedmedia.net> 5835Date: Thu Dec 14 14:21:19 2006 -0600 5836 5837 For NetBSD, define the XTHREADLIB and XTHREAD_CFLAGS. 5838 5839commit 769b9854f7eb1d6d20dd0b4a1c1215ad8e1b77b6 5840Author: Daniel Stone <daniel@fooishbar.org> 5841Date: Wed Dec 6 18:53:00 2006 +0200 5842 5843 Makefile.am: make ChangeLog hook safer 5844 5845 Make ChangeLog hook as safe as possible. 5846 (cherry picked from f5d6a3d24095c7ffed86705995d0874c885e7676 commit) 5847 5848commit 8a8185a649e93b90ffa820387ffdca831227f5a9 5849Author: Josh Triplett <josh@freedesktop.org> 5850Date: Thu Nov 30 18:33:13 2006 -0800 5851 5852 Add autogen.sh to EXTRA_DIST. 5853 5854commit efe817f95ef8d05e863c83147e903140bc860de4 5855Author: Jamey Sharp <jamey@minilop.net> 5856Date: Thu Nov 30 17:58:35 2006 -0800 5857 5858 Release libX11 1.1.1. 5859 5860commit f637a5b03164263a3af2e644cf655e52b015f1bb 5861Author: Ross Combs <rocombs@cs.nmsu.edu> 5862Date: Sat Nov 25 14:45:17 2006 -0800 5863 5864 Debian bug #354315: Clarify return value in XGetWindowAttributes man page 5865 5866 This man page does not discuss the actual return values of the 5867 function, but says they are of type "Status". One might assume 5868 that this means you could compare it with the "Success" macro. 5869 One would be wrong. 5870 5871 The X functions seem to have two three types representing status. 5872 If it is an "int" there are a number of error codes or "Success" 5873 which can be compared against. If it is a bool, the result can be 5874 compared with "True" or "False". If the return type is "Status" it 5875 appears that the return type is either 0 or 1. Unfortunately the 5876 value for Success is zero, so it is important to distinguish 5877 between the first two types of return values and the third; 5878 otherwise the conditional will be inverted. 5879 5880 XGetWindowAttributes() is one of the functions which returns zero 5881 for failure. The man page should make this clear. 5882 5883commit c6a0b0f18ed1242eeb908f5cf767ab8381edd456 5884Author: Jamey Sharp <jamey@minilop.net> 5885Date: Sat Nov 25 14:23:45 2006 -0800 5886 5887 Bug #9154: Always process an event for _XReadEvents, even if an error occurs 5888 5889 Previously, process_responses (in the wait_for_first_event case called 5890 from _XReadEvents) considered any return from xcb_wait_for_event 5891 sufficient to think it had processed an event. If xcb_wait_for_event 5892 returned an error, and no more events occurred before process_responses 5893 called xcb_poll_for_event, process_responses would try to return with 5894 dpy->head NULL, and would fail an assertion for the _XReadEvents 5895 postcondition. Now, process_responses continues using xcb_wait_for_event 5896 until it gets an event. 5897 5898commit d56e78acce9b2aa1dd1bf172afedaa3bccd5e1c8 5899Author: Tilman Sauerbeck <tilman@code-monkey.de> 5900Date: Sat Nov 25 05:29:31 2006 -0800 5901 5902 Bug #9153: Fix access to freed memory. 5903 5904 The fix for bug #8622 introduced a smaller bug where _XReply would 5905 read memory shortly after freeing it. This patch caches the needed 5906 value in a stack-allocated variable before the heap-allocated memory 5907 is freed. 5908 5909commit 934ca763bbc0dd7ae460469bfc000ba101602bcc 5910Author: Josh Triplett <josh@freedesktop.org> 5911Date: Fri Nov 24 19:57:58 2006 -0800 5912 5913 libx11 doesn't use inputproto in public headers; don't require it in x11.pc 5914 5915 Based on a Debian patch. 5916 5917commit 4255997ef2d92740d51f6e63e9eabcfa089683f0 5918Author: Josh Triplett <josh@freedesktop.org> 5919Date: Thu Nov 23 07:19:32 2006 -0800 5920 5921 Release libX11 1.1 5922 5923commit a1168e11ec9377307c51a7271faec3bf88a63a66 5924Author: Jamey Sharp <jamey@minilop.net> 5925Date: Tue Nov 21 17:52:34 2006 -0800 5926 5927 Add note in man-page that XListFontsWithInfo is not thread-safe. 5928 5929 _XReply drops the Display lock, so the value of dpy->request may change 5930 before _XReply is called again. 5931 5932 I discovered this by inspection a year or two ago. I'm pretty confident 5933 in the claim, and nobody has come up with an argument for why it's safe 5934 despite appearances. 5935 5936commit 67abe024268c6b1fdee516e5d3a046ccffd7e80a 5937Author: Jamey Sharp <jamey@minilop.net> 5938Date: Sat Nov 18 15:39:26 2006 -0800 5939 5940 Bug #8622: Fix response processing order for threaded apps 5941 5942 Previously, process_responses (the common code for _XReply, 5943 _XReadEvents, and _XEventsQueued) took the current request sequence 5944 number as an argument, and did some highly complicated processing to 5945 attempt to process responses in order across threads. This didn't 5946 actually work. 5947 5948 Now, process_responses handles responses in order, by adding condition 5949 variables to the list of outstanding requests in 5950 dpy->xcb->pending_requests, and blocking on them when those requests 5951 should get processed to allow _XReply to process them; if actually 5952 called from _XReply, it returns when _XReply's request should get 5953 processed. _XReply broadcasts on the condition variable after it has 5954 read its reply and re-acquired the display lock. 5955 5956 Another great commit brought to you by Jamey Sharp, Josh Triplett, the 5957 Gobby collaborative text editor, conspy, and ridiculous amounts of SSH 5958 forwarding. 5959 5960 Signed-off-by: Josh Triplett <josh@freedesktop.org> 5961 Signed-off-by: Jamey Sharp <jamey@minilop.net> 5962 5963commit 941f02ede63baa46f93ed8abccebe76fb29c0789 5964Author: Lars Knoll <lars@trolltech.com> 5965Date: Wed Nov 8 12:17:41 2006 -0800 5966 5967 Don't hold the display lock around callbacks to the application. 5968 5969 This fixes an XCB locking assertion failure, particularly with emacs. 5970 5971commit e494ecaac1ec8a22bd9a85f800fca74d02e9d358 5972Author: Diego 'Flameeyes' Pettenò <flameeyes@gentoo.org> 5973Date: Tue Nov 7 09:32:00 2006 -0800 5974 5975 Add xcb-xlib dependency to x11.pc when built against XCB. 5976 5977commit 2302008a3793eb4df8ede777d54fe06505c47eaf 5978Author: Eric Anholt <eric@anholt.net> 5979Date: Mon Nov 6 17:11:42 2006 -0800 5980 5981 XCB: Allocate the right amount of memory for dpy->lock_fns. 5982 5983 Fixes a crash I was experiencing on startup of anything using gdk. 5984 5985commit 5f860655be88108b03ccd97470a0814819254bf0 5986Author: Jamey Sharp <jamey@minilop.net> 5987Date: Thu Nov 2 17:55:31 2006 -0800 5988 5989 Release libX11 1.1 RC2 (1.0.99.2). 5990 5991commit a6f4bbf7b1d725b0f04bd660f57b861a76b19831 5992Author: Benno Schulenberg <bensberg@justemail.net> 5993Date: Sun Oct 29 03:10:30 2006 +0300 5994 5995 nls (en_US): remove long compositions that override shorter (bug #2286) 5996 Remove long compositions that override (or get overriden by) later shorter 5997 compositions, e.g. a four-key compose sequence that gets overriden by a 5998 later three-key compose sequence. 5999 6000commit 0280bf11ef88673a9b5bba3a91a599260f1f0949 6001Author: Benno Schulenberg <bensberg@justemail.net> 6002Date: Sun Oct 29 03:08:36 2006 +0300 6003 6004 nls: remove shadowed compose entries (bug #2286) 6005 Remove compose entries shadowed by others later on. 6006 6007commit d118f2b1ef10997194b281524177dea7396da7dd 6008Author: Benno Schulenberg <bensberg@justemail.net> 6009Date: Sun Oct 29 03:07:15 2006 +0300 6010 6011 nls: remove duplicate compose entries (bug #2286) 6012 Remove a bunch of duplicate entries from various Compose files. 6013 6014commit 5e1cc2fe20e5904ca1e05a4cb7be13d450a593bb 6015Author: Caolan McNamara <caolanm@redhat.com> 6016Date: Sun Oct 29 02:46:15 2006 +0300 6017 6018 XKB geometry: fix leaks in GetKeyboardByName (bug #8099) 6019 Don't leak the name and value of every property we parse, as well as the 6020 name of every colour. 6021 6022commit 686bb8b35acf6cecae80fe89b2b5853f5816ce19 6023Author: Matthias Hopf <mhopf@suse.de> 6024Date: Wed Oct 18 14:25:04 2006 +0200 6025 6026 Fix double open of compose file. 6027 6028 Issue found by Kees Cook <kees@canonical.com>. 6029 6030commit d3e65cb8cddf08913d83c9df2bb9b1517f2ad3a8 6031Author: Jamey Sharp <jamey@minilop.net> 6032Date: Sat Oct 14 21:25:10 2006 -0700 6033 6034 XCB: check for and handle I/O errors in _XGetXCBBuffer. 6035 6036commit 256eba6b40c5f811a03b04abf5f85f728ee3ab5d 6037Author: Jamey Sharp <jamey@minilop.net> 6038Date: Wed Oct 11 00:06:50 2006 -0700 6039 6040 XKB bugfix: SyncHandle must be called after UnlockDisplay, not before. 6041 6042commit 1eedf1bd033e496843cfde42ae4ae5a119298605 6043Author: Jamey Sharp <jamey@minilop.net> 6044Date: Tue Oct 10 23:03:28 2006 -0700 6045 6046 Add correct Display locking to XKB functions. 6047 6048 Some XKB functions didn't correctly call LockDisplay or UnlockDisplay. 6049 This patch fixes at least some instances of that problem. 6050 6051 Thanks to Magnus Kessler <Magnus.Kessler@gmx.net> for finding these bugs 6052 and proposing a fix, which this patch is based on. 6053 6054commit e17c2cbe9fbaa1600d4b9463ec800a874b0d87cd 6055Author: David Nusinow <dnusinow@debian.org> 6056Date: Tue Oct 10 22:11:05 2006 -0400 6057 6058 Dynamically generate internal manpage section using __libmanpagesuffix__ so that it actually matches the section if you don't use 3X11 6059 6060commit e53557da969b706dbc843f6fde3db31ffe382e0f 6061Author: Jamey Sharp <jamey@minilop.net> 6062Date: Sat Oct 7 21:00:36 2006 -0700 6063 6064 Release libX11 1.1 RC1 (1.0.99.1). 6065 6066commit bf237409c5fce32c557d298f62f44d456c2b5bc8 6067Merge: ba47719 2d426d1 6068Author: Jamey Sharp <jamey@minilop.net> 6069Date: Sat Oct 7 21:07:16 2006 -0700 6070 6071 As XCB support is about to be released in libX11, stable is now subsumed by master. 6072 6073commit ba477191c67ce93e61423cc1abe35275704cce50 6074Author: Jamey Sharp <jamey@minilop.net> 6075Date: Sat Oct 7 03:48:13 2006 -0700 6076 6077 XCB: Don't rely on having the definition of struct xcb_setup_t available. 6078 6079commit 117b55cbd0b0ce51362df88363ed83d44a493ac7 6080Author: Jamey Sharp <jamey@minilop.net> 6081Date: Fri Oct 6 16:27:31 2006 -0700 6082 6083 xcb_poll_for_event no longer takes an 'int *error' out-parameter. 6084 6085commit caaa8e8a55e837b3585c1dee7bef194fc4c79d16 6086Author: Josh Triplett <josh@freedesktop.org> 6087Date: Fri Oct 6 16:26:11 2006 -0700 6088 6089 Actually ship Xxcbint.h 6090 6091commit 7b027e53b5e393082f4f515c8ba18077eb97163f 6092Author: Josh Triplett <josh@freedesktop.org> 6093Date: Fri Oct 6 16:25:50 2006 -0700 6094 6095 Clean ChangeLog only in "make maintainer-clean", not "make clean" 6096 6097 ChangeLog requires a git repo to generate; make clean and make distclean 6098 shouldn't get rid of it. 6099 6100commit cab22e02e78b3e5b8a73d1cd55cf6686426b47e0 6101Author: Josh Triplett <josh@freedesktop.org> 6102Date: Fri Oct 6 16:24:58 2006 -0700 6103 6104 Add ChangeLog and "make dist"-generated files to .gitignore 6105 6106commit e4c7cfdee4a40e466c0c6b370cabd432e9e855a0 6107Author: Josh Triplett <josh@freedesktop.org> 6108Date: Fri Oct 6 15:53:27 2006 -0700 6109 6110 Add manual pages for XGetXCBConnection and XSetEventQueueOwner 6111 6112commit 688224cea95e453f94c5a602dc6fce84bc93dfc0 6113Author: Josh Triplett <josh@freedesktop.org> 6114Date: Fri Oct 6 13:41:16 2006 -0700 6115 6116 Remove unnecessary prototype for _XFreeDisplayStructure in xcb_disp.c 6117 6118commit ab728ca372288d0db1b486c265e34c1376f29104 6119Author: Josh Triplett <josh@freedesktop.org> 6120Date: Fri Oct 6 12:36:39 2006 -0700 6121 6122 XCL is dead; long live Xlib/XCB 6123 6124 Rename all instances of "XCL" to Xlib/XCB-derived names. 6125 6126 The only user-visible change: rename the include file <X11/xcl.h> to 6127 <X11/Xlib-xcb.h>; programs will need to change their #include lines to match. 6128 6129 Remove the XCL cast inlines from Xlib-xcb.h. 6130 6131commit 5b73093203039d307eb7ab3845c3ced207e9e26c 6132Author: Josh Triplett <josh@freedesktop.org> 6133Date: Fri Oct 6 11:33:49 2006 -0700 6134 6135 Add XCB developers to AUTHORS 6136 6137commit 1cb71ff139276a0a58c60ea5f261f64b94706b9b 6138Author: Josh Triplett <josh@freedesktop.org> 6139Date: Fri Oct 6 11:21:28 2006 -0700 6140 6141 Fix email addresses in README 6142 6143commit 12f038669278019594ca0ed53dadcf4e84092422 6144Author: Jamey Sharp <jamey@minilop.net> 6145Date: Fri Oct 6 02:13:05 2006 -0700 6146 6147 XCB: Handle all responses in order of monotonically increasing sequence number. 6148 6149commit f392680273278b43079302206897f794e60f3c70 6150Author: Josh Triplett <josh@freedesktop.org> 6151Date: Fri Oct 6 01:11:08 2006 -0700 6152 6153 Actually install x11-xcb.pc, and ship x11-xcb.pc.in 6154 6155commit f1fcad2e3fd17aaf1294f1d8e9f406fd5b32a863 6156Author: Jamey Sharp <jamey@minilop.net> 6157Date: Thu Oct 5 18:32:29 2006 -0700 6158 6159 XCB: correctly handle failure to connect to X server. 6160 6161commit e754b3b078d556c7861da56aad47d244e9199e06 6162Author: Josh Triplett <josh@freedesktop.org> 6163Date: Thu Oct 5 17:44:22 2006 -0700 6164 6165 Split public Xlib/XCB functions into libX11-xcb 6166 6167 We can never change the libX11 soname, and we don't want to commit to never 6168 changing the public Xlib/XCB functions, so split them into a separate library 6169 libX11-xcb. This also means that a program linked solely against libX11 6170 should work with either Xlib or Xlib/XCB, which will make life easier for 6171 package maintainers. 6172 6173 Signed-off-by: Josh Triplett <josh@freedesktop.org> 6174 Acked-by: Jamey Sharp <jamey@minilop.net> 6175 6176commit ffd367f708b295abaedf3a23a1bfd4710d171d6f 6177Author: Jamey Sharp <jamey@minilop.net> 6178Date: Wed Oct 4 17:16:46 2006 -0700 6179 6180 No longer #include Xmd from xcl.h: we do not need it. 6181 6182commit 3aff149d42ba8ed620091971b3766bdf96c62aaf 6183Author: Jamey Sharp <jamey@minilop.net> 6184Date: Wed Oct 4 16:58:32 2006 -0700 6185 6186 XCB: Revert locking to simple wrapper around libX11's normal locks. 6187 6188 No more recursive mutexes, no more banging XCB's I/O lock in-place, and 6189 reduces the differences between the previous stable release and an 6190 XCB-enabled one. Sadly, Xlib's pluggable thread functions work again 6191 too, now. I apologize to the world. 6192 6193commit 8ff122fb529bdb1c2b9a86b12d06b6da1b35d708 6194Author: Jamey Sharp <jamey@minilop.net> 6195Date: Mon Sep 25 04:54:52 2006 -0700 6196 6197 Link explicitly against XCB's Xlib compatibility functions. 6198 6199commit bde3cd123d65a2f36ee0c417f5f231b7e01d0671 6200Author: Jamey Sharp <jamey@minilop.net> 6201Date: Mon Sep 25 04:13:20 2006 -0700 6202 6203 libxcb now installs header files in <xcb>, not <X11/XCB>. 6204 6205commit 87d00207f5a1f25a45a153618739cd6481814f89 6206Author: Ian Osgood <iano@quirkster.com> 6207Date: Sun Sep 24 23:39:01 2006 -0700 6208 6209 Track XCB's "Great Renaming". 6210 6211commit 85a5e98dff9b7752fae157fad9b8c9825cb0efab 6212Author: Jamey Sharp <jamey@minilop.net> 6213Date: Tue Sep 12 23:02:42 2006 -0700 6214 6215 Quit using XCBGetQueuedRequestRead. 6216 6217commit a61936fc4e9bd93b108764bbacd5b8f786e51915 6218Author: Tollef Fog Heen <tfheen@err.no> 6219Date: Wed Aug 30 00:05:54 2006 +0300 6220 6221 nls: use _XlcUtf8Loader for en_US (bug #7982) 6222 Use _XlcUtf8Loader instead of _XlcUnicodeLoade,r bringing it into line with 6223 every other locale. 6224 6225commit abcc7e1865cdfbd591f6520cfe4257f0b0b1c03e 6226Author: Alan Coopersmith <alan.coopersmith@sun.com> 6227Date: Wed Aug 23 18:49:30 2006 -0700 6228 6229 When opening display, if LOCALCONN fails, fall back to UNIXCONN, then TCPCONN 6230 6231 Port to X11R7 of Sun bug fix 4061225 by Alex Chen for X11R6 - when failing to 6232 connect on a named pipe, try a Unix socket first, to better support people who 6233 replace their X servers with ones that don't support named pipe transport. 6234 <http://bugs.opensolaris.org/bugdatabase/view_bug.do?bug_id=4061225> 6235 6236commit 1ddc44c1cada7e926bd4787406444ce7c36b61e1 6237Author: Mark Brown <mark.brown@sun.com> 6238Date: Thu Jul 27 19:17:10 2006 -0700 6239 6240 Sun bug 1149809: Document event delivery when grab is terminated. 6241 6242commit 171107b03ac89d94f9006c7cda242aeefb9ecd16 6243Author: Dennis Arellano <Dennis.Arellano@Sun.COM> 6244Date: Thu Jul 27 18:47:06 2006 -0700 6245 6246 Sun bug 4091271: XGetWindowProperty is missing a crucial prop_return description 6247 6248 Document that 32-bit format properties are always returned in arrays of type 6249 long, even on systems where long is 64-bits. 6250 <http://bugs.opensolaris.org/bugdatabase/view_bug.do?bug_id=4091271> 6251 6252commit 8309efe6550877cd0bf22979904b3f6bd3e6cffa 6253Author: Alan Coopersmith <alan.coopersmith@sun.com> 6254Date: Mon Jul 24 15:52:00 2006 -0700 6255 6256 Add support for "make lint" to check code with lint/sparse/etc. 6257 6258commit 931e02fbd1acd09aae2b0954c34342c86c72dff6 6259Author: Alan Coopersmith <alan.coopersmith@sun.com> 6260Date: Mon Jul 24 15:50:52 2006 -0700 6261 6262 ANSIfy some static function definitions 6263 6264commit 20b7abcaac324d90454de63f32f4a2b398e69e63 6265Author: Alan Coopersmith <alan.coopersmith@sun.com> 6266Date: Mon Jul 24 15:01:40 2006 -0700 6267 6268 Fix sparse warning: Using plain integer as NULL pointer 6269 6270commit d158ab29930513c4097f5b67e7bea08ed2bfd62c 6271Author: Alan Coopersmith <alan.coopersmith@sun.com> 6272Date: Mon Jul 24 14:00:24 2006 -0700 6273 6274 Remove unused variable 6275 6276commit 30377000375bdb958042dcb1f38503c94ef21eaf 6277Author: Eric Anholt <anholt@FreeBSD.org> 6278Date: Fri Jul 21 18:55:36 2006 -0400 6279 6280 Bug #7188: Fix the documentation of XUrgencyHint (not UrgencyHint). 6281 6282commit 4eba45879aea4e415ab550ee56b900d060099110 6283Author: Matthieu Herrb <matthieu.herrb@laas.fr> 6284Date: Sun Jul 16 10:55:39 2006 +0200 6285 6286 set GIT_DIR=${srcdir}/.git for git-log 6287 6288commit 2d426d1f2608fedb77bd7d010dabece76b8d4a60 6289Author: Aaron Plattner <aplattner@nvidia.com> 6290Date: Tue Jul 11 13:27:49 2006 -0700 6291 6292 Add a .PHONY to ensure the ChangeLog isn't stale. 6293 6294 Setting the ChangeLog rule as phony forces it to be re-run even when the 6295 ChangeLog file already exists. Research indicates .PHONY is portable to BSD and 6296 Solaris make. 6297 (cherry picked from b8a98809ed81e1226775e6447ef219ffc01334b5 commit) 6298 6299commit b8a98809ed81e1226775e6447ef219ffc01334b5 6300Author: Aaron Plattner <aplattner@nvidia.com> 6301Date: Tue Jul 11 13:27:49 2006 -0700 6302 6303 Add a .PHONY to ensure the ChangeLog isn't stale. 6304 6305 Setting the ChangeLog rule as phony forces it to be re-run even when the 6306 ChangeLog file already exists. Research indicates .PHONY is portable to BSD and 6307 Solaris make. 6308 6309commit 8f2be66089b88e4ed6acb0211ea107f4bb910bd3 6310Author: Mayank Jain <majain@redhat.com> 6311Date: Tue Jul 11 19:42:47 2006 +0100 6312 6313 add Indian language locales 6314 Add as, kn, ml, or, ur, and te locales. 6315 6316commit a92eb6785699bbc9c6c3813f6af3bb9431a3f6b0 6317Author: Matthias Hopf <mhopf@suse.de> 6318Date: Tue Jul 4 12:16:30 2006 +0200 6319 6320 Fix for autoconf 2.60 issue. 6321 6322 Updated AC_DEFINE_DIR. 6323 Reverted datarootdir change. 6324 6325commit 644f4828b15bce42b597eb123ba0bbc372c46c03 6326Author: Keith Packard <keithp@neko.keithp.com> 6327Date: Sat Jul 1 21:31:23 2006 -0700 6328 6329 Work around recent autoconf (2.59?) changes in directory expansion. 6330 6331 Recent autoconf versions have changed how directory names are managed in the 6332 configure.ac script; automatic 'eval' invocations now occur as a part of the 6333 AC_DEFINE_DIR macro which make it imperative that AC_DEFINE_DIR be executed 6334 before the variables are used in further macro definitions. Also, ${datadir} 6335 is apparantly an old name for ${datarootdir} as ${datadir} doesn't get 6336 expanded correctly by AC_DEFINE_DIR. This looks like an autoconf bug, but it 6337 is easy to work around by just using ${datarootdir} instead of ${datadir}. 6338 6339commit be70a31229aa106aff0a09d78c00812682cd3475 6340Author: Keith Packard <keithp@neko.keithp.com> 6341Date: Sat Jul 1 01:56:05 2006 -0700 6342 6343 Xlib/XCB: handle 32-bit sequence wrap. 6344 6345 Replace broken sequence compares with XCB_SEQUENCE_COMPARE (copied from 6346 XCB). 6347 Account for XCB sequence 0 handling. 6348 6349commit 99c711707ad08e1396e123b1c7df687c560a489a 6350Author: Donnie Berkholz <spyderous@gentoo.org> 6351Date: Thu Jun 29 19:43:20 2006 -0700 6352 6353 Bump version to 1.0.3. 6354 6355commit cde3c0dd72af2b490e80cffca962e3487dd31be4 6356Author: Donnie Berkholz <spyderous@gentoo.org> 6357Date: Thu Jun 29 19:39:36 2006 -0700 6358 6359 Bug #7349: Missed one of the setuid fixes. 6360 (cherry picked from e9614c963b532f46a7932c2305a4b177a996a222 commit) 6361 6362commit df3fef8983d96c59d481c4cdaf1f271d54a116d2 6363Author: Matthias Hopf <mhopf@suse.de> 6364Date: Thu Jun 29 18:59:57 2006 +0200 6365 6366 Update to final Compose cache directory location. 6367 (cherry picked from abda4d223e9cce9ac6e7b5d82a5680d9a502e52a commit) 6368 6369commit 912ef198292d3053daa810f842510e5d62ded0f0 6370Author: Matthias Hopf <mhopf@suse.de> 6371Date: Thu Jun 29 17:41:41 2006 +0200 6372 6373 Fix alignment of trees and wide chars in the cache. 6374 (cherry picked from 40a64c61f8bc33d497e1224e02c41dea2d424d97 commit) 6375 6376commit 2ece832118b3ee5d8ed19f1ee9b1c822b70ec6e9 6377Author: Matthias Hopf <mhopf@suse.de> 6378Date: Wed Jun 28 19:17:03 2006 +0200 6379 6380 First (dummy) entry of compose caches was not initialized and thus contained varying garbage. 6381 (cherry picked from f442dcaa56f8ecb7443e8e51c88ed97e10dbdba3 commit) 6382 6383commit e9614c963b532f46a7932c2305a4b177a996a222 6384Author: Donnie Berkholz <spyderous@gentoo.org> 6385Date: Thu Jun 29 19:39:36 2006 -0700 6386 6387 Bug #7349: Missed one of the setuid fixes. 6388 6389commit abda4d223e9cce9ac6e7b5d82a5680d9a502e52a 6390Author: Matthias Hopf <mhopf@suse.de> 6391Date: Thu Jun 29 18:59:57 2006 +0200 6392 6393 Update to final Compose cache directory location. 6394 6395commit 40a64c61f8bc33d497e1224e02c41dea2d424d97 6396Author: Matthias Hopf <mhopf@suse.de> 6397Date: Thu Jun 29 17:41:41 2006 +0200 6398 6399 Fix alignment of trees and wide chars in the cache. 6400 6401commit f442dcaa56f8ecb7443e8e51c88ed97e10dbdba3 6402Author: Matthias Hopf <mhopf@suse.de> 6403Date: Wed Jun 28 19:17:03 2006 +0200 6404 6405 First (dummy) entry of compose caches was not initialized and thus contained varying garbage. 6406 6407commit bdbe464d774e01d317f67c63ebbda2fd0edbbdd1 6408Author: Donnie Berkholz <spyderous@gentoo.org> 6409Date: Thu Jun 22 23:59:03 2006 -0700 6410 6411 Delete ChangeLog, and add a rule to autogenerate it for distribution. Also 6412 add 'foreign' to AM_INIT_AUTOMAKE to make autotools happy with not having a 6413 ChangeLog. 6414 (cherry picked from b0edfb8df16ab8c9959b83a4c966d55a59c4e295 commit) 6415 6416commit b0edfb8df16ab8c9959b83a4c966d55a59c4e295 6417Author: Donnie Berkholz <donnie@comet.(none)> 6418Date: Thu Jun 22 23:47:38 2006 -0700 6419 6420 Delete ChangeLog, and add a rule to autogenerate it for distribution. Also 6421 add 'foreign' to AM_INIT_AUTOMAKE to make autotools happy with not having a 6422 ChangeLog. 6423 6424commit dd54981aa76e9dfdc4c3302d6105b4b229447c84 6425Author: Donnie Berkholz <donnie@comet.(none)> 6426Date: Thu Jun 22 15:47:38 2006 -0700 6427 6428 Bump version to 1.0.2. 6429 6430commit c93539d974a67f596a5eb5b65042d26602546c72 6431Author: Matthieu Herrb <matthieu@deville.herrb.com> 6432Date: Tue Jun 20 21:04:03 2006 +0200 6433 6434 Check setuid() return value. 6435 (cherry picked from 5169d0e08ff6acb350a6ea768623f5ff0b85b05f commit) 6436 6437commit 605533f814ab7892991578706a6458f61a89ca4d 6438Author: Derek Wang <derek.wang@sun.com> 6439Date: Mon Jun 19 11:05:37 2006 -0700 6440 6441 Sun bug 6209243: XExtentsOfFontSet causes segfault when font set not loaded 6442 (cherry picked from eff50c94a07194297e705da53d9fbb3a40fb9ad4 commit) 6443 6444commit 5bbd0822c5a926de0ed293437fb9f2b75cf3c4f4 6445Author: Scott Revelt <scott.revelt@sun.com> 6446Date: Fri Jun 16 19:11:13 2006 -0700 6447 6448 Sun bug 4022903: Xcms routines may fail if sscanf() is looking for separators 6449 based on locale that doesn't match those used in the Xcms.txt 6450 (cherry picked from 94f3213fc4bd6ec49bfb68e8b4a4fddea2bf3baa commit) 6451 6452commit 0b05cd4da6134df527fb010384a9fd569bd5d6a3 6453Author: Alan Coopersmith <alanc@alf.(none)> 6454Date: Fri Jun 16 18:53:33 2006 -0700 6455 6456 Add *~ to ignore emacs droppings 6457 (cherry picked from c33d7b8282ac196b36229be26442296768c16f3e commit) 6458 6459commit 214658b76b56768f69c3959a11525aae7813f448 6460Author: Matthias Hopf <mhopf@suse.de> 6461Date: Fri Jun 16 15:36:40 2006 +0200 6462 6463 Bug #3104: Compose table cache for faster X11 application starts. 6464 (cherry picked from 1f4c9893ade08bad30c9bd12a36bee57d30b001e commit) 6465 6466commit 13968a23aaea838ba4b69e42e8900f803499e091 6467Author: Matthias Hopf <mhopf@suse.de> 6468Date: Tue Jun 13 20:23:46 2006 +0200 6469 6470 Bug #3104: Compose table cache for faster X11 application starts. 6471 (cherry picked from 4fe22647e6010a2886c2f3a7093adeaeb6678faa commit) 6472 6473commit e7f8bca08f5476d0ca262097639ac7d424bb4d10 6474Author: Lubos Lunak <llunak@suse.de> 6475Date: Mon Jun 12 18:48:08 2006 +0200 6476 6477 Bug #3104: Compose table cache for faster X11 application starts. 6478 (cherry picked from 1d28a655629a11ea7fd1e5df4c7b77dd4b63e3be commit) 6479 6480commit f506aaf8ac9aae1ee8daaef6cde34ee85aecd641 6481Author: Matthias Hopf <mhopf@suse.de> 6482Date: Fri Jun 9 18:24:02 2006 +0200 6483 6484 Bug #3104: Compose table cache for faster X11 application starts. Part 1: Pointerless compose data structure, using indices instead of pointers, needed for mmap()ing data structure. 6485 (cherry picked from 9354351fcb8baeaab85250d14409cfb4fa50f3e9 commit) 6486 6487commit 0e6d5e979aacb0c295ce79369ecc5f22ffa7922c 6488Author: Jamey Sharp <jamey@minilop.net> 6489Date: Wed Jun 7 20:29:05 2006 -0700 6490 6491 Fix bug #7035: unnecessary memmove in XOpenDisplay. 6492 Using memmove on the connection setup data causes a problem for XCB, but making 6493 Xlib stop doing that should be harmless for non-XCB as well. 6494 (cherry picked from b18713ec3f36a10b3cdb1e16f9550e1d2e05dff0 commit) 6495 6496commit cd7328c46ae72903ed02832828891b2dab4d5ee0 6497Author: Daniel Stone <daniels@preemptive.fooishbar.org> 6498Date: Sat Jun 3 13:51:51 2006 +0300 6499 6500 Fix threading support on GNU/kFreeBSD systems. (Robert Millan) 6501 (cherry picked from e3acee88cfcc4ef0fa8a7db39763a5ebe2e985cb commit) 6502 6503commit c336eb6b80a6f91da1d0b3d28634a2cfde324670 6504Merge: 33556ca ad9ebbd 6505Author: Donnie Berkholz <donnie@comet.(none)> 6506Date: Thu Jun 22 14:25:35 2006 -0700 6507 6508 Merge branch 'stable' of http://people.freedesktop.org/~jamey/libX11 into stable 6509 6510commit 213dacad21740466e7ab31b01d3fc513fe4b3e74 6511Author: Daniel Stone <daniel@fooishbar.org> 6512Date: Thu Jun 22 17:20:59 2006 +0300 6513 6514 Bump to 1.0.99.0 to avoid confusion. 6515 6516commit efedfd68e31bcee2d21ac340be8dc9e1825ec890 6517Merge: e3acee8 4b8eb5d 6518Author: Daniel Stone <daniel@fooishbar.org> 6519Date: Thu Jun 22 16:53:45 2006 +0300 6520 6521 Merge branch 'master' of git+ssh://git.freedesktop.org/srv/git.freedesktop.org/git/xorg/lib/libX11 6522 6523commit 4b8eb5d4a1da73a94b5a6ab12e34784aae4c79c5 6524Merge: 5169d0e eff50c9 6525Author: Matthieu Herrb <matthieu@deville.herrb.com> 6526Date: Tue Jun 20 21:05:15 2006 +0200 6527 6528 Merge branch 'master' of git+ssh://herrb@git.freedesktop.org/git/xorg/lib/libX11 6529 6530commit 5169d0e08ff6acb350a6ea768623f5ff0b85b05f 6531Author: Matthieu Herrb <matthieu@deville.herrb.com> 6532Date: Tue Jun 20 21:04:03 2006 +0200 6533 6534 Check setuid() return value. 6535 6536commit eff50c94a07194297e705da53d9fbb3a40fb9ad4 6537Author: Derek Wang <derek.wang@sun.com> 6538Date: Mon Jun 19 11:05:37 2006 -0700 6539 6540 Sun bug 6209243: XExtentsOfFontSet causes segfault when font set not loaded 6541 6542commit 94f3213fc4bd6ec49bfb68e8b4a4fddea2bf3baa 6543Author: Scott Revelt <scott.revelt@sun.com> 6544Date: Fri Jun 16 19:11:13 2006 -0700 6545 6546 Sun bug 4022903: Xcms routines may fail if sscanf() is looking for separators 6547 based on locale that doesn't match those used in the Xcms.txt 6548 6549commit c33d7b8282ac196b36229be26442296768c16f3e 6550Author: Alan Coopersmith <alanc@alf.(none)> 6551Date: Fri Jun 16 18:53:33 2006 -0700 6552 6553 Add *~ to ignore emacs droppings 6554 6555commit 1f4c9893ade08bad30c9bd12a36bee57d30b001e 6556Author: Matthias Hopf <mhopf@suse.de> 6557Date: Fri Jun 16 15:36:40 2006 +0200 6558 6559 Bug #3104: Compose table cache for faster X11 application starts. 6560 6561commit 4fe22647e6010a2886c2f3a7093adeaeb6678faa 6562Author: Matthias Hopf <mhopf@suse.de> 6563Date: Tue Jun 13 20:23:46 2006 +0200 6564 6565 Bug #3104: Compose table cache for faster X11 application starts. 6566 6567commit 1d28a655629a11ea7fd1e5df4c7b77dd4b63e3be 6568Author: Lubos Lunak <llunak@suse.de> 6569Date: Mon Jun 12 18:48:08 2006 +0200 6570 6571 Bug #3104: Compose table cache for faster X11 application starts. 6572 6573commit 9354351fcb8baeaab85250d14409cfb4fa50f3e9 6574Author: Matthias Hopf <mhopf@suse.de> 6575Date: Fri Jun 9 18:24:02 2006 +0200 6576 6577 Bug #3104: Compose table cache for faster X11 application starts. Part 1: Pointerless compose data structure, using indices instead of pointers, needed for mmap()ing data structure. 6578 6579commit b18713ec3f36a10b3cdb1e16f9550e1d2e05dff0 6580Author: Jamey Sharp <jamey@minilop.net> 6581Date: Wed Jun 7 20:29:05 2006 -0700 6582 6583 Fix bug #7035: unnecessary memmove in XOpenDisplay. 6584 Using memmove on the connection setup data causes a problem for XCB, but making 6585 Xlib stop doing that should be harmless for non-XCB as well. 6586 6587commit ad9ebbd2424bc2699944ffdf4e19e13f9dd8ab84 6588Author: Daniel Stone <daniels@preemptive.fooishbar.org> 6589Date: Sat Jun 3 12:57:55 2006 +0300 6590 6591 Bug #2186: Add cs_CZ.iso8859-2 alias. 6592 6593commit 9e7765e0b1cbaae6643072d91066ba1201b36227 6594Author: Daniel Stone <daniel@fooishbar.org> 6595Date: Fri Jun 2 02:46:29 2006 +0300 6596 6597 nls: Serbian (sr_CS) update (#5575) 6598 6599 Bug #5575: 'Yugoslavia' has changed to Serbia & Montenegro, along with a 6600 corresponding locale change. Update compose.dir.pre, locale.alias.pre, 6601 and locale.dir.pre. (Milos Komarcevic) 6602 6603commit a4ac2242b588da23044a20aa999ae84d4de7b2d8 6604Author: Daniel Stone <daniel@fooishbar.org> 6605Date: Fri Jun 2 02:24:25 2006 +0300 6606 6607 im: add Braille input method (#6296) 6608 6609 Bug #6296: Add a Braille input method. (Samuel Thibault) 6610 6611commit 90de1e2e141ec591048a76cb695579ef809a28d3 6612Author: Daniel Stone <daniel@fooishbar.org> 6613Date: Fri Jun 2 02:22:17 2006 +0300 6614 6615 xkb support: small typo 6616 6617commit 4c3e34bece7402f08139d34d1ef5834e3cf533c7 6618Author: Daniel Stone <daniel@fooishbar.org> 6619Date: Fri Jun 2 01:50:24 2006 +0300 6620 6621 en_US.UTF-8 Compose.pre: updates from Simos (#5129) 6622 6623 Bug #5129: Numerous updates from Simos Xenitellis, fixing Unicode keysyms, 6624 adding Unicode character names, removing duplicate entries, et al. 6625 6626commit 0c6473dd329c7334ae511884bcb6e73e632c784f 6627Author: Daniel Stone <daniel@fooishbar.org> 6628Date: Fri Jun 2 01:44:53 2006 +0300 6629 6630 nls: fix use of non-keysym dead_space (#5107) 6631 6632 Bug #5107: Change users of dead_space to space. 6633 6634commit 6f99f6349de5120f1cb7e02fbc97849341bc48e8 6635Author: Daniel Stone <daniel@fooishbar.org> 6636Date: Fri Jun 2 01:41:18 2006 +0300 6637 6638 optional XKB support fix 6639 6640 Fix compilation with --disable-xkb. 6641 6642commit 217d43ed44ced901122093af3ef1294e1736bb77 6643Author: Daniel Stone <daniel@fooishbar.org> 6644Date: Fri Jun 2 01:39:12 2006 +0300 6645 6646 i18n: separate data and lib directories 6647 6648 Break out locale data into separate data and library directories, under 6649 $(datadir) and $(libdir), respectively, by default. 6650 6651commit 92fa7fcde8df22830fca7c0275ab201033f7909c 6652Author: Adam Jackson <ajax@benzedrine.nwnk.net> 6653Date: Thu May 11 14:04:48 2006 -0400 6654 6655 libXcursor.so.1, not libXcursor.so 6656 6657commit 135b4df13ed7c35dbae8975f302fc1fb8412d7c0 6658Author: Daniel Stone <daniels@preemptive.fooishbar.org> 6659Date: Wed May 10 18:06:03 2006 +0300 6660 6661 XKBMisc.c: use Xfree, not xfree 6662 6663 Use Xfree() instead of xfree() when freeing interps. 6664 6665commit 3518d772b08e3433bc28b4d8d293fa53ca25f0ee 6666Author: Daniel Stone <daniels@preemptive.fooishbar.org> 6667Date: Wed May 10 14:51:37 2006 +0300 6668 6669 locale.alias.pre: bg_BG typo fix 6670 6671 Fix typo (be_BG.UTF-8 rather than bg_BG.UTF-8) in locale.alias.pre. 6672 6673commit cc533db60cb64dc163c66451933a9bf77c519062 6674Author: Daniel Stone <daniels@endtroducing.localdomain> 6675Date: Sun Apr 9 22:22:03 2006 +0300 6676 6677 Coverity #203, #204: Fix potential NULL dereferences. 6678 6679commit b83adf7dfd6157694fe4f232012fef36cd9666da 6680Author: Daniel Stone <daniels@endtroducing.localdomain> 6681Date: Sun Apr 9 22:20:25 2006 +0300 6682 6683 Coverity #205: Fix potential NULL dereference. 6684 6685commit 2d0cd10ad907864d0136739eaac459779c9a5332 6686Author: Daniel Stone <daniels@endtroducing.localdomain> 6687Date: Sun Apr 9 22:18:20 2006 +0300 6688 6689 Coverity #209: Fix potential NULL dereference. (Alan Coopersmith) 6690 6691commit dc2f3966068d66a564aa452cab9f0c26657fa1df 6692Author: Daniel Stone <daniels@preemptive.research.nokia.com> 6693Date: Fri Apr 7 18:11:52 2006 +0300 6694 6695 Coverity #826: Fix potential memory leak. 6696 6697commit 23df609ec451a01c77e8f31ecc85c5af7c62efed 6698Author: Daniel Stone <daniels@preemptive.research.nokia.com> 6699Date: Fri Apr 7 17:49:41 2006 +0300 6700 6701 Bug #1625: Include keysym.h from Xutil.h. 6702 6703commit 5262a1945c543a3419ed626e1deb09ef5b4584c1 6704Author: Eric Anholt <anholt@leguin.anholt.net> 6705Date: Wed Apr 5 17:12:15 2006 -0700 6706 6707 Check if visualList == NULL, not nVisualsMatched == 0. NULL happens in more 6708 6709 cases (allocation failure) than nVisualsMatched == 0. Noticed from inspection 6710 of Coverity #599, #600. 6711 6712commit 8b42635f577468bb143ca593cdd9fb3450ad712c 6713Author: Eric Anholt <anholt@leguin.anholt.net> 6714Date: Wed Apr 5 16:42:26 2006 -0700 6715 6716 Coverity #558: Free newly-allocated Database in error path. 6717 6718commit 6d06e41d1f431b3f1a1fcf69161e0af411325e9f 6719Author: Eric Anholt <anholt@leguin.anholt.net> 6720Date: Wed Apr 5 16:38:52 2006 -0700 6721 6722 Coverity #582: Free newly-allocated region in error path. 6723 6724commit 5fd8f79ad3e38df74d9a6cb573617542c101df1a 6725Author: Daniel Stone <daniels@preemptive.research.nokia.com> 6726Date: Fri Mar 17 15:58:39 2006 +0200 6727 6728 Properly clip bounds when only one point is defining an outline. 6729 6730commit 1e1572eb7f8394ce152e99d96f711ccf9083baf9 6731Author: Matthieu Herrb <matthieu@bluenote.herrb.com> 6732Date: Sat Mar 11 15:39:15 2006 +0100 6733 6734 Fix prototype of XConfigureWindow(). Bugzilla #6023. 6735 6736commit 1da8bd904f1fc79d63d368473531b438d08bfe37 6737Author: Jeremy C. Reed <reed@reedmedia.net> 6738Date: Tue Feb 21 14:10:22 2006 -0800 6739 6740 Set XTHREADLIB correctly for dragonfly platforms. 6741 6742commit c9768133e3f65ac4bb64e3941e2d6ae36897ec9c 6743Author: Jamey Sharp <jamey@minilop.net> 6744Date: Sun Feb 19 12:29:27 2006 -0800 6745 6746 Update .gitignores for *.o and nls/locale.dir*. 6747 6748commit efcbde6ba0b770bb0d4c7818e307712161011f10 6749Author: Jamey Sharp <jamey@minilop.net> 6750Date: Sun Feb 19 12:28:41 2006 -0800 6751 6752 Move .cvsignore to .gitignore. 6753 6754commit e3acee88cfcc4ef0fa8a7db39763a5ebe2e985cb 6755Author: Daniel Stone <daniels@preemptive.fooishbar.org> 6756Date: Sat Jun 3 13:51:51 2006 +0300 6757 6758 Fix threading support on GNU/kFreeBSD systems. (Robert Millan) 6759 6760commit f1bd3152359ddfadd0d043006036c239f3e2907b 6761Author: Daniel Stone <daniels@preemptive.fooishbar.org> 6762Date: Sat Jun 3 12:57:55 2006 +0300 6763 6764 Bug #2186: Add cs_CZ.iso8859-2 alias. 6765 6766commit 2b1b79d90db1d7f0472718b8c010c36275994195 6767Author: Daniel Stone <daniel@fooishbar.org> 6768Date: Fri Jun 2 02:46:29 2006 +0300 6769 6770 nls: Serbian (sr_CS) update (#5575) 6771 Bug #5575: 'Yugoslavia' has changed to Serbia & Montenegro, along with a 6772 corresponding locale change. Update compose.dir.pre, locale.alias.pre, 6773 and locale.dir.pre. (Milos Komarcevic) 6774 6775commit d6fba1f44d404362d3be1b421f57d7ccc3c8cdac 6776Author: Daniel Stone <daniel@fooishbar.org> 6777Date: Fri Jun 2 02:24:25 2006 +0300 6778 6779 im: add Braille input method (#6296) 6780 Bug #6296: Add a Braille input method. (Samuel Thibault) 6781 6782commit 0fed7d3185addd610e917dcdaa0676f0256c0ec5 6783Author: Daniel Stone <daniel@fooishbar.org> 6784Date: Fri Jun 2 02:22:17 2006 +0300 6785 6786 xkb support: small typo 6787 6788commit cf7d9f9e46f3ce01ac04a95978918d5c0f3f3cf9 6789Author: Daniel Stone <daniel@fooishbar.org> 6790Date: Fri Jun 2 01:50:24 2006 +0300 6791 6792 en_US.UTF-8 Compose.pre: updates from Simos (#5129) 6793 Bug #5129: Numerous updates from Simos Xenitellis, fixing Unicode keysyms, 6794 adding Unicode character names, removing duplicate entries, et al. 6795 6796commit 332d45fce9fdbf59168d90a133af1f580a589e54 6797Author: Daniel Stone <daniel@fooishbar.org> 6798Date: Fri Jun 2 01:44:53 2006 +0300 6799 6800 nls: fix use of non-keysym dead_space (#5107) 6801 Bug #5107: Change users of dead_space to space. 6802 6803commit 34f59ce3d1e2eb2971b732d11871c6fff8a1c75b 6804Author: Daniel Stone <daniel@fooishbar.org> 6805Date: Fri Jun 2 01:41:18 2006 +0300 6806 6807 optional XKB support fix 6808 Fix compilation with --disable-xkb. 6809 6810commit c5940a0b85edec4003f91a59fc3c44f538accfe1 6811Author: Daniel Stone <daniel@fooishbar.org> 6812Date: Fri Jun 2 01:39:12 2006 +0300 6813 6814 i18n: separate data and lib directories 6815 Break out locale data into separate data and library directories, under 6816 $(datadir) and $(libdir), respectively, by default. 6817 6818commit 33556ca81db2419b9d2a37664c4cea2069414b37 6819Author: Adam Jackson <ajax@benzedrine.nwnk.net> 6820Date: Fri May 12 14:49:17 2006 -0400 6821 6822 Bump to 1.0.1 6823 6824commit 80d88557626fae9debc404de33d7fb5d69a6049d 6825Author: Adam Jackson <ajax@benzedrine.nwnk.net> 6826Date: Thu May 11 14:06:28 2006 -0400 6827 6828 libXcursor.so.1, not libXcursor.so 6829 6830commit 5384f27dfe3c94c462c137ab3540eaa5646ca4c6 6831Author: Adam Jackson <ajax@benzedrine.nwnk.net> 6832Date: Thu May 11 14:04:48 2006 -0400 6833 6834 libXcursor.so.1, not libXcursor.so 6835 6836commit 01f4d433eed6b70c6e9636157acac022054fdeb6 6837Author: Jamey Sharp <jamey@minilop.net> 6838Date: Wed May 10 17:02:52 2006 -0700 6839 6840 Count any partial request towards the current Xlib sequence number. 6841 6842commit 770cfbd1fcc80a83a9be0c4f68727b8af2c8f4a4 6843Author: Daniel Stone <daniels@preemptive.fooishbar.org> 6844Date: Wed May 10 18:06:03 2006 +0300 6845 6846 XKBMisc.c: use Xfree, not xfree 6847 Use Xfree() instead of xfree() when freeing interps. 6848 6849commit 22a5255b80b80772612279bc840a953edd0e3442 6850Author: Daniel Stone <daniels@preemptive.fooishbar.org> 6851Date: Wed May 10 14:51:37 2006 +0300 6852 6853 locale.alias.pre: bg_BG typo fix 6854 Fix typo (be_BG.UTF-8 rather than bg_BG.UTF-8) in locale.alias.pre. 6855 6856commit 9cac8c9824874ca7d835f001a4efa910b7fdd822 6857Merge: 19b8840 e514bc8 6858Author: Daniel Stone <daniels@preemptive.fooishbar.org> 6859Date: Wed May 10 14:50:37 2006 +0300 6860 6861 Merge branch 'master' of git+ssh://git.freedesktop.org/srv/git.freedesktop.org/git/xorg/lib/libX11 6862 6863commit e514bc875f27f4bf197b06b8315eeca526195915 6864Author: Jamey Sharp <jamey@minilop.net> 6865Date: Tue May 9 12:41:59 2006 -0700 6866 6867 Assert that dpy->request does not go backwards. Catches #5839 earlier. 6868 6869commit fc1159137365a599bf611ee001f439416952c4e0 6870Author: Jamey Sharp <jamey@minilop.net> 6871Date: Sun May 7 17:40:01 2006 -0700 6872 6873 In _XPutXCBBuffer, set aside any trailing partial request until the last byte is available. 6874 6875commit c394480a4247213239822808e3f6e7c6cd6decd9 6876Author: Jamey Sharp <jamey@minilop.net> 6877Date: Sun May 7 16:58:13 2006 -0700 6878 6879 Update for XCB ConnSetupSuccessRep name change. 6880 6881commit 7672bf93bc1200905461aeb0a2dc2c2696410b93 6882Author: Daniel Stone <daniels@endtroducing.localdomain> 6883Date: Sun Apr 9 22:22:03 2006 +0300 6884 6885 Coverity #203, #204: Fix potential NULL dereferences. 6886 6887commit cfcafbe48d22d9a0cd50eb9454ce0ff88f0129d3 6888Author: Daniel Stone <daniels@endtroducing.localdomain> 6889Date: Sun Apr 9 22:20:25 2006 +0300 6890 6891 Coverity #205: Fix potential NULL dereference. 6892 6893commit b6771501feea98d037032f82117b6d4f15779f07 6894Author: Daniel Stone <daniels@endtroducing.localdomain> 6895Date: Sun Apr 9 22:18:20 2006 +0300 6896 6897 Coverity #209: Fix potential NULL dereference. (Alan Coopersmith) 6898 6899commit 19b8840af241087bb17b1edabcaa9b28fdd0a1dc 6900Author: Daniel Stone <daniels@preemptive.research.nokia.com> 6901Date: Fri Apr 7 18:11:52 2006 +0300 6902 6903 Coverity #826: Fix potential memory leak. 6904 6905commit 3a16f262abe48b44ed641525e894bc22e13bf72a 6906Author: Daniel Stone <daniels@preemptive.research.nokia.com> 6907Date: Fri Apr 7 17:49:41 2006 +0300 6908 6909 Bug #1625: Include keysym.h from Xutil.h. 6910 6911commit 2481b767ae96e2f2503c0390545932c8397b090f 6912Author: Eric Anholt <anholt@leguin.anholt.net> 6913Date: Wed Apr 5 17:12:15 2006 -0700 6914 6915 Check if visualList == NULL, not nVisualsMatched == 0. NULL happens in more 6916 cases (allocation failure) than nVisualsMatched == 0. Noticed from inspection 6917 of Coverity #599, #600. 6918 6919commit 152b17e47d878c2d928eb74581aa69d925a29123 6920Author: Eric Anholt <anholt@leguin.anholt.net> 6921Date: Wed Apr 5 16:42:26 2006 -0700 6922 6923 Coverity #558: Free newly-allocated Database in error path. 6924 6925commit bc62b99ef36edb34035911c42104be7f6f9d2333 6926Author: Eric Anholt <anholt@leguin.anholt.net> 6927Date: Wed Apr 5 16:38:52 2006 -0700 6928 6929 Coverity #582: Free newly-allocated region in error path. 6930 6931commit d47f0b3cec1388f7ce60ab2af91df0dea0f221c5 6932Author: Jamey Sharp <jamey@minilop.net> 6933Date: Fri Mar 31 22:53:07 2006 -0800 6934 6935 Fix buggy interaction with XCB when running out of XIDs. 6936 6937commit e3f452571824d6a875bbf582946de185de9e01e9 6938Author: Jamey Sharp <jamey@minilop.net> 6939Date: Fri Mar 31 22:52:14 2006 -0800 6940 6941 Add explicit include of Xmd.h to work around bug including both xcb.h and Xmd.h simultaneously. 6942 6943commit 2363b74ca795c1b3a73c9e572532ba5191adec5b 6944Author: Daniel Stone <daniels@preemptive.research.nokia.com> 6945Date: Fri Mar 17 15:58:39 2006 +0200 6946 6947 Properly clip bounds when only one point is defining an outline. 6948 6949commit e876efb8aa410f2f5c87aaaa7042f847c4ff96f7 6950Merge: be266b2 f71ea0b 6951Author: Matthieu Herrb <matthieu@bluenote.herrb.com> 6952Date: Sat Mar 11 15:40:35 2006 +0100 6953 6954 Merge branch 'master' of git+ssh://herrb@git.freedesktop.org/git/xorg/lib/libX11 6955 6956commit be266b201dc13530a302a7572283ccd3f32aad87 6957Author: Matthieu Herrb <matthieu@bluenote.herrb.com> 6958Date: Sat Mar 11 15:39:15 2006 +0100 6959 6960 Fix prototype of XConfigureWindow(). Bugzilla #6023. 6961 6962commit f71ea0bc737c5a42e9e022b86e7ec3b4f846d31c 6963Author: Jamey Sharp <jamey@minilop.net> 6964Date: Fri Mar 3 11:08:41 2006 -0800 6965 6966 Update for XCBSendRequest sequence number API changes. 6967 6968commit a11d1b0ae674320cf9897f6a83ec08c65eca8d9b 6969Author: Jamey Sharp <jamey@minilop.net> 6970Date: Fri Mar 3 01:42:49 2006 -0800 6971 6972 Use the full_sequence from XCBGenericError/Event for setting last_request_read, and quit replacing _XSetLastRequestRead with an XCB-specific version. 6973 6974commit d8ba4ae7045b227f8b675628b9094dded02f1c08 6975Author: Jamey Sharp <jamey@minilop.net> 6976Date: Thu Mar 2 23:43:26 2006 -0800 6977 6978 Bugfix: Rely on XCBSendRequest to leave iov in a well-defined state, and place the spare iovecs at the beginning of the array. 6979 6980commit f9afb5a54435c30961306080e9358d4240ecb844 6981Author: Jamey Sharp <jamey@minilop.net> 6982Date: Thu Mar 2 23:34:19 2006 -0800 6983 6984 assert() that we will not infinite loop or read uninitialized memory. 6985 6986commit d3512ef3aae5b036a8ce6579318108f1ec20ee22 6987Author: Jamey Sharp <jamey@minilop.net> 6988Date: Thu Mar 2 15:58:52 2006 -0800 6989 6990 Quit relying on XCBSendRequest to pad to 4-byte boundaries and do it ourselves. 6991 6992commit fb590c15a740264ee867d15a2547072e43b21eed 6993Author: Jamey Sharp <jamey@minilop.net> 6994Date: Thu Mar 2 12:06:04 2006 -0800 6995 6996 Handle errors correctly when Xlib owns the event queue and XCB has the checked error feature. 6997 6998commit 8356ba37d307a9eda895a6bf41ef727bbfc9a695 6999Author: Jamey Sharp <jamey@minilop.net> 7000Date: Mon Feb 27 11:51:47 2006 -0800 7001 7002 Use the new XCBSendRequest flag, XCB_REQUEST_RAW, to hand a bag-o-bytes down uninterpreted. 7003 7004commit 07bdf1fbbf2418f866df1a2140d514dd3f035139 7005Author: Jamey Sharp <jamey@minilop.net> 7006Date: Sun Feb 26 15:46:01 2006 -0800 7007 7008 Update for new XCBSendRequest API. 7009 7010commit 409a08cff8347d39e0e6c53c9f380d21f221f5ac 7011Author: Jamey Sharp <jamey@minilop.net> 7012Date: Thu Feb 23 18:12:31 2006 -0800 7013 7014 Performance fix: Replace calls to XCBGetRequestRead with the new XCBGetQueuedRequestRead. Cuts a lot of syscalls. 7015 7016commit ec30a27341b97620b07dd886f98d1d7664a67685 7017Author: Jamey Sharp <jamey@minilop.net> 7018Date: Thu Feb 23 18:01:46 2006 -0800 7019 7020 Minor performance fix: Access dpy->xcl->connection directly instead of calling XCBConnectionOfDisplay. It happens a lot. 7021 7022commit 53c471c6a835d5cedeca99f2c97058d196a3fd7e 7023Author: Jamey Sharp <jamey@minilop.net> 7024Date: Thu Feb 23 11:46:09 2006 -0800 7025 7026 XCBFlush used to return non-positive on failure, and this test did not catch 0. Now it returns boolean: 0 or 1. Testing <= 0 covers both cases. I probably want to switch to a boolean test eventually. 7027 7028commit 41c0121a8718b530feaf7fe315b673d9b8defce2 7029Author: Jamey Sharp <jamey@minilop.net> 7030Date: Tue Feb 21 21:25:41 2006 -0800 7031 7032 Refactor the code that passes requests down to XCB into a separate issue_complete_request function. 7033 7034commit 67d06e0fe468dca22847aa14d3f917128f89f9cf 7035Author: Jamey Sharp <jamey@minilop.net> 7036Date: Tue Feb 21 15:33:05 2006 -0800 7037 7038 If we have not actually put the buffer back, deferred invariants may not hold. This is OK. 7039 7040commit 434bf80b4053ff1ba82adf65de1f76b4d3731bf1 7041Author: Jeremy C. Reed <reed@reedmedia.net> 7042Date: Tue Feb 21 14:10:22 2006 -0800 7043 7044 Set XTHREADLIB correctly for dragonfly platforms. 7045 7046commit b24834762e975bd319f9ab5c7cf790b2a02a9474 7047Author: Jamey Sharp <jamey@minilop.net> 7048Date: Tue Feb 21 14:03:26 2006 -0800 7049 7050 Sometimes functions other than _XUnlockDisplay call _XPutXCBBuffer. Some invariants appropriate for Unlock are not appropriate otherwise: move them to _XUnlockDisplay. 7051 7052commit 99b8defd0d5e6993071e21638128c9de2574b37d 7053Author: Jamey Sharp <jamey@minilop.net> 7054Date: Tue Feb 21 13:04:21 2006 -0800 7055 7056 Execute BeforeFlush hooks on complete buffers, not request-at-a-time. 7057 Traditional Xlib worked this way; I dunno why I changed it. 7058 7059commit 9b01e7849775749182052fe324df9d8e6ceeee99 7060Author: Jamey Sharp <jamey@minilop.net> 7061Date: Tue Feb 21 12:51:44 2006 -0800 7062 7063 Factor the XCBSendRequest call out of the conditional in _XPutXCBBuffer. 7064 7065commit 7ce7ac882de128955751a5307889db9d712d8a72 7066Author: Jamey Sharp <jamey@minilop.net> 7067Date: Tue Feb 21 12:44:30 2006 -0800 7068 7069 Quit using a triple-pointer. Almost as if I were a sensible person. 7070 7071commit 35a858be218cdbfa4593d44a67663d5c25297016 7072Author: Jamey Sharp <jamey@minilop.net> 7073Date: Tue Feb 21 12:21:01 2006 -0800 7074 7075 Remove the XCL_PAD macro. 7076 7077commit e741b70ed2542c5463c57dac44bc37328616733b 7078Author: Jamey Sharp <jamey@minilop.net> 7079Date: Sun Feb 19 12:29:27 2006 -0800 7080 7081 Update .gitignores for *.o and nls/locale.dir*. 7082 7083commit f25b4b00e1683b0d97dba46dac46d65a9c2270a6 7084Author: Jamey Sharp <jamey@minilop.net> 7085Date: Sun Feb 19 12:28:41 2006 -0800 7086 7087 Move .cvsignore to .gitignore. 7088 7089commit c7cda56eebaf6ab11403363be14d4948d7d8be38 7090Author: Jamey Sharp <jamey@minilop.net> 7091Date: Sun Feb 19 11:49:15 2006 -0800 7092 7093 Land XCB support on X.org HEAD. 7094 7095commit 881467b3032261791ef5ec61b3879bb68d0a3d8c 7096Author: Jamey Sharp <jamey@minilop.net> 7097Date: Sun Feb 19 02:14:11 2006 +0000 7098 7099 Merge the X11 and BIGREQS package sets: they were used in exactly the same places. 7100 7101commit 6b0158dfad714db5b89c04dbea3aedeafa0fb146 7102Author: Jamey Sharp <jamey@minilop.net> 7103Date: Tue Feb 14 19:37:36 2006 +0000 7104 7105 Refactor _XFlush and _XSend code that sets dpy->synchandler to _XSeqSyncFunction into a new function, _XSetSeqSyncFunction. It makes the patch for XCB cleaner, but is arguably a good idea anyway. 7106 7107commit 010c3acbb3a6993d39274f42d88c00849acb0fb0 7108Author: Alan Coopersmith <alan.coopersmith@sun.com> 7109Date: Sun Feb 12 18:19:17 2006 +0000 7110 7111 Bug #5628 <https://bugs.freedesktop.org/show_bug.cgi?id=5628> Shadow pages not created correctly when MANDIR & MANSUFFIX don't match. 7112 7113commit fe8c01c80263457f01b70dc1511b2bd9466b7c96 7114Author: Alan Coopersmith <alan.coopersmith@sun.com> 7115Date: Fri Feb 3 23:34:43 2006 +0000 7116 7117 Fix typo in .TH line 7118 7119commit b091c217f3c3f60dde78b09a95c150df6c83d7ba 7120Author: Kevin E Martin <kem@kem.org> 7121Date: Thu Dec 15 00:24:28 2005 +0000 7122 7123 Update package version number for final X11R7 release candidate. 7124 7125commit e7c04e0e65a2a0c70c6ad29ec2d6f4350fd81c2a 7126Author: Kevin E Martin <kem@kem.org> 7127Date: Tue Dec 6 22:48:41 2005 +0000 7128 7129 Change *man_SOURCES ==> *man_PRE to fix autotools warnings. 7130 7131commit b5c495854d5270e64e6d588388ffa906bfcaac22 7132Author: Kevin E Martin <kem@kem.org> 7133Date: Sat Dec 3 05:49:42 2005 +0000 7134 7135 Update package version number for X11R7 RC3 release. 7136 7137commit 9e96dbc343c7f27ff47607acd75378ab23903e2a 7138Author: Kevin E Martin <kem@kem.org> 7139Date: Sat Dec 3 04:41:47 2005 +0000 7140 7141 Add check and cflags for malloc(0) returning NULL. 7142 7143commit 649c37b47909620ccafde3e983de8321cddd74ce 7144Author: Alan Coopersmith <alan.coopersmith@sun.com> 7145Date: Mon Nov 28 22:03:04 2005 +0000 7146 7147 Change *mandir targets to use new *_MAN_DIR variables set by xorg-macros.m4 update to fix bug #5167 (Linux prefers *.1x man pages in man1 subdir) 7148 7149commit 8d1500df66d796ebff2b0d8c02205e5fa6796d4a 7150Author: Alan Coopersmith <alan.coopersmith@sun.com> 7151Date: Wed Nov 23 22:33:06 2005 +0000 7152 7153 Bug #5003 <https://bugs.freedesktop.org/show_bug.cgi?id=5003> Patch #3763 <https://bugs.freedesktop.org/attachment.cgi?id=3763> Xorg code misuses S_IF* macros 7154 7155commit 93cf3747f9ae8d30bd485b41c5ff10397f68f078 7156Author: Eric Anholt <anholt@freebsd.org> 7157Date: Sun Nov 20 23:17:39 2005 +0000 7158 7159 Add/improve libs .cvsignores. 7160 7161commit fa1f4a08112bfa14d3758f4702733dd3892966c3 7162Author: Kevin E Martin <kem@kem.org> 7163Date: Sat Nov 19 07:15:39 2005 +0000 7164 7165 Update pkgconfig files to separate library build-time dependencies from application build-time dependencies, and update package deps to work with separate build roots. 7166 7167commit 7012f9b56c594cf40855ba0dbf93af1263417a8c 7168Author: Kevin E Martin <kem@kem.org> 7169Date: Mon Nov 14 21:51:07 2005 +0000 7170 7171 Fix xf86bigfont pkgconfig dep typo. 7172 7173commit 60a72f47951f46b4e0505d9903a94af3b6bed8ca 7174Author: Kevin E Martin <kem@kem.org> 7175Date: Wed Nov 9 21:19:12 2005 +0000 7176 7177 Update package version number for X11R7 RC2 release. 7178 7179commit 6bb0c3796b6e1beddc376a896e865704886e1462 7180Author: Kean Johnson <kean@armory.com> 7181Date: Tue Nov 8 06:33:25 2005 +0000 7182 7183 See ChangeLog entry 2005-11-07 for details. 7184 7185commit 14be0098ad90c3e68bd2d21b00ffabb76f1fd780 7186Author: Kevin E Martin <kem@kem.org> 7187Date: Tue Nov 1 15:11:50 2005 +0000 7188 7189 Update pkgcheck dependencies to work with separate build roots. 7190 7191commit 1bf71462a972e0fc56de63f5c7fd613b37fc70f1 7192Author: Donnie Berkholz <spyderous@gentoo.org> 7193Date: Fri Oct 28 10:44:03 2005 +0000 7194 7195 Revert that, it's redundant. But it is worth noting that --disable-xkb is broken, if anyone cares. 7196 7197commit be627a39fe373e2e81fdc263780e70a271d9e0c5 7198Author: Donnie Berkholz <spyderous@gentoo.org> 7199Date: Fri Oct 28 08:28:08 2005 +0000 7200 7201 Add dependency on inputproto for XI.h. 7202 7203commit 5fae4cb456cb03fb70cd065dbc2ca94c8ed99082 7204Author: Adam Jackson <ajax@nwnk.net> 7205Date: Fri Oct 21 18:44:24 2005 +0000 7206 7207 Bug #4736: Error decoding for Damage extension. (Jonathan Lennox) 7208 7209commit 1171fa9dc77413f0e90933a565ec07068052afb4 7210Author: Kevin E Martin <kem@kem.org> 7211Date: Wed Oct 19 02:48:08 2005 +0000 7212 7213 Update package version number for RC1 release. 7214 7215commit 2a2d905706308b9d5a1c16af1067fb390f43850c 7216Author: Alan Coopersmith <alan.coopersmith@sun.com> 7217Date: Tue Oct 18 00:00:08 2005 +0000 7218 7219 Use @LIB_MAN_SUFFIX@ instead of $(LIB_MAN_SUFFIX) in macro substitutions to work better with BSD make 7220 7221commit 66d35b6971fb26762392a2a8e2c47db46c11116a 7222Author: Alan Coopersmith <alan.coopersmith@sun.com> 7223Date: Mon Oct 17 21:13:15 2005 +0000 7224 7225 Rename .shadows.DONE to shadows.DONE to avoid some make's thinking it's a suffix rule (reported by Matthieu Herrb) 7226 7227commit a316995a17c084e98ef1b7f25d287c2c08b6d749 7228Author: Donnie Berkholz <spyderous@gentoo.org> 7229Date: Sun Oct 16 03:03:35 2005 +0000 7230 7231 Change '==' to portable '='. 7232 7233commit b76a072530e884bcbea6ed8fed5aef39361dcfc0 7234Author: Alan Coopersmith <alan.coopersmith@sun.com> 7235Date: Wed Oct 12 00:04:50 2005 +0000 7236 7237 configure.ac Use XORG_MAN_SECTIONS instead of custom man section configuration. Add shadow man pages for man pages that document multiple functions. 7238 7239commit 8ee5c1429af98206e05a0536f87c0f21a529cdf0 7240Author: Eric Anholt <anholt@freebsd.org> 7241Date: Tue Oct 11 02:18:36 2005 +0000 7242 7243 Add appropriate pthread libs/flags for FreeBSD, fixing the build of ico and probably others. 7244 7245commit 41ff3b9d1f194a7b56437b650d5f589225c078c6 7246Author: Alan Coopersmith <alan.coopersmith@sun.com> 7247Date: Sun Oct 9 22:28:39 2005 +0000 7248 7249 Bug #3021 <https://bugs.freedesktop.org/show_bug.cgi?id=3021> Requests and Errors for XFixes are not in XErrorDB (Jonathan Lennox) 7250 7251commit 91ed79852e790049ab54e68f288afb3c953194c9 7252Author: Kevin E Martin <kem@kem.org> 7253Date: Fri Oct 7 15:00:00 2005 +0000 7254 7255 Clean up generated files 7256 Add missing dist tarball files 7257 7258commit 440399b470c97b159a530602fff11c315aca8d97 7259Author: Søren Sandmann Pedersen <sandmann@daimi.au.dk> 7260Date: Wed Oct 5 18:27:10 2005 +0000 7261 7262 Add el_GR.UTF-8 compose file 7263 7264commit 010f0647e25ac617d0f92c8d2b8dda684da545db 7265Author: Daniel Stone <daniel@fooishbar.org> 7266Date: Fri Sep 30 07:52:46 2005 +0000 7267 7268 Bug #2609: Add Kyrgyz locale (Ilyas Bakirov). 7269 7270commit 3ef2fb67bd8905b208ad7eb790c3843e14cea7ed 7271Author: Daniel Stone <daniel@fooishbar.org> 7272Date: Fri Sep 30 07:47:55 2005 +0000 7273 7274 Bug #1640: Kinyarwanda locale support. (Steve Murphy) 7275 7276commit 4ae0decabe0960870df0ec165f495166c10a053c 7277Author: Daniel Stone <daniel@fooishbar.org> 7278Date: Fri Sep 30 07:40:03 2005 +0000 7279 7280 Bug #2268: Add South African locales (Dwayne Bailey). Some whitespace cleanups, as the parser is a little touchy. 7281 7282commit 3f79eb4c99844f618f1889741d1631c2ffe5385f 7283Author: Daniel Stone <daniel@fooishbar.org> 7284Date: Fri Sep 30 07:11:19 2005 +0000 7285 7286 Generate locale.alias and compose.dir exactly like we do in the monolith, which fixes non-UTF-8 locales in particular (so we get foo: bar, as well as foo bar). Switch to generating locale.dir the same way. 7287 7288commit d1237d1483ff972c76a0ac344ec97d5280db0007 7289Author: Alan Coopersmith <alan.coopersmith@sun.com> 7290Date: Thu Sep 29 21:27:12 2005 +0000 7291 7292 Add Xcms.txt to lib/X11 7293 7294commit 4a86f299693f7376cbe98175f0b0c44d691802b3 7295Author: Alan Coopersmith <alan.coopersmith@sun.com> 7296Date: Sat Sep 24 20:11:06 2005 +0000 7297 7298 Add XQueryExtension.man 7299 7300commit a057a66e2041d45198a13a4ece7c07068f76f21b 7301Author: Alan Coopersmith <alan.coopersmith@sun.com> 7302Date: Sat Sep 24 00:16:32 2005 +0000 7303 7304 Add XTHREAD_CFLAGS for platforms that need special defines like 7305 -D_REENTRANT or -D_POSIX_whatever to get re-entrant function definitions. Set XDMCP_LIBS correctly for later libXdmcp tests. 7306 7307commit 3e920a65a7c376ad63eae2240fd06904d25d18bf 7308Author: Alan Coopersmith <alan.coopersmith@sun.com> 7309Date: Fri Sep 2 23:00:30 2005 +0000 7310 7311 Issue an error if XTRANS macros were not found when generating configure from configure.ac to flag errors early, instead of when people wonder why libX11 can't talk to an Xserver because it has no transports defined 7312 7313commit 3eb9f2d693af89d04e2fd92492c8205dce332c9c 7314Author: Kristian Høgsberg <krh@redhat.com> 7315Date: Thu Sep 1 19:24:13 2005 +0000 7316 7317 Use $(X11_LOCALEDATADIR) instead of @X11_LOCALEDATADIR@ so this install destination can be overridden at make install time. 7318 7319commit 7afa64325183b78d2d6a4862821f8b3e9866105c 7320Author: Matthieu Herrb <matthieu.herrb@laas.fr> 7321Date: Sun Aug 28 19:45:48 2005 +0000 7322 7323 OpenBSD needs -lpthread for threaded applications too. 7324 7325commit 2b2f3d3877cb7927f196d01a5df6a27bf8d0518a 7326Author: Daniel Stone <daniel@fooishbar.org> 7327Date: Fri Aug 26 05:16:46 2005 +0000 7328 7329 Define ERRORDB/KEYSYMDB to XERRORDB/XKEYSYMDB if the former is undefined but the latter is. (Gerte Hoogewerf) 7330 7331commit 07066da0902df91c71f2adb81d1a17ec29165553 7332Author: Matthieu Herrb <matthieu.herrb@laas.fr> 7333Date: Sun Aug 21 15:45:04 2005 +0000 7334 7335 update 7336 7337commit de44d8b111f57bd2f015e085fd8298c5f2a15ef3 7338Author: Matthieu Herrb <matthieu.herrb@laas.fr> 7339Date: Sun Aug 21 15:38:39 2005 +0000 7340 7341 Threads support for BSD systems: 7342 - need to check for gewtpwuid_r to define mtsafeapi 7343 - build UIThrstubs if needed. 7344 7345commit 60217fdb918bafb2082519efe5cba3b13ad3082a 7346Author: Adam Jackson <ajax@nwnk.net> 7347Date: Wed Aug 17 19:46:08 2005 +0000 7348 7349 Add xthreadlib variable to x11.pc. Bump to 0.99.1. 7350 7351commit e1f4c6f5e36c1511f66fa1fac76520fd97eecbad 7352Author: Alan Coopersmith <alan.coopersmith@sun.com> 7353Date: Wed Aug 17 01:27:08 2005 +0000 7354 7355 Fix more broken multi-line .ds macros. Remove extraneous ;'s . 7356 7357commit 1909786f4a7d686369edcfc05a938df115fab37c 7358Author: Alan Coopersmith <alan.coopersmith@sun.com> 7359Date: Tue Aug 16 19:23:15 2005 +0000 7360 7361 Bugzilla #4112 <https://bugs.freedesktop.org/show_bug.cgi?id=4112> Patch #2687 <https://bugs.freedesktop.org/attachment.cgi?id=2897> Fix multi-line macros in XPutImage man page. (Debian bug #323210, fix by David Mart?nez Moreno) 7362 7363commit 83406d69c62070d2eeef23eb47f1ca887f711ee5 7364Author: Alan Coopersmith <alan.coopersmith@sun.com> 7365Date: Mon Aug 15 19:53:37 2005 +0000 7366 7367 Move RAWCPP macro to xorg-macros.m4 so other modules can use it Add check for whether or not RAWCPP needs -traditional instead of hardcoding it, so non-gcc cpp's can be used 7368 7369commit 5bb43de17de8e71d967488a713bf2b3448533444 7370Author: Alan Coopersmith <alan.coopersmith@sun.com> 7371Date: Sat Aug 6 18:59:49 2005 +0000 7372 7373 Typo fix in output message 7374 7375commit afe34b95862bb3c06cdbe724cb5ec3001a4a5215 7376Author: Alan Coopersmith <alan.coopersmith@sun.com> 7377Date: Thu Aug 4 02:55:49 2005 +0000 7378 7379 //bugs.freedesktop.org/show_bug.cgi?id=1887> Patch #3005 <https://bugs.freedesktop.org/attachment.cgi?id=3005> libX11 locale defs severely adrift from glibc: adding new aliases (From Debian via Nathanael Nerode) 7380 7381commit 3979a0b88edf6475ce5cfaa386e18ef980bda13c 7382Author: Alan Coopersmith <alan.coopersmith@sun.com> 7383Date: Thu Aug 4 02:51:30 2005 +0000 7384 7385 //bugs.freedesktop.org/show_bug.cgi?id=1887> Patch #3002 <https://bugs.freedesktop.org/attachment.cgi?id=3002> libX11 locale defs severely adrift from glibc: locales bugfix for bs_BA (From Debian via Nathanael Nerode) 7386 7387commit 34b454df192f4563499c453ccdb8c079f4a20cbe 7388Author: Alan Coopersmith <alan.coopersmith@sun.com> 7389Date: Sat Jul 30 20:30:46 2005 +0000 7390 7391 Include config.h so Xtrans knows which transport types to build code for 7392 7393commit cd9c9936b49c125eda779b99887d7e6ae4cf56cd 7394Author: Alan Coopersmith <alan.coopersmith@sun.com> 7395Date: Sat Jul 30 19:15:16 2005 +0000 7396 7397 Add -D flags to clear various warnings (Stefan Dirsch) 7398 7399commit e7fef67b4531faddd805d8f2157903006d3117ed 7400Author: Kevin E Martin <kem@kem.org> 7401Date: Fri Jul 29 21:22:50 2005 +0000 7402 7403 Various changes preparing packages for RC0: 7404 - Verify and update package version numbers as needed 7405 - Implement versioning scheme 7406 - Change bug address to point to bugzilla bug entry form 7407 - Disable loadable i18n in libX11 by default (use --enable-loadable-i18n to reenable it) 7408 - Fix makedepend to use pkgconfig and pass distcheck 7409 - Update build script to build macros first 7410 - Update modular Xorg version 7411 7412commit 2ebb00244928237088e68325b1032b3550455ce9 7413Author: Matthieu Herrb <matthieu.herrb@laas.fr> 7414Date: Sat Jul 23 20:19:31 2005 +0000 7415 7416 remove orphan TAB at begin of line 7417 7418commit dd7a9cdecda73e024ca84c5b9a22b18688038d94 7419Author: Kevin E Martin <kem@kem.org> 7420Date: Sat Jul 23 18:09:39 2005 +0000 7421 7422 Modify modular libs to use Xregion.h instead of region.h 7423 7424commit 6d635a88d91647b1b63611c3591f74916f88cd1c 7425Author: Kevin E Martin <kem@kem.org> 7426Date: Sat Jul 23 18:06:16 2005 +0000 7427 7428 lib/Xrender/Picture.c Change region.h to Xregion.h and modify internal references to include <X11/Xregion.h>. 7429 7430commit 36283f50fd9748733ae84cb7fb52ca8d9e661c15 7431Author: Daniel Stone <daniel@fooishbar.org> 7432Date: Sat Jul 16 06:25:35 2005 +0000 7433 7434 Set soversion to 6.2.0. 7435 7436commit 75fd5ae6e4683b9b9dcc13bc2f0faf223610a74f 7437Author: Keith Packard <keithp@keithp.com> 7438Date: Fri Jul 15 04:27:32 2005 +0000 7439 7440 Add missing Makefile.am to lib/X11/modules 7441 7442commit 6d84a8b1329af1fcfe86b198f1a6e7dd6ff616c3 7443Author: Keith Packard <keithp@keithp.com> 7444Date: Fri Jul 15 04:08:51 2005 +0000 7445 7446 Move i18n modules to top-level so they can be built in the right order (before xlib for non-loadable, after xlib for loadable). 7447 Link i18n modules against xlib to resolve Xlib symbols used by them. 7448 7449commit 45f40126a73295345bb5eb187b1167874842ab6e 7450Author: Alexander Gottwald <ago@freedesktop.org> 7451Date: Thu Jul 14 19:50:00 2005 +0000 7452 7453 Add $(top_srcdir)/src to include list 7454 7455commit 0aed7d91f5928d09d541617aad03709b5090658d 7456Author: Matthieu Herrb <matthieu.herrb@laas.fr> 7457Date: Thu Jul 14 17:04:49 2005 +0000 7458 7459 Build fix for non-GNU make. 7460 7461commit b79422ccb02ab44548d1038956ab0cd4e2638645 7462Author: Adam Jackson <ajax@nwnk.net> 7463Date: Thu Jul 14 15:12:44 2005 +0000 7464 7465 typo fixes (Matthieu Herrb) 7466 7467commit 419304cde2fda19457c667870edefc0b227651b3 7468Author: Alan Coopersmith <alan.coopersmith@sun.com> 7469Date: Wed Jul 13 02:41:36 2005 +0000 7470 7471 Add missing backslashes to xlocale_la_SOURCES 7472 7473commit d14cc5c8964c4539b57c6cb51ef653292e410b79 7474Author: Keith Packard <keithp@keithp.com> 7475Date: Mon Jul 11 20:32:55 2005 +0000 7476 7477 Ammend AM_CFLAGS with all needed includes; cannot figure out an easy way to automate this. 7478 7479commit 424c2d8905eb2ad0a2df15b1da2f96140bfbcffb 7480Author: Lars Knoll <lars@trolltech.com> 7481Date: Mon Jul 11 15:24:32 2005 +0000 7482 7483 compile 7484 7485commit de9784eb1bde46efc316da279e3da27c6cc288a7 7486Author: Keith Packard <keithp@keithp.com> 7487Date: Mon Jul 11 09:26:40 2005 +0000 7488 7489 Ignore built man page files 7490 7491commit 0c258c36d1523113790c599b16d2947d7aa6469a 7492Author: Keith Packard <keithp@keithp.com> 7493Date: Mon Jul 11 09:18:31 2005 +0000 7494 7495 Minor changes to help modular Xlib build i18n modules 7496 7497commit 6e752ea1203b786423e40f43340bce15ca3de0f0 7498Author: Keith Packard <keithp@keithp.com> 7499Date: Mon Jul 11 08:29:18 2005 +0000 7500 7501 Enable loadable i18n modules, making them configurable on the configure command line. 7502 Clean up conditionals for XKB, XCMS, XLOCALEDIR 7503 Create new lib directory for locale modules in ${X11_LIBDIR}/locale/lib. Add this to the default XLOCALEDIR search path. 7504 Create separate X11_LOCALEDATADIR variable pointing at ${datadir}/X11/locale for installing locale data. 7505 Split out xcms, xkb, xlibi18n sources from main xlib bits so they can be conditionally included more easily. Lots of source files have been moved with this step; the result seems like it might be easier to maintain. 7506 Display message at end of configure script with selected options. 7507 Fix manual building with cpp to add -traditional in cpprules.in. This isn't conditionalized at all, so it will break on systems not using GNU cpp. 7508 7509commit b46cf0d879f1dbf92dcf5a0305d18986c766ed84 7510Author: Daniel Stone <daniel@fooishbar.org> 7511Date: Sun Jul 10 22:37:33 2005 +0000 7512 7513 Fix segfault when _XimProtoCreateIC() fails to create a context; Debian #239991. (Chung-chieh Shan) 7514 7515commit 6f2132b18e61ca9755e4b45550f3f5097dd1fbb7 7516Author: Alan Coopersmith <alan.coopersmith@sun.com> 7517Date: Sat Jul 9 20:06:04 2005 +0000 7518 7519 Set __libmansuffix__ & __xorgversion__ correctly when cpp processing man pages 7520 7521commit 3939ac4410446b46071c9d714f4270c12bf904fe 7522Author: Alan Coopersmith <alan.coopersmith@sun.com> 7523Date: Sat Jul 9 18:44:14 2005 +0000 7524 7525 - Since all but one line of all the nls/*/Makefile.am files are identical, move common bits to nls/localerules.in for easier updating and use automake includes to include in all the nls/*/Makefile.am files 7526 - Don't assume $(CPP) can take gcc-only -traditional flag 7527 - CPP process man pages as is done in the monolithic tree 7528 7529commit 19ba9d0df86c688319377467254b9ea9c4b0eccc 7530Author: Keith Packard <keithp@keithp.com> 7531Date: Sat Jul 9 06:01:49 2005 +0000 7532 7533 Clean up .cvsignore files 7534 7535commit f4bba6fa9b9ce637be7662754750054567e9250a 7536Author: Adam Jackson <ajax@nwnk.net> 7537Date: Sat Jul 9 02:53:29 2005 +0000 7538 7539 typo fix. i suck. 7540 7541commit 3305da61a61695e24c1ea11d3f59dddb52873d47 7542Author: Adam Jackson <ajax@nwnk.net> 7543Date: Sat Jul 9 02:41:18 2005 +0000 7544 7545 Check for bigfont proto headers via pkgconfig (Arwed von Merkatz) 7546 7547commit afdae2e8ccb93de2987b5a5e850695af15ece7e0 7548Author: Keith Packard <keithp@keithp.com> 7549Date: Fri Jul 8 07:11:56 2005 +0000 7550 7551 Create and use XlibConf.h to match modular build which needs XTHREADS defined when building extensions 7552 7553commit 86fa88dc594ca2093030acf5c84973ee2b33eb4c 7554Author: Keith Packard <keithp@keithp.com> 7555Date: Fri Jul 8 06:57:06 2005 +0000 7556 7557 Create and install XlibConf.h to provide external users of Xlibint.h the defines necessary to correctly use the library. Xlibint.h should #include this new file. 7558 Add a bunch of .cvsignore files 7559 7560commit 30f6ffedeaf899e699f0c6b14c9471ce9bcc430c 7561Author: Chris Less <clee@c133.org> 7562Date: Mon Jul 4 23:01:48 2005 +0000 7563 7564 Fixing bug #380 - add a man page for XQueryExtension, XListExtensions, and XFreeExtensionList. 7565 7566commit 55328bb6caabd37885cd19d7a5821ed425daf321 7567Author: Eric Anholt <anholt@freebsd.org> 7568Date: Sun Jul 3 10:17:38 2005 +0000 7569 7570 Avoid a gmake-specific construct, and instead just write the name of the current directory into each Makefile.am. 7571 7572commit 726538ba21b631bfb0b8094a5546acdaf57379ff 7573Author: Daniel Stone <daniel@fooishbar.org> 7574Date: Sun Jul 3 07:37:33 2005 +0000 7575 7576 Fix more include paths; add dix-config.h to XKB code. 7577 7578commit 8c7677138e70e14eca0255f2168583f0ecc21994 7579Author: Daniel Stone <daniel@fooishbar.org> 7580Date: Sun Jul 3 07:00:55 2005 +0000 7581 7582 Add Xtrans definitions (FONT_t, TRANS_CLIENT) to clean up warnings. 7583 Add XSERV_t, TRANS_SERVER, TRANS_REOPEN to quash warnings. 7584 Add #include <dix-config.h> or <xorg-config.h>, as appropriate, to all source files in the xserver/xorg tree, predicated on defines of HAVE_{DIX,XORG}_CONFIG_H. Change all Xfont includes to <X11/fonts/foo.h>. 7585 7586commit 197697c92a63091a4cc3cc04dcb7fa29d2655758 7587Author: Daniel Stone <daniel@fooishbar.org> 7588Date: Fri Jul 1 22:13:35 2005 +0000 7589 7590 Fix objdir != srcdir, as well as make distcheck. 7591 Don't attempt to create Compose.pre files; formatting fixes. 7592 Added if not already present. 7593 7594commit c162d60ad8f124563f94a2a266de59373936266c 7595Author: Søren Sandmann Pedersen <sandmann@daimi.au.dk> 7596Date: Wed Jun 22 22:46:31 2005 +0000 7597 7598 Apply these patches from Theo van Klaveren: 7599 lib-dmx.patch lib-FS.patch lib-X11.patch lib-XRes.patch lib-XScrnSaver.patch lib-xtrans.patch 7600 to make the libraries distcheck. 7601 7602commit 9ee8abdab03ea605a6327118ab7dacab6adf8876 7603Author: Alan Coopersmith <alan.coopersmith@sun.com> 7604Date: Sat Jun 18 07:48:43 2005 +0000 7605 7606 Move Secure RPC flags from X11/configure.ac to xtrans/xtrans.m4 since multiple modules will need them 7607 7608commit 12afc57b7d455781eee305e9ed6a899ceec8729e 7609Author: Daniel Stone <daniel@fooishbar.org> 7610Date: Wed Jun 15 16:50:47 2005 +0000 7611 7612 Typo fix to locale/error/keysym location declarations. 7613 7614commit 9a895777e30762f61b98d25be3b5d8b1169baa17 7615Author: Daniel Stone <daniel@fooishbar.org> 7616Date: Wed Jun 15 13:37:43 2005 +0000 7617 7618 Typo in ImUtil.h commit -- I AM CAPTAIN SKILL. 7619 7620commit add49285663684875ab7a5c58ec7a2cf8b775f67 7621Author: Daniel Stone <daniel@fooishbar.org> 7622Date: Wed Jun 15 13:32:35 2005 +0000 7623 7624 Define locations for XErrorDB, XKeysymDB, and locale data in configure.ac. Add AC_DEFINE_DIR macro from autoconf-archive.cryp.to towards this end. 7625 Move ImUtil.h from src/ to include/X11/. 7626 7627commit 845dfc6b42b950890866ee4df27761e086f50dca 7628Author: Daniel Stone <daniel@fooishbar.org> 7629Date: Wed Jun 15 13:27:48 2005 +0000 7630 7631 Move ImUtil.h from src/ to include/X11/. Additionally, copy Cmap.h as a distribution file. 7632 7633commit bba117f0d98f62cfb060d0fab97b407a3a0bfda9 7634Author: Daniel Stone <daniel@fooishbar.org> 7635Date: Fri Jun 10 14:11:36 2005 +0000 7636 7637 Remove pointless include of Xlib.h. 7638 Fix #include path to bigreqstr.h. 7639 7640commit 1a0de49da1274882bab05b0f7240936b37955e5c 7641Author: Alexander Gottwald <ago@freedesktop.org> 7642Date: Thu Jun 9 21:30:15 2005 +0000 7643 7644 Use $(srcdir) for Compose.pre and XLC_LOCALE.pre 7645 7646commit af4f0f302644ebfbb0ca9f4016a4aee85c973d37 7647Author: Alexander Gottwald <ago@freedesktop.org> 7648Date: Thu Jun 9 15:55:33 2005 +0000 7649 7650 Replace <X11/transport.c> with <X11/Xtrans/transport.c> 7651 7652commit fd5f58e0baf692e34b9b622286f18762cc2500d3 7653Author: Alexander Gottwald <ago@freedesktop.org> 7654Date: Thu Jun 9 15:52:02 2005 +0000 7655 7656 Replace <X11/Xtrans.h> with <X11/Xtrans/Xtrans.h> 7657 Copy Xtrans.h to exports/include/X11/Xtrans only 7658 7659commit 44538f9940f969d46c0e5e4b201c684cde2ba611 7660Author: Alan Coopersmith <alan.coopersmith@sun.com> 7661Date: Sun Jun 5 03:29:33 2005 +0000 7662 7663 Port Imake flags to autoconf tests & --enable-* flags: HASSETUGID, HASGETRESUID, NO_XLOCALEDIR, HAS_SHM and XF86BIGFONT 7664 7665commit 588e30e9ec65fa6205a34be650b79d5e2243edec 7666Author: Alan Coopersmith <alan.coopersmith@sun.com> 7667Date: Sat Jun 4 22:53:21 2005 +0000 7668 7669 Add --enable-secure-rpc flag and checks for needed functions for Secure RPC ("SUN-DES-1") authentication method 7670 7671commit a547afee2ef49cc41bbb67f9cff5a52a283c0854 7672Author: Alan Coopersmith <alan.coopersmith@sun.com> 7673Date: Sat Jun 4 21:20:20 2005 +0000 7674 7675 Bug #3436 <https://bugs.freedesktop.org/show_bug.cgi?id=3436> Conndis.c uses incorrect type for args to XdmcpWrap() (Mike Harris - mharris@www.linux.org.uk) 7676 7677commit ca93c761559ae464189c7ea7cf11c6a6679f2431 7678Author: Matthieu Herrb <matthieu.herrb@laas.fr> 7679Date: Sat May 28 01:02:32 2005 +0000 7680 7681 Don't use $< in explicit rules. This only works with GNU make. <https://bugs.freedesktop.org/show_bug.cgi?id=3383> 7682 7683commit 09ebb349359e3dd9131fa2fa8b07559faa173654 7684Author: Alan Coopersmith <alan.coopersmith@sun.com> 7685Date: Sun May 22 19:05:11 2005 +0000 7686 7687 Convert man pages to long file names in lib/X11, lib/Xt, & lib/Xext 7688 7689commit 761219b1ef9befc350c8a35b6f96d047e5f008cc 7690Author: Alan Coopersmith <alan.coopersmith@sun.com> 7691Date: Sat May 21 23:07:48 2005 +0000 7692 7693 xtrans: 7694 Create autoconf macro XTRANS_CONNECTION_FLAGS to provide standard set of --enable flags for which transports to support and common place to update for required libraries for platforms that need certain libs for certain transports 7695 ICE: 7696 Add ICE_t #define required by Xtrans headers. Replace static defines of LOCALCONN & UNIXCONN with new XTRANS_CONNECTION_FLAGS macro. 7697 X11: 7698 Moved transport type checks to new macro XTRANS_CONNECTION_FLAGS in xtrans.m4 in xtrans module so they can be shared by all modules using xtrans. 7699 7700commit 4b1ba6eb975b547b808f4d5c8825a3261de5e02a 7701Author: Alan Coopersmith <alan.coopersmith@sun.com> 7702Date: Sat May 21 04:26:12 2005 +0000 7703 7704 Quote $ac_cv_search_* variables to prevent errors from test when they are set to "none required" (as happens on Solaris since dlopen is in libc) 7705 Comment out "override CC = gcc" line as it breaks builds with non-GNU makes, and its incorrect to force a specific compiler. Change LINK line from gcc to $(CC). 7706 7707commit 1d425d5e2092dd18a7dd599b37ed9af61cf59819 7708Author: Adam Jackson <ajax@nwnk.net> 7709Date: Thu May 19 00:22:32 2005 +0000 7710 7711 revert last change, didn't do right thing at all, sorry for the noise 7712 7713commit 1b0c46c1ae61d751dd3ca96de8e2c3fe21c5f4f2 7714Author: Adam Jackson <ajax@nwnk.net> 7715Date: Thu May 19 00:10:07 2005 +0000 7716 7717 Require automake 1.7 in AM_INIT_AUTOMAKE 7718 7719commit cd4657c175dbab6aaca36f18a0ca92c95b5567dd 7720Author: Søren Sandmann Pedersen <sandmann@daimi.au.dk> 7721Date: Tue May 17 22:32:09 2005 +0000 7722 7723 - Check for xproto as its CFLAGS are needed in the .pc file 7724 7725commit 46e8d8a65430dd87c10b066b5cff99a689c22241 7726Author: Egbert Eich <eich-at-freedesktop-dot-org> 7727Date: Tue May 17 08:10:10 2005 +0000 7728 7729 gcc4 allows to check if sentinels are correct (a sentinel is the terminating element in a varargs list). A sentinel needs to be NULL, not 0 - which doesn't make a difference on 32bit but matters on 64bit. Furthermore it can be told that functions have a printf-like format string and argument list so that they can verify that both match. To use these features certain attributes need to be set - which are compiler specific. To do this we define macros which are expanded depending on the compiler version. For now we put those in include/Xfuncproto.h (the XFree86 DDX layer contains a file compiler.h which however is not visible outside the DDX) (Bugzilla #3268). 7730 7731commit 23198d2bfbf0049b2630235cd4d4a4ffba7ec6c1 7732Author: <ssp@aware-of-vacuity.boston.redhat.com> 7733Date: Mon May 16 22:35:27 2005 +0000 7734 7735 Make Xdmcp unconditionally required, require various protocol modules. 7736 Mon May 16 17:48:03 2005 Søren Sandmann <sandmann@redhat.com> 7737 Check for kbproto if using XKB. 7738 Require xextproto rather than xextensions 7739 Remove the entries from the xlibs tree, as they are not relevant here. 7740 7741commit 8bd3aea84ce54b8b76a898f3ae00e2b499c14a5e 7742Author: Søren Sandmann Pedersen <sandmann@daimi.au.dk> 7743Date: Mon May 16 21:48:36 2005 +0000 7744 7745 Mon May 16 17:48:03 2005 Søren Sandmann <sandmann@redhat.com> 7746 Check for kbproto if using XKB. 7747 7748commit 9b1fa9ca3ed852ed40860f137511683f4bdae6fa 7749Author: <ssp@aware-of-vacuity.boston.redhat.com> 7750Date: Mon May 16 21:27:35 2005 +0000 7751 7752 Require xextproto rather than xextensions 7753 Remove the entries from the xlibs tree, as they are not relevant here. 7754 7755commit 7eee605e3aeed549d1053325a03027c5e8cbf71b 7756Author: Søren Sandmann Pedersen <sandmann@daimi.au.dk> 7757Date: Fri May 13 22:53:36 2005 +0000 7758 7759 - For now put xtrans in X11/Xtrans/X11, since libX11 is looking for it in <X11/...> 7760 - For Xcomposite and Xdamage, don't link the build system out of the xc tree 7761 - Link the public X11 headers into their own directory 7762 - Add links to XKeysymDB and XErrorDB 7763 - Add links to all the Xlib man pages 7764 - Add links to the lcUniConv subdirectory 7765 - Conditionally include config.h in Xlib source 7766 7767commit 6769ccda88caf27d1441d335ef2b318a047a612b 7768Author: Alan Coopersmith <alan.coopersmith@sun.com> 7769Date: Mon Mar 21 04:58:21 2005 +0000 7770 7771 xc/lib/X11/ErrDes.c 7772 //bugs.freedesktop.org/show_bug.cgi?id=132) Patch #2168 (https://bugs.freedesktop.org/attachment.cgi?id=2168) Replace a couple of BUFSIZE uses with better values to check against. Fixes by Stuart Anderson <anderson@netsweng.com> 7773 7774commit 3b9e8ece93b916c55a82df53e85f097418edf471 7775Author: Roland Mainz <roland.mainz@nrubsig.org> 7776Date: Sat Mar 19 22:04:55 2005 +0000 7777 7778 xc/nls/Compose/iso8859-2 7779 xc/nls/Compose/iso8859-3 7780 xc/nls/Compose/iso8859-9 7781 //bugs.freedesktop.org/show_bug.cgi?id=2592) attachment #2156 (https://bugs.freedesktop.org/attachment.cgi?id=2156) Fix a couple of typos in ISO8859-* Compose files ("asciicircum" instead "of asciicirum"). Patch by Matthias Hopf <mhopf@suse.de>. 7782 7783commit 0ce5950a08b9ab23ca8a32effdd40c421e92df84 7784Author: Alan Coopersmith <alan.coopersmith@sun.com> 7785Date: Tue Mar 8 02:53:36 2005 +0000 7786 7787 Bugzilla Bug 2006 (https://bugs.freedesktop.org/show_bug.cgi?id=2006) Patch #2031 (https://bugs.freedesktop.org/attachment.cgi?id=2031) XEmbed client doesn't receive key events from XIM: Use | to set a bit, not &. Patch by Hidetoshi Tajima <hidetoshi.tajima@sun.com>. 7788 7789commit df341cd2f2f263f13323e8c0936ea8aa0d7fbba1 7790Author: Roland Mainz <roland.mainz@nrubsig.org> 7791Date: Tue Feb 1 03:12:28 2005 +0000 7792 7793 xc/nls/Compose/pt_BR.UTF-8 7794 //bugs.freedesktop.org/show_bug.cgi?id=2400) attachment #1762 (https://bugs.freedesktop.org/attachment.cgi?id=1762): Fix build bustage caused by broken patch for brazillian locale support (see Bugzilla #1896). Patch by Kevin E. Martin <kem@freedesktop.org>. 7795 7796commit 483d3973f56dda51f9251d3ea808aaf7f3b48c10 7797Author: Markus Kuhn <Markus.Kuhn@cl.cam.ac.uk> 7798Date: Fri Jan 28 18:31:31 2005 +0000 7799 7800 cleaned up boundary-case handling for Uxxxx Unicode keysym notation 7801 7802commit f234188a4c1e6b655aef0e3957ccad20d4c5847f 7803Author: Roland Mainz <roland.mainz@nrubsig.org> 7804Date: Wed Jan 19 01:53:55 2005 +0000 7805 7806 xc/nls/compose.dir 7807 xc/nls/locale.dir 7808 xc/nls/Compose/Imakefile 7809 xc/nls/Compose/pt_BR.UTF-8 7810 xc/nls/XI18N_OBJS/Imakefile 7811 xc/nls/XI18N_OBJS/pt_BR.UTF-8 7812 xc/nls/XLC_LOCALE/Imakefile 7813 xc/nls/XLC_LOCALE/pt_BR.UTF-8 7814 //bugs.freedesktop.org/show_bug.cgi?id=1896) attachment #1675 (https://bugs.freedesktop.org/attachment.cgi?id=1675): Add support for pt_BR.UTF-8 locale. Patch by Gustavo Noronha Silva, Branden Robinson, Julien Lafon. 7815 7816commit 7448ea7ef425d35cfc31eb41d46f4d879774f376 7817Author: Egbert Eich <eich-at-freedesktop-dot-org> 7818Date: Fri Jan 14 18:03:09 2005 +0000 7819 7820 Made some security enhancements: 7821 - no writing past end of buffer caused by bogus locale. 7822 - explicitely add a \0 character at end of string. (Bugzilla #2262) 7823 7824commit 5557d47fcf22a6f3adf327691158f2270e3d5094 7825Author: Roland Mainz <roland.mainz@nrubsig.org> 7826Date: Fri Jan 14 04:59:05 2005 +0000 7827 7828 xc/nls/compose.dir 7829 xc/nls/locale.alias 7830 xc/nls/locale.dir 7831 //bugs.freedesktop.org/show_bug.cgi?id=1830) attachment #1674 (https://bugs.freedesktop.org/attachment.cgi?id=1674): Adding support for the bs_BA (bs, bs_BA, bs_BA.iso88592, bs_BA.ISO-8859-2, bs_BA.ISO_8859-2, bs_BA.UTF-8) locale. Patch by Vedran Ljubovic <vljubovic@smartnet.ba>. 7832 7833commit 1fa3737f042f798fa11a9ff5b03f3b3ba3529824 7834Author: Egbert Eich <eich-at-freedesktop-dot-org> 7835Date: Tue Jan 11 17:37:57 2005 +0000 7836 7837 'Normalize' locale names (ie. remove any '-' and '_' and convert to lower case after the <language>_<territory> part) before matching against locale.alias (Bugzilla #2262). This needs adequate testing that we don't accidentally introduce undesirable side effects. 7838 7839commit 642cd269f94a234aa470a1d43385bd42625d89a1 7840Author: Egbert Eich <eich-at-freedesktop-dot-org> 7841Date: Tue Dec 14 08:59:20 2004 +0000 7842 7843 Removed #ifdef'ed out code together with the comment explaining why it was #ifdef'ed out. 7844 Fixed typo. 7845 Added comment to a changed that's been committed with one of the previous commits. 7846 7847commit a07ccae36e629741d2e48de7730114d30a975a41 7848Author: Matthieu Herrb <matthieu.herrb@laas.fr> 7849Date: Sun Dec 12 08:42:50 2004 +0000 7850 7851 Fix missing XChangeProperty() prototype missing in synopsis section. 7852 7853commit c73adb1c8ad806c2f9f0ba32f4b449e7a871501c 7854Author: Alexander Gottwald <ago at freedesktop dot org> 7855Date: Wed Dec 8 13:42:01 2004 +0000 7856 7857 Bugzilla #1980 (https://bugs.freedesktop.org/show_bug.cgi?id=1980) Handle XERRORDB only on WIN32 platform 7858 7859commit d5e7ab194103e22fd6c5094aaa107d90210bb600 7860Author: Jim Gettys <jg@freedesktop.org> 7861Date: Thu Dec 2 16:18:16 2004 +0000 7862 7863 fix comment to indicate additional possible mode. i bug 1756 reported by Owen Taylor. 7864 7865commit 03940d7330cb1bbf93d49c650aefb19de457da7c 7866Author: Alexander Gottwald <ago at freedesktop dot org> 7867Date: Wed Dec 1 13:06:55 2004 +0000 7868 7869 Bugzilla #1980, https://bugs.freedesktop.org/show_bug.cgi?id=1980 Make location of XErrorDB configurable 7870 7871commit 11a03ab908bfcfab8a3492684e8e9320e492d552 7872Author: Alexander Gottwald <ago at freedesktop dot org> 7873Date: Wed Dec 1 12:42:17 2004 +0000 7874 7875 Bugzilla #1864, http://freedesktop.org/bugzilla/show_bug.cgi?id=1864 Initialize pointer to NULL to avoid freeing random memory 7876 7877commit f3d83ee153f42e8899b844377e6b842d93411e62 7878Author: Alexander Gottwald <ago@freedesktop.org> 7879Date: Mon Nov 15 15:06:54 2004 +0000 7880 7881 Bufzilla #1802, http://freedesktop.org/bugzilla/show_bug.cgi?id=1802 Added mingw (Win32) port 7882 7883commit b798ea11911ac58a8e6e7d15a2a643b023859749 7884Author: Alexander Gottwald <ago at freedesktop dot org> 7885Date: Mon Nov 15 13:29:56 2004 +0000 7886 7887 Bugzilla #1864, http://freedesktop.org/bugzilla/show_bug.cgi?id=1864 Initialize pointer to NULL to avoid freeing random memory 7888 7889commit 436108cd6c84053698e5ca629096f59b34f50c2a 7890Author: Kristian Høgsberg <krh@redhat.com> 7891Date: Thu Nov 11 15:37:01 2004 +0000 7892 7893 Fix #1818 7894 7895commit bf2e6ef66ba55f90efa4a4ba8c8b6d3ec0d1531c 7896Author: Roland Mainz <roland.mainz@nrubsig.org> 7897Date: Tue Nov 9 00:56:56 2004 +0000 7898 7899 xc/nls/compose.dir 7900 xc/nls/locale.alias 7901 xc/nls/locale.dir 7902 //freedesktop.org/bugzilla/show_bug.cgi?id=1544): Adding support for the si_LK (si, sinhala, si_LK, si_LK.UTF-8) locale. Patch by Anuradha Ratnaweera <gnu.slash.linux@gmail.com>. 7903 7904commit 443890ceefbd6dafe68e30d103ec4f9d316ed655 7905Author: Roland Mainz <roland.mainz@nrubsig.org> 7906Date: Fri Nov 5 00:58:49 2004 +0000 7907 7908 xc/nls/compose.dir 7909 xc/nls/locale.alias 7910 xc/nls/locale.dir 7911 Adding some of the major indic locales (bn_IN.UTF-8, bn_IN.utf8, gu_IN.UTF-8, gu_IN.utf8, pa_IN.UTF-8, pa_IN.utf8) to X. Patch by Leon Ho <llch@redhat.com>. 7912 7913commit af7467ec734321f127b957921cce7792902b6794 7914Author: Egbert Eich <eich-at-freedesktop-dot-org> 7915Date: Mon Oct 18 17:29:03 2004 +0000 7916 7917 Correcting font encodings for GB18030, GBK and BIG5-HKSCS. Adding nls support for those encodings (Bugzilla 1573, James Su). 7918 7919commit 1b900b59cb24fe8be3db0d434b04d462c0eeb206 7920Author: Egbert Eich <eich-at-freedesktop-dot-xorg> 7921Date: Mon Oct 18 14:21:45 2004 +0000 7922 7923 Made handling of DevelDrivers for x86-64 more conformant to other platforms. 7924 Compress all font encodings (Stefan Dirsch). 7925 Fixed warnings. 7926 Turn on forwarding XNSpotLocation event to XIM server in OffTheSpot and Root mode (bugzilla #1580, James Su). 7927 Added another compose key combination for the Euro symbol (Stefan Dirsch). 7928 Added support for UTF-8 in ja_JP, ko_KR and zh_TW locales (Mike Fabian). 7929 Changed default encoding for ru from KOI8-R to ISO8859-5 (Mike Fabian). This is the encoding that is also used by glibc. We may break other libcs - lets see who complains. 7930 Added explanation for DESTDIR to install to a different directory than /. 7931 Added some early bailouts to atiprobe if PCI structure pointer is NULL to prevent sig11. 7932 XV support doesn't depend on 2D acceleration any more. This patch removes this limitation from the NSC driver. This is a patch that I have committed to XFree86 a while ago but never ported over to X.Org. Matthieu Herrb contributed some build fixes. 7933 Fixing SetDPMSTimers() so that DPMS*Time == 0 disables the appropriate timer. This takes advantage of the fact that TimerSet() with a timeout argument 0 behaves like TimerCanel(). 7934 Use /dev/xconsole (named pipe) or devpts for system logger (Werner Fink). 7935 Create missing links for backward compatibility to XFree86 (Stefan Dirsch). 7936 Changed comment to mention xorg. 7937 Changed cursor for the 'kill' action from XC_draped_box to XC_Pirate. If you don't like it we can change it back (original author unkown). 7938 Added 'pic' to the man page rendering command pipeline (Werner Fink). 7939 Added missing return value (Stefan Dirsch, Roland Mainz) 7940 7941commit 1ba103c3cad2329db3a31f88d7798b913affc570 7942Author: Eric Anholt <anholt@freebsd.org> 7943Date: Wed Oct 13 07:38:00 2004 +0000 7944 7945 Use attributes instead of pragmas for weak symbols on gcc 2.95 as well. Using pragmas may result in the symbols being undefined with big -O. (FreeBSD ports/69708, Masakazu HIGAKI <higamasa@dream.com>) 7946 7947commit d80237db627bf71ad5615ff4ba05e6ab436aa740 7948Author: Søren Sandmann Pedersen <sandmann@daimi.au.dk> 7949Date: Fri Oct 8 22:57:56 2004 +0000 7950 7951 Fri Oct 8 18:53:11 2004 Soeren Sandmann <sandmann@redhat.com> 7952 Move iso10646 last so the "fallback" fonts will actually be used if they are better matches. 7953 7954commit d1f76d17ecf418396627b1a58319f2b9b255548a 7955Author: Markus Kuhn <Markus.Kuhn@cl.cam.ac.uk> 7956Date: Sun Sep 26 22:54:57 2004 +0000 7957 7958 bug fix for previous patch 7959 7960commit 48932d9b71d10e15812f47d5b842ab6aa8dac625 7961Author: Markus Kuhn <Markus.Kuhn@cl.cam.ac.uk> 7962Date: Sun Sep 26 20:46:17 2004 +0000 7963 7964 The big keysym cleanup, to bring implementation in line with the recent revision of Appendix A of the protocol spec. (Markus Kuhn) 7965 7966commit 2e02a95dcc43dd3ec7bbaf4675ffb94f5074f543 7967Author: Egbert Eich <eich@freedesktop.org> 7968Date: Wed Sep 15 09:05:22 2004 +0000 7969 7970 Unregistering events in XSelectInput() when unregistering IM filter callbacks may be a bad idea as others may be interested in this event. Removed the call to XSelectInput() altogether as we are in root window anyway (Lubos Lunak). 7971 Fix size of a variable that gets assigned the value of SmartScheduleTime (long) to long. This should help to prevent smart scheduler lockup on 64 bit systems due to overruns (Andreas Schwab). 7972 7973commit 2d3afb68a104a80a21ee622b9abb9c95e83505d3 7974Author: Egbert Eich <eich@freedesktop.org> 7975Date: Tue Aug 31 11:37:03 2004 +0000 7976 7977 Fixed some lockups in XIM code when the application is running with multi thread support. These lockups occur deep down in XFilterEvents() which itself locks when another Xlib function gets called that also locks. This fixes two instances by separating those Xlib functions into an internal (non-locking) call and a locking wrapper that is used as an external function. There may be several other such instances therefore another more general patch is eventually required (Bugzilla #1182). 7978 7979commit e689746c8d0e21e9011e8b91a3071d235d3a2a74 7980Author: Kevin E Martin <kem@kem.org> 7981Date: Thu Aug 19 06:48:06 2004 +0000 7982 7983 Fix header file to #ifdef the XKB keysyms when they are used. This fixes the X test suite build failure. 7984 7985commit d558a53a6f57eecfcaadce5141fe3a08860defcb 7986Author: Keith Packard <keithp@keithp.com> 7987Date: Sat Aug 14 07:12:36 2004 +0000 7988 7989 Use XLIB_SKIP_ARGB_VISUALS environment variable to disable all depth 32 visuals. Necessary to keep Flash from crashing. 7990 Must call ValidateGC/ValidatePicture on "real" GC/Picture to ensure pCompositeClip is set correctly. 7991 Need to take the composite clip from the "real" GC/Picture and turn it into the clientClip for the backing version. 7992 Adjust pixmap screen origin to account for drawable->x/y Change debugging output a bit (disabled by default) 7993 7994commit 85c2d81f299ed3444658011b7d6fb0a7ab8a6f55 7995Author: Alexander Gottwald <ago@freedesktop.org> 7996Date: Fri Aug 13 16:28:19 2004 +0000 7997 7998 Set most significant bit to be a one. (Bug #1024, Kensuke Matsuzaki) 7999 Fix conversion from sjis and euc. (Bug #1024, Toshio Takabe) 8000 8001commit c4d56e4e288d4e48b84b021a61638f46e9a45e27 8002Author: Adam Jackson <ajax@nwnk.net> 8003Date: Wed Aug 11 05:25:13 2004 +0000 8004 8005 Bug #372: Prevent a crash in XPolygonRegion when called with a bogus point count. Reported by Andreas Luik. 8006 8007commit 92487437173f600f208d825f65756d3ad14a4f7e 8008Author: Kevin E Martin <kem@kem.org> 8009Date: Mon Aug 9 22:37:22 2004 +0000 8010 8011 Fix install problem on platforms not using xorg.cf/xfree86.cf (Bug #339, Harold L. Hunt II, Alexander Gottwald). 8012 Fix crash when using X core font in zh_CN.UTF-8 locale (Bug #368, Yu Shao, David Dawes). 8013 Fix glXMakeCurrent(Dpy, None, NULL) crash (Bug #719, Adam Jackson). 8014 HP-PA build fix (Bug #828, Guy Martin, Paul Anderson). 8015 Fix SDK build for GATOS and Wacom driver (Bug #829, Bryan Stine). 8016 Fix attempt to read video ROM before enabling it (Bug #843, Ivan Kokshaysky, Mike A. Harris). 8017 Fix detection of primary adapter (Bug #843, Ivan Kokshaysky, Mike A. Harris). 8018 Clarify xset man page description of how to use the keyboard repeat rate settings (Bug #846, Mike A. Harris). 8019 Fix problem where print-screen key would get remapped to sys-req in certain keymaps, which broke GNOME printscreen functionality (Bug #847, Owen Taylor). 8020 Fix several render problems: 8021 - MMIO mode support 8022 - Hang on IGP chips 8023 - VT switching hang 8024 - 3D render corruption (Bug #922, Hui Yu). 8025 8026commit 55c2ee568e7d3903258286a13bdf96ce5348ffda 8027Author: Matthieu Herrb <matthieu.herrb@laas.fr> 8028Date: Tue Jul 27 06:06:05 2004 +0000 8029 8030 - remove remaining AMOEBA references. 8031 - remove unused file. 8032 8033commit 6e884b12911eedfb003e90a3829ce66f7fc9cf2d 8034Author: Søren Sandmann Pedersen <sandmann@daimi.au.dk> 8035Date: Tue Jul 20 17:48:09 2004 +0000 8036 8037 Tue Jul 20 19:38:06 2004 Soeren Sandmann <sandmann@daimi.au.dk> 8038 Set font_data->xlfd_data to NULL after XFree(). (#837, patch from Bastien Nocera). 8039 Tue Jul 20 18:23:32 2004 Soeren Sandmann <sandmann@daimi.au.dk> 8040 Use /dev/urandom on Linux.(#761). 8041 8042commit 6f0bc97aa4e6de5a4b001f40ac10795cfdf09fc1 8043Author: Eric Anholt <anholt@freebsd.org> 8044Date: Fri May 28 23:26:44 2004 +0000 8045 8046 Forced commit to note repocopy from xc/lib/XThrStub, will be connected to the build after this. 8047 8048commit aa7010c43ae9f39fb84b5ff155f76117c9e527a0 8049Author: Egbert Eich <eich@pdx.freedesktop.org> 8050Date: Mon May 24 19:02:11 2004 +0000 8051 8052 Improve 'uniqueness' of authorization cookie sent by client for XDM-AUTHORIZATION-1. Old 'uniquness' consisted of the PID of the client, a time stamp (in seconds) and a number obtained by starting to count down from 0xffff. When a client did an XOpenDisplay() then execv'ed a child and did XOpenDisplay() again within the same second, the cookie was identical to the previous one (as the PID did not change but the static 'count down' variable was reinitialized) and thus refused by the server. 8053 8054commit 720702da29769d80ad1254d92edbad5b30f8a8da 8055Author: Alan Coopersmith <alan.coopersmith@sun.com> 8056Date: Sat May 22 03:47:42 2004 +0000 8057 8058 Bugzilla #658: XStringToKeysym fails for Greek_IOTAdiaeresis (Fixes VSW5 testcase XStringToKeysym-7 failure) 8059 8060commit 3aed873292424b497d9a7dcee2975b95bf5ac966 8061Author: Alan Coopersmith <alan.coopersmith@sun.com> 8062Date: Sat Apr 24 23:39:25 2004 +0000 8063 8064 XOpenDisplay should try tcp connection if local connections fail (aka Sun bug id #4624183). 8065 Also includes fix from NetBSD Problem Report #25098 (Michael van Elst) (Xlib segfaults with IPv6 if compiled with HASXDMAUTH). 8066 xc/config/cf/sunLib.tmpl 8067 xc/lib/FS/Imakefile Add missing shared library dependencies for Solaris 8068 8069commit c6349f43193b74a3c09945f3093a871b0157ba47 8070Author: Egbert Eich <eich@freedesktop.org> 8071Date: Fri Apr 23 18:42:09 2004 +0000 8072 8073 Merging XORG-CURRENT into trunk 8074 8075commit c3c4ddc682950a01b80825021f3e2503ab01ea7f 8076Author: Kaleb Keithley <kaleb@freedesktop.org> 8077Date: Tue Nov 25 19:28:07 2003 +0000 8078 8079 Initial revision 8080 8081commit dc4268a7dadc8da0d561757a68461246728613d3 8082Author: Kaleb Keithley <kaleb@freedesktop.org> 8083Date: Fri Nov 14 16:48:47 2003 +0000 8084 8085 Initial revision 8086 8087commit deae12c6b683898f5213992d561a59d4ea889cca 8088Author: Kaleb Keithley <kaleb@freedesktop.org> 8089Date: Fri Nov 14 15:54:30 2003 +0000 8090 8091 R6.6 is the Xorg base-line 8092