ChangeLog revision 38ae11fc
1commit f3c978476e0be6813268af494efb7ac507451116 2Author: Matt Turner <mattst88@gmail.com> 3Date: Tue Oct 9 10:26:05 2018 -0400 4 5 libX11 1.6.7 6 7 Signed-off-by: Matt Turner <mattst88@gmail.com> 8 9commit 823a0f8a820247b6c1e092f679b49cbdc2ea5c95 10Author: Michel Dänzer <michel.daenzer@amd.com> 11Date: Fri Sep 28 17:24:17 2018 +0200 12 13 poll_for_event: Allow using xcb_poll_for_queued_event 14 15 It avoids reading from the display connection again in cases where that 16 was already done. 17 18 Suggested-by: Uli Schlachter <psychon@znc.in> 19 Reviewed-by: Uli Schlachter <psychon@znc.in> 20 21commit 406afe4b0f1b655c0db19bbc9a0c48da9a46acf5 22Author: Michel Dänzer <michel.daenzer@amd.com> 23Date: Tue Sep 25 17:10:58 2018 +0200 24 25 poll_for_response: Call poll_for_event again if xcb_poll_for_reply fails 26 27 If xcb_poll_for_reply fails to find a reply, poll_for_response would 28 always return NULL. However, xcb_poll_for_reply may have read events 29 from the display connection while looking for a reply. In that case, 30 returning NULL from poll_for_response is wrong and can result in the 31 client hanging, e.g. because it returns to waiting for the display 32 connection file descriptor becoming readable after XPending incorrectly 33 returned 0 pending events. 34 35 The solution is to call poll_for_event again after xcb_poll_for_reply 36 returned 0. This will return the first of any events read by 37 xcb_poll_for_reply. 38 39 Fixes issue #79. 40 41 Reported-by: Yuxuan Shui <yshuiv7@gmail.com> 42 Bugzilla: https://bugs.freedesktop.org/108008 43 Bugzilla: https://bugs.freedesktop.org/107992 44 Reviewed-by: Adam Jackson <ajax@redhat.com> 45 46commit d0416863d5bf75af54ce81f6c30d4c1476b5e04f 47Author: Bhavi Dhingra <b.dhingra@samsung.com> 48Date: Mon Sep 28 08:33:40 2015 +0000 49 50 XcmsLookupColor: fully initialize XColor structs passed to _XColor_to_XcmsRGB 51 52 Fixes https://gitlab.freedesktop.org/xorg/lib/libx11/issues/44 53 aka https://bugs.freedesktop.org/show_bug.cgi?id=92154 54 55 Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com> 56 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 57 58commit 733f64bfeb311c1d040b2f751bfdef9c9d0f89ef 59Author: Matthieu Herrb <matthieu@herrb.eu> 60Date: Tue Aug 21 16:54:50 2018 +0200 61 62 libX11 1.6.6 63 64 Signed-off-by: Matthieu Herrb <matthieu@herrb.eu> 65 66commit 173704243fbcbea0b6de2068b4fb403c7408fb54 67Author: Matthieu Herrb <matthieu@herrb.eu> 68Date: Tue Aug 21 16:53:40 2018 +0200 69 70 Remove statement with no effect. 71 72 Signed-off-by: Matthieu Herrb <matthieu@herrb.eu> 73 74commit e83722768fd5c467ef61fa159e8c6278770b45c2 75Author: Tobias Stoeckmann <tobias@stoeckmann.org> 76Date: Fri Jul 27 16:38:00 2018 +0200 77 78 Fixed crash on invalid reply (CVE-2018-14598). 79 80 If the server sends a reply in which even the first string would 81 overflow the transmitted bytes, list[0] (or flist[0]) will be set to 82 NULL and a count of 0 is returned. 83 84 If the resulting list is freed with XFreeExtensionList or 85 XFreeFontPath later on, the first Xfree call: 86 87 Xfree (list[0]-1) 88 turns into 89 Xfree (NULL-1) 90 91 which will most likely trigger a segmentation fault. 92 93 I have modified the code to return NULL if the first string would 94 overflow, thus protecting the freeing functions later on. 95 96 Signed-off-by: Tobias Stoeckmann <tobias@stoeckmann.org> 97 98commit dbf72805fd9d7b1846fe9a11b46f3994bfc27fea 99Author: Tobias Stoeckmann <tobias@stoeckmann.org> 100Date: Fri Jul 27 16:37:17 2018 +0200 101 102 Fixed out of boundary write (CVE-2018-14600). 103 104 The length value is interpreted as signed char on many systems 105 (depending on default signedness of char), which can lead to an out of 106 boundary write up to 128 bytes in front of the allocated storage, but 107 limited to NUL byte(s). 108 109 Casting the length value to unsigned char fixes the problem and allows 110 string values with up to 255 characters. 111 112 Signed-off-by: Tobias Stoeckmann <tobias@stoeckmann.org> 113 114commit b469da1430cdcee06e31c6251b83aede072a1ff0 115Author: Tobias Stoeckmann <tobias@stoeckmann.org> 116Date: Fri Jul 27 16:36:34 2018 +0200 117 118 Fixed off-by-one writes (CVE-2018-14599). 119 120 The functions XGetFontPath, XListExtensions, and XListFonts are 121 vulnerable to an off-by-one override on malicious server responses. 122 123 The server replies consist of chunks consisting of a length byte 124 followed by actual string, which is not NUL-terminated. 125 126 While parsing the response, the length byte is overridden with '\0', 127 thus the memory area can be used as storage of C strings later on. To 128 be able to NUL-terminate the last string, the buffer is reserved with 129 an additional byte of space. 130 131 For a boundary check, the variable chend (end of ch) was introduced, 132 pointing at the end of the buffer which ch initially points to. 133 Unfortunately there is a difference in handling "the end of ch". 134 135 While chend points at the first byte that must not be written to, 136 the for-loop uses chend as the last byte that can be written to. 137 138 Therefore, an off-by-one can occur. 139 140 I have refactored the code so chend actually points to the last byte 141 that can be written to without an out of boundary access. As it is not 142 possible to achieve "ch + length < chend" and "ch + length + 1 > chend" 143 with the corrected chend meaning, I removed the inner if-check. 144 145 Signed-off-by: Tobias Stoeckmann <tobias@stoeckmann.org> 146 147commit d81da209fd4d0c2c9ad0596a8078e58864479d0d 148Author: Tobias Stoeckmann <tobias@stoeckmann.org> 149Date: Tue Jul 3 22:31:37 2018 +0200 150 151 Validation of server response in XListHosts. 152 153 If a server sends an incorrect length in its response, a client is prone 154 to perform an out of boundary read while processing the data. 155 156 The length field of xHostEntry is used to specify the amount of bytes 157 used to represent the address. It is 16 bit, which means that it is not 158 possible to perform an arbitrary memory access, but it might be enough 159 to read sensitive information, e.g. malloc-related pointers and offsets. 160 161 Signed-off-by: Tobias Stoeckmann <tobias@stoeckmann.org> 162 Reviewed-by: Matthieu Herrb <matthieu@herrb.eu> 163 164commit b676e62377483df77bcb6472d26b24f901323fa9 165Author: Samuel Thibault <samuel.thibault@ens-lyon.org> 166Date: Wed Jun 13 15:46:58 2018 +0200 167 168 XkbOpenDisplay.3: fix typo 169 170 XkbOpenDisplay returns a pointer to Display, not a Display. 171 172 Signed-off-by: Samuel Thibault <samuel.thibault@ens-lyon.org> 173 174commit 9c5845ff0dc080ff10bd68af4fc40fcd805728ca 175Author: Martin Natano <natano@natano.net> 176Date: Sat Oct 8 19:57:50 2016 +0200 177 178 Don't rebuild ks_tables.h if nothing changed. 179 180 ks_tables.h is always considered out of date due to the forced rebuild 181 of the makekeys util. This means the file is also rebuilt during 'make 182 install', which is usually performed as root, which can to lead 183 permission problems later on. 184 185 Signed-off-by: Martin Natano <natano@natano.net> 186 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 187 188commit 796f754cba6d75b676a0fc39b97802198fceda4f 189Author: Alan Coopersmith <alan.coopersmith@oracle.com> 190Date: Sat May 5 14:43:30 2018 -0700 191 192 Change fall through comment in lcDB.c to match gcc's requirements 193 194 Needs to match one of the regexps shown under 195 https://gcc.gnu.org/onlinedocs/gcc-7.3.0/gcc/Warning-Options.html#index-Wimplicit-fallthrough 196 197 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 198 199commit 82ca6308757126fa7ffc6588f1e5d8e3be04251b 200Author: Alan Coopersmith <alan.coopersmith@oracle.com> 201Date: Sat Mar 24 19:45:14 2018 -0700 202 203 Use size_t for buffer sizes in SetHints.c 204 205 These variables store values returned from strlen() as a size_t 206 and are passed to Xmalloc, which expects a size_t, so lets stop 207 converting back and forth to int along the way. 208 209 Reported by: Konstantin SKliarov 210 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 211 Reviewed-by: Matthieu Herrb <matthieu@herrb.eu> 212 213commit 50a5a98984097d614227d22a49265e12b172cac7 214Author: Bhavi Dhingra <b.dhingra@samsung.com> 215Date: Tue Jul 5 11:37:50 2016 +0530 216 217 Fix possible memory leak in cmsProp.c:140 218 219 https://bugs.freedesktop.org/show_bug.cgi?id=96814 220 221 Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com> 222 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 223 224commit a9dafdd57c71473fa3a2ec4887e973e4e9876d83 225Author: Michal Srb <msrb@suse.com> 226Date: Thu Mar 15 09:50:58 2018 +0100 227 228 Use flexible array member instead of fake size. 229 230 The _XimCacheStruct structure is followed in memory by two strings containing 231 fname and encoding. The memory was accessed using the last member of the 232 structure `char fname[1]`. That is a lie, prohibits us from using sizeof and 233 confuses checkers. Lets declare it properly as a flexible array, so compilers 234 don't complain about writing past that array. As bonus we can replace the 235 XOffsetOf with regular sizeof. 236 237 Fixes GCC8 error: 238 In function 'strcpy', 239 inlined from '_XimWriteCachedDefaultTree' at imLcIm.c:479:5, 240 inlined from '_XimCreateDefaultTree' at imLcIm.c:616:2, 241 inlined from '_XimLocalOpenIM' at imLcIm.c:700:5: 242 /usr/include/bits/string_fortified.h:90:10: error: '__builtin_strcpy' 243 forming offset 2 is out of the bounds [0, 1] [-Werror=array-bounds] 244 return __builtin___strcpy_chk (__dest, __src, __bos (__dest)); 245 246 Caused by this line seemingly writing past the fname[1] array: 247 imLcIm.c:479: strcpy (m->fname+strlen(name)+1, encoding); 248 249 Reviewed-by: Keith Packard <keithp@keithp.com> 250 Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net> 251 252commit 34f4464f69a4d6ff0d1042500a62f9a5ed7f3647 253Author: Alan Coopersmith <alan.coopersmith@oracle.com> 254Date: Tue Mar 6 11:42:27 2018 -0800 255 256 If XGetImage fails to create image, don't dereference it to bounds check 257 258 Reported by gcc 7.3: 259 260 GetImage.c:110:25: warning: potential null pointer dereference [-Wnull-dereference] 261 if (planes < 1 || image->height < 1 || image->bytes_per_line < 1 || 262 ~~~~~^~~~~~~~ 263 264 Introduced by 8ea762f94f4c942d898fdeb590a1630c83235c17 in Xlib 1.6.4 265 266 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 267 Reviewed-by: Emil Velikov <emil.velikov@collabora.com> 268 269commit e835a9dcc3362b5e92893be756dd7ae361e64ced 270Author: wharms <wharms@bfs.de> 271Date: Sun Sep 3 14:17:45 2017 +0200 272 273 silence gcc warning assignment discards 'const' qualifier from pointer target type 274 275commit 36a1ac0253fea82ff79cc52ba56c5691cfd07a3b 276Author: wharms <wharms@bfs.de> 277Date: Sun Aug 20 21:51:57 2017 +0200 278 279 remove empty line 280 281commit e02dfe54f32b4165351d2712a9d2e0584906a3ce 282Author: wharms <wharms@bfs.de> 283Date: Sun Aug 20 21:50:33 2017 +0200 284 285 add _X_UNUSED to avoid unused variable warnings 286 287commit 2911c39cecd63ed3747072a5eeeb9eedffc881e9 288Author: walter harms <wharms@bfs.de> 289Date: Sat Jun 4 17:19:59 2016 +0200 290 291 Fixes: warning: variable 'req' set but not,used 292 293 Fixes: warning: variable 'req' set but not used [-Wunused-but-set-variable] 294 by marking req _X_UNUSED 295 Solution was discussed on xorg-devel ML 296 Peter Hutter, Alan Coopersmith 297 Re: [PATCH libX11 3/5] fix: warning: pointer targets in passing argument 2 of '_XSend' differ in signedness [-Wpointer-sign] 298 299 Signed-off-by: harms wharms@bfs.de 300 301commit bf82ec0402479fd8399d69e7d62fc17d7956699a 302Author: walter harms <wharms@bfs.de> 303Date: Sat Jun 4 17:22:07 2016 +0200 304 305 mark _XDefaultIOError as no_return 306 307 mark _XDefaultIOError as no_return. No one comes back from exit() ... 308 309 Signed-off-by: harms wharms@bfs.de 310 311commit 9abe8380074edea3ac4e72466ec47e921ca05e47 312Author: walter harms <wharms@bfs.de> 313Date: Sat Jun 4 17:21:52 2016 +0200 314 315 no need to check XFree arguments 316 317 You can save a bit of code. The is no need to check XFree arguments bring free_fontdataOM in line with other free function and check for NULL arg 318 319 Signed-off-by: harms wharms@bfs.de 320 321commit 433477fcb7e07d0c26a22ba78aae88827ed1f440 322Author: walter harms <wharms@bfs.de> 323Date: Tue Apr 26 16:32:20 2016 +0200 324 325 fix memleak in error path 326 327 free all mem on error 328 Signed-off-by: walter harms <wharms@bfs.de> 329 330commit ed9f0d34abc645eee56e21863f23acb4d0bb8e9a 331Author: walter harms <wharms@bfs.de> 332Date: Tue Apr 26 17:58:16 2016 +0200 333 334 fix memleak in error path 335 336 V2: remove unneeded NULL (reported by eric.engestrom@imgtec.com) 337 338 fix mem leak in error path 339 Signed-off-by: walter harms <wharms@bfs.de> 340 341commit 7c78fc57693afa94cf26170f0f6276e3b7374ed0 342Author: walter harms <wharms@bfs.de> 343Date: Tue Apr 26 16:34:11 2016 +0200 344 345 no need to check args for Xfree() 346 347 simplify code 348 349 Signed-off-by: walter harms <wharms@bfs.de> 350 351commit c1c14af441ae73d1a8e67a971fafcf967e45ac48 352Author: walter harms <wharms@bfs.de> 353Date: Tue Apr 26 16:23:46 2016 +0200 354 355 remove stray extern 356 357 remove stray extern 358 359 Signed-off-by: walter harms <wharms@bfs.de> 360 361commit 714921f041a245dc5f37a689268b584226a2ccb9 362Author: walter harms <wharms@bfs.de> 363Date: Mon Apr 11 18:26:52 2016 +0200 364 365 no need to check argument for _XkbFree() 366 367 simplify code by removing unneeded checks 368 369 Signed-off-by: walter harms <wharms@bfs.de> 370 371commit d02c2466f65063a03c97dbcee05071c12a3676e6 372Author: walter harms <wharms@bfs.de> 373Date: Mon Apr 11 18:22:38 2016 +0200 374 375 fix more shadow warning 376 377 Signed-off-by: walter harms <wharms@bfs.de> 378 379commit 0355c3926d5372f9762f235071dbd94a89bbbdad 380Author: walter harms <wharms@bfs.de> 381Date: Thu Mar 31 19:16:33 2016 +0200 382 383 fix shadow char_size 384 385 Signed-off-by: walter harms <wharms@bfs.de> 386 387commit 916dffadf052135df3398651be873c353da629e1 388Author: walter harms <wharms@bfs.de> 389Date: Thu Mar 31 19:14:32 2016 +0200 390 391 remove argument check for free() adjust one inden 392 393 Signed-off-by: walter harms <wharms@bfs.de> 394 395commit 6ec901ebca3fea6a762e22090dc35b1b90911133 396Author: walter harms <wharms@bfs.de> 397Date: Thu Mar 31 19:12:17 2016 +0200 398 399 _XIOError(dpy); will never return so remore dead 400 401 Signed-off-by: walter harms <wharms@bfs.de> 402 403commit 83107a677b2ed458e4d62ea4a601e8181d3683d8 404Author: walter harms <wharms@bfs.de> 405Date: Thu Mar 31 19:10:49 2016 +0200 406 407 fix shadow warning 408 409 Signed-off-by: walter harms <wharms@bfs.de> 410 411commit 4fe66b1c5112b07bd09e28bbc021911d08a9621f 412Author: Ryan C. Gordon <icculus@icculus.org> 413Date: Wed Aug 2 02:41:03 2017 -0400 414 415 Valgrind fix for XStoreColor and XStoreColors. 416 417 If the "pad" field isn't set, Valgrind will report it as uninitialized 418 memory accesses when the struct is copied into the Display's send buffer. 419 420 In practice, this is (probably) harmless, but Valgrind is correct in 421 believing it's a bug. 422 423 https://bugs.freedesktop.org/attachment.cgi?id=133189 424 425 Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com> 426 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 427 428commit 7d2010fec25c2f52b873ad0572479eb43128b038 429Author: Alan Coopersmith <alan.coopersmith@oracle.com> 430Date: Fri Apr 7 00:13:03 2017 -0700 431 432 Improve table formatting in XkbChangeControls & XkbKeyNumGroups man pages 433 434 Includes fix for Solaris Bug 24564279: "XkbKeyNumGroups.3x11 man page 435 contains some malformed text" caused by extra whitespace after .TE macros 436 437 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 438 439commit b856d5d929047d1ea169814d56e43784ea404c83 440Author: Alan Coopersmith <alan.coopersmith@oracle.com> 441Date: Thu Mar 16 00:05:49 2017 -0700 442 443 Clarify state parameter to XkbSetNamedDeviceIndicator 444 445 Checking a Bool to see if it's NULL does not work well in C. 446 Also reported in https://bugs.freedesktop.org/show_bug.cgi?id=251 447 448 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 449 Reviewed-by: Adam Jackson <ajax@redhat.com> 450 451commit c6dadd4cebd994aafb37a58b3adbaa82507c2d18 452Author: Alan Coopersmith <alan.coopersmith@oracle.com> 453Date: Wed Mar 15 23:50:26 2017 -0700 454 455 Make Xkb{Get,Set}NamedIndicator spec & manpages match code 456 457 The XKB Library spec and the man pages for XkbGetNamedIndicator & 458 XkbSetNamedIndicator included a device_spec argument neither function 459 takes, and do not include the XkbGetNamedDeviceIndicator & 460 XkbSetNamedDeviceIndicator variants that do take it (along with two 461 other arguments). 462 463 This updates them to match the interfaces the code has provided for 464 decades. 465 466 This has been reported multiple times, so this fixes: 467 https://bugs.freedesktop.org/show_bug.cgi?id=251 468 https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=729812 469 Sun Bug 4528016 XkbSetNamedIndicator & XkbGetNamedIndicator man pages are wrong 470 (filed: alan.coopersmith@sun.com 2001-11-15 - now aka Oracle bug 15087506) 471 X.Org Group Defect Id #9418 472 473 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 474 Reviewed-by: Adam Jackson <ajax@redhat.com> 475 476commit 2d20890e7ffd3ee88a9ceb25cdd2ac1fe7aaceb6 477Author: Arthur Huillet <ahuillet@nvidia.com> 478Date: Wed Feb 1 15:02:41 2017 +0100 479 480 _XDefaultError: set XlibDisplayIOError flag before calling exit 481 482 _XReply isn't reentrant, and it can lead to deadlocks when the default error 483 handler is called: _XDefaultError calls exit(1). It is called indirectly by 484 _XReply when a X protocol error comes in that isn't filtered/handled by an 485 extension or the application. This means that if the application (or one of its 486 loaded shared libraries such as the NVIDIA OpenGL driver) has registered any 487 _fini destructor, _fini will get called while still on the call stack of 488 _XReply. If the destructor interacts with the X server and calls _XReply, it 489 will hit a deadlock, looping on the following in _XReply: 490 491 ConditionWait(dpy, dpy->xcb->reply_notify); 492 493 It is legal for an application to make Xlib calls during _fini, and that is 494 useful for an OpenGL driver to avoid resource leaks on the X server side, for 495 example in the dlopen/dlclose case. However, the driver can not readily tell 496 whether its _fini is being called because Xlib called exit, or for another 497 reason (dlclose), so it is hard to cleanly work around this issue in the driver. 498 499 This change makes it so _XReply effectively becomes a no-op when called after 500 _XDefaultError was called, as though an XIOError had happened. The dpy 501 connection isn't broken at that point, but any call to _XReply is going to hang. 502 This is a bit of a kludge, because the more correct solution would be to make 503 _XReply reentrant, maybe by broadcasting the reply_notify condition before 504 calling the default error handler. However, such a change would carry a grater 505 risk of introducing regressions in Xlib. 506 507 This change will drop some valid requests on the floor, but this should not 508 matter, as it will only do so in the case where the application is dying: X will 509 clean up after it once exit() is done running. There is the case of 510 XSetCloseDownMode(RETAIN_PERMANENT), but an application using that and wishing 511 to clean up resources in _fini would currently be hitting a deadlock, which is 512 hardly a better situation. 513 514 Signed-off-by: Aaron Plattner <aplattner@nvidia.com> 515 Reviewed-by: Jamey Sharp <jamey@minilop.net> 516 517commit 42f4d7af9cf6d1dbfa575552e057328b054a20c9 518Author: Matt Turner <mattst88@gmail.com> 519Date: Sat Feb 25 21:54:22 2017 -0800 520 521 libX11 1.6.5 522 523 Signed-off-by: Matt Turner <mattst88@gmail.com> 524 525commit a0da5835e8078445947c828fe2d86c1a31439012 526Author: Adam Jackson <ajax@redhat.com> 527Date: Tue Feb 14 15:33:29 2017 -0500 528 529 Revert "Compose sequences for rouble sign" 530 531 This reverts commit d9e34061307748cb7318ed6b5f83ee5ee9b81fd0. 532 533 Reported to break 'make check': 534 535 https://lists.freedesktop.org/archives/xorg-devel/2017-February/052720.html 536 537commit d9e34061307748cb7318ed6b5f83ee5ee9b81fd0 538Author: Mihail Konev <k.mvc@ya.ru> 539Date: Fri Feb 10 18:48:18 2017 +0500 540 541 Compose sequences for rouble sign 542 543 Cyrillic combinations mirror the Qwerty-Jcuken keyboard layout. 544 Also add Cyrillic sequences for hryvnia sign. 545 546 Submitted-by: Victor V. Kustov <coyote@bks.tv> 547 Reviewed-by: Victor V. Kustov <coyote@bks.tv> 548 Signed-off-by: Mihail Konev <k.mvc@ya.ru> 549 550commit 23d9623c661694aba8cf1e8f277dffa7a86cf065 551Author: Petr Písař <petr.pisar@atlas.cz> 552Date: Sun Oct 30 12:49:11 2016 +0100 553 554 Revert cs_CZ.UTF-8 XLC_LOCALE to en_US.UTF-8 555 556 The cs_CZ.UTF-8/XLC_LOCALE is an empty file leading to unsupported cs_CZ.UTF-8 557 locale and reporting this error: 558 559 Warning: locale not supported by Xlib, locale set to C 560 561 Therefore this patch reverts to the en_US.UTF-8 definition file that was used 562 before. This patch also deduplicates the cs_CZ.UTF-8 entry. 563 564 <https://bugs.freedesktop.org/show_bug.cgi?id=98219> 565 566 This reverts commit 33840a5465a2e5fecab520bfbdd2d1bd0a456f51 567 568 Signed-off-by: Julien Cristau <jcristau@debian.org> 569 570commit 71b0929ebc1f0f877f63e3f6de260f529daa6c69 571Author: Mihail Konev <k.mvc@ya.ru> 572Date: Thu Jan 26 13:52:49 2017 +1000 573 574 autogen: add default patch prefix 575 576 Signed-off-by: Mihail Konev <k.mvc@ya.ru> 577 578commit 2979011bc170c55894b9185b26376f8efc6db7d4 579Author: Emil Velikov <emil.l.velikov@gmail.com> 580Date: Mon Mar 9 12:00:52 2015 +0000 581 582 autogen.sh: use quoted string variables 583 584 Place quotes around the $srcdir, $ORIGDIR and $0 variables to prevent 585 fall-outs, when they contain space. 586 587 Signed-off-by: Emil Velikov <emil.l.velikov@gmail.com> 588 Reviewed-by: Peter Hutterer <peter.hutterer@who-t.net> 589 Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net> 590 591commit 4a0082a1b6affa65d38294f0e13511525cd8ad15 592Author: Peter Hutterer <peter.hutterer@who-t.net> 593Date: Tue Jan 24 10:32:07 2017 +1000 594 595 autogen.sh: use exec instead of waiting for configure to finish 596 597 Syncs the invocation of configure with the one from the server. 598 599 Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net> 600 Reviewed-by: Emil Velikov <emil.velikov@collabora.com> 601 602commit c74b070f2712c95f0db7c320a10232b0e5c83049 603Author: Julien Cristau <jcristau@debian.org> 604Date: Sat Jan 7 16:20:31 2017 +0100 605 606 Fix wrong Xfree in XListFonts failure path 607 608 'ch' gets moved inside the allocated buffer as we're looping through 609 fonts, so keep a reference to the start of the buffer so we can pass 610 that to Xfree in the failure case. 611 612 Fixes: commit 20a3f99eba5001925b8b313da3accb7900eb1927 "Plug a memory leak" 613 614 Signed-off-by: Julien Cristau <jcristau@debian.org> 615 Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com> 616 Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net> 617 618commit 663f47075fe67bab4f99bc5d186c49175d4a4334 619Author: Alan Coopersmith <alan.coopersmith@oracle.com> 620Date: Sun Jan 1 20:57:58 2017 -0800 621 622 specs/libX11: Update Portability Considerations for the 21st century 623 624 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 625 Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net> 626 627commit 28f4b989b52fcf45c7e75a878d8d9c2583cd6b3c 628Author: Alan Coopersmith <alan.coopersmith@oracle.com> 629Date: Sun Jan 1 20:39:53 2017 -0800 630 631 specs/libX11: Fix broken synopsis for Data/Data16/Data32 632 633 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 634 635commit 382561951e3460b09c21a1a23748cde0315fbb19 636Author: Alan Coopersmith <alan.coopersmith@oracle.com> 637Date: Sun Jan 1 20:31:54 2017 -0800 638 639 specs/libX11: Add missing parameter types for XGetWindowProperty() 640 641 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 642 643commit 2beaecdb66965b861d6b790d151ba947f65f0a22 644Author: Alan Coopersmith <alan.coopersmith@oracle.com> 645Date: Sun Jan 1 20:16:08 2017 -0800 646 647 specs/libX11: Make paramdef spacing more consistent 648 649 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 650 651commit 4c436c6c14cfd4c397b011563bf13c2872861133 652Author: Alan Coopersmith <alan.coopersmith@oracle.com> 653Date: Sun Jan 1 20:02:53 2017 -0800 654 655 specs/libX11: Fix paramdef entries listing multiple parameters 656 657 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 658 659commit 1728b1a8a4718315da8e5c9cbc2c04bb75c74107 660Author: Alan Coopersmith <alan.coopersmith@oracle.com> 661Date: Sun Jan 1 19:38:40 2017 -0800 662 663 specs/libX11: More synopsis fixes 664 665 Mostly transforming macro definitions and functions taking void arguments 666 from undecorated <para> tags to use <funcsynopsis> tags to get decorations. 667 668 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 669 670commit f0dc83db7e3a3d4a76c0f9d24763b80f01c893a9 671Author: Lucien Gentis <lucien.gentis@waika9.com> 672Date: Wed Jun 1 17:02:47 2016 +0200 673 674 Typos in "Xlib - C Language X Interface" document - Chapter 02 675 676 This patch fixes typos and lack of tags in "Xlib - C Language X Interface" document - Chapter 02. 677 678 Signed-off-by: Lucien Gentis <lucien.gentis@waika9.com> 679 Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com> 680 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 681 682commit 20a3f99eba5001925b8b313da3accb7900eb1927 683Author: Emilio Pozuelo Monfort <pochu@debian.org> 684Date: Tue Oct 25 21:30:15 2016 +0200 685 686 Plug a memory leak 687 688 This was introduced in 8ea762f. 689 690 Reported-by: Julien Cristau <jcristau@debian.org> 691 Signed-off-by: Emilio Pozuelo Monfort <pochu@debian.org> 692 Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net> 693 694commit 8f349feac24aacc958bd816afcc52380764e3d92 695Author: Matthieu Herrb <matthieu.herrb@laas.fr> 696Date: Tue Oct 4 21:01:39 2016 +0200 697 698 libX11 1.6.4 699 700 Signed-off-by: Matthieu Herrb <matthieu.herrb@laas.fr> 701 702commit 8ea762f94f4c942d898fdeb590a1630c83235c17 703Author: Tobias Stoeckmann <tobias@stoeckmann.org> 704Date: Sun Sep 25 21:25:25 2016 +0200 705 706 Validation of server responses in XGetImage() 707 708 Check if enough bytes were received for specified image type and 709 geometry. Otherwise GetPixel and other functions could trigger an 710 out of boundary read later on. 711 712 Signed-off-by: Tobias Stoeckmann <tobias@stoeckmann.org> 713 Reviewed-by: Matthieu Herrb <matthieu@herrb.eu> 714 715commit 8c29f1607a31dac0911e45a0dd3d74173822b3c9 716Author: Tobias Stoeckmann <tobias@stoeckmann.org> 717Date: Sun Sep 25 21:22:57 2016 +0200 718 719 The validation of server responses avoids out of boundary accesses. 720 721 v2: FontNames.c return a NULL list whenever a single 722 length field from the server is incohent. 723 724 Signed-off-by: Tobias Stoeckmann <tobias@stoeckmann.org> 725 Reviewed-by: Matthieu Herrb <matthieu@herrb.eu> 726 727commit 78851f6a03130e3c720b60c3cbf96f8eb216d741 728Author: walter harms <wharms@bfs.de> 729Date: Mon Aug 15 19:18:14 2016 +0200 730 731 XFree will accept NULL as argument 732 733 since Xfree is a define for free(): 734 Xlibint.h:#define Xfree(ptr) free((ptr)) 735 736 Xfree will accept NULL and do nothing. 737 738 Signed-off-by: Hans de Goede <hdegoede@redhat.com> 739 740commit 83adf3d1e3d0d6602244381334f75c216da4ab6e 741Author: Matthew D. Fuller <fullermd@over-yonder.net> 742Date: Sat Jun 4 11:24:01 2016 -0500 743 744 Fixup param specification for XChangeProperty() 745 746 Signed-off-by: Matthew D. Fuller <fullermd@over-yonder.net> 747 Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net> 748 749commit 3129c757f9da8586ab8b8654a56c8f687cc9ef5c 750Author: Mats Blakstad <mats.gbproject@gmail.com> 751Date: Sun Feb 28 13:22:03 2016 -0500 752 753 New compose keys for local languages in Togo 754 755 Signed-off-by: James Cloos <cloos@jhcloos.com> 756 757commit e1011b9e2f6c82255959cf3cc1d8cda402ded0a9 758Author: Daniel Albers <daniel@lbe.rs> 759Date: Wed Mar 9 14:35:48 2016 +0100 760 761 Add Compose sequence for U+1F4A9. 762 763 Signed-off-by: Daniel Albers <daniel@lbe.rs> 764 765commit 6d7bb040c928485f2557c2c914b95cffb2354179 766Author: Alan Coopersmith <alan.coopersmith@oracle.com> 767Date: Sat Feb 6 14:18:32 2016 -0800 768 769 xcms: use size_t for pointer offsets passed to strncmp 770 771 instead of converting to int and back 772 773 Fixes clang warnings of the form: 774 HVC.c:190:43: warning: implicit conversion changes signedness: 'int' to 775 'unsigned long' [-Wsign-conversion] 776 if (strncmp(spec, _XcmsTekHVC_prefix, n) != 0) { 777 ~~~~~~~ 778 779 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 780 781commit a9266804eed38a83897ab5f0f9f8a8ab82a98882 782Author: Alan Coopersmith <alan.coopersmith@oracle.com> 783Date: Sat Feb 6 13:32:44 2016 -0800 784 785 xcms: use unsigned indexes when looping through unsigned values 786 787 Clears many gcc warnings of the form: 788 789 uvY.c: In function ‘XcmsCIEuvYToCIEXYZ’: 790 uvY.c:263:19: warning: comparison between signed and unsigned integer 791 expressions [-Wsign-compare] 792 for (i = 0; i < nColors; i++, pColor++) { 793 ^ 794 795 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 796 797commit 0ee0d383b4488b7b90d8bd50b75c371e0dc0d397 798Author: Alan Coopersmith <alan.coopersmith@oracle.com> 799Date: Sat Feb 6 13:01:25 2016 -0800 800 801 xcms: use size_t for strlen/sizeof values instead of converting to int & back 802 803 Fixes gcc warnings of the form: 804 805 IdOfPr.c: In function ‘XcmsFormatOfPrefix’: 806 IdOfPr.c:69:32: warning: comparison between signed and unsigned integer expressions [-Wsign-compare] 807 if ((len = strlen(prefix)) >= sizeof(string_buf)) { 808 ^ 809 IdOfPr.c:83:11: warning: comparison between signed and unsigned integer expressions [-Wsign-compare] 810 if (len >= sizeof(string_buf)) Xfree(string_lowered); 811 ^ 812 IdOfPr.c:97:11: warning: comparison between signed and unsigned integer expressions [-Wsign-compare] 813 if (len >= sizeof(string_buf)) Xfree(string_lowered); 814 ^ 815 IdOfPr.c:104:13: warning: comparison between signed and unsigned integer expressions [-Wsign-compare] 816 if (len >= sizeof(string_buf)) Xfree(string_lowered); 817 ^ 818 819 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 820 821commit 4de6ed3e7b1833c52c9d58ab74d59d57ca2a9f0d 822Author: Dominik Muth <nxdomainuser-muth@yahoo.com> 823Date: Thu Mar 26 07:52:58 2015 +0100 824 825 Xlib.h: Fix macros imitating C functions. 826 827 The basic rule "put parantheses around macro parameters" should be 828 observed where possible. Otherwise code like 829 830 ConnectionNumber(foo = bar); 831 832 fails to compile. (It obviously passes if ConnectionNumber is a C 833 function.) There are several other macros amended for the same reason. 834 835 This bug appeared while building http://ioccc.org/1993/cmills.c, so 836 historically it was not present. 837 838 Signed-off-by: Dominik Muth <muth@nxdomain.no-ip.biz> 839 Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com> 840 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 841 842commit 3706b0f2b14cc97578a6bee620266edca2722ebf 843Author: Alan Coopersmith <alan.coopersmith@oracle.com> 844Date: Fri Nov 15 18:03:25 2013 -0800 845 846 Don't need to link libX11-xcb against libX11 847 848 libX11-xcb only accesses data structures defined in X11 headers, 849 it doesn't call any functions or reference any global variables 850 in libX11 itself. (Seems to have been left from previous XCL 851 implementation.) 852 853 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 854 855commit eddf1bbd18872b286a9f939140f0cd9ba4e93804 856Author: Alan Coopersmith <alan.coopersmith@oracle.com> 857Date: Fri Jan 22 11:44:25 2016 -0800 858 859 Stop checking for preferred order of local transports 860 861 Removes --with-local-transport-order=... flag to configure. 862 863 Code which used this ordered list was removed in commit 15e5eaf6289 864 which outsourced X11 connection handling & authentication to libxcb. 865 866 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 867 Reviewed-by: Matthieu Herrb <matthieu@herrb.eu> 868 869commit 1a66c1e964ff8d11382313404f48b5a3d5ed8be8 870Author: Alan Coopersmith <alan.coopersmith@oracle.com> 871Date: Fri Jan 22 09:39:28 2016 -0800 872 873 Stop checking XTRANS_SECURE_RPC_FLAGS since we no longer use them 874 875 Removes --enable-secure-rpc & --disable-secure-rpc flags to configure 876 877 Code that used SECURE_RPC definitions was removed in commit 15e5eaf6289 878 which outsourced X11 connection handling & authentication to libxcb. 879 880 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 881 Reviewed-by: Matthieu Herrb <matthieu@herrb.eu> 882 883commit 7eb724dc24505f1591ef32620fa63f079b540646 884Author: Olivier Fourdan <ofourdan@redhat.com> 885Date: Thu Jan 21 11:54:19 2016 +0100 886 887 XKB: fix XkbGetKeyboardByName with Xming server 888 889 XkbGetKeyboardByName relies on flags to read the data from the server. 890 891 If the X server sends us the wrong flags or if a subreply is smaller 892 than it should be, XkbGetKeyboardByName will not read all the available 893 data and leave data in the buffer, which will cause the next _XReply() 894 to fail with: 895 896 [xcb] Extra reply data still left in queue 897 [xcb] This is most likely caused by a broken X extension library 898 [xcb] Aborting, sorry about that. 899 xcb_io.c:576: _XReply: Assertion `!xcb_xlib_extra_reply_data_left' failed. 900 Aborted 901 902 Check if there is some extra data left at the end of 903 XkbGetKeyboardByName() and discard that data if any is found. 904 905 Many thanks to Peter Hutterer <peter.hutterer@who-t.net> for finding the 906 root cause of the issue and Adam Jackson <ajax@redhat.com> for helping 907 with the analysis! 908 909 Signed-off-by: Olivier Fourdan <ofourdan@redhat.com> 910 Reviewed-by: Daniel Stone <daniels@collabora.com> 911 Reviewed-by: Peter Hutterer <peter.hutterer@who-t.net> 912 Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net> 913 914commit 43ba0a68d3d17b496ec1f48d44921122ddd7d7d9 915Author: Alan Coopersmith <alan.coopersmith@oracle.com> 916Date: Sat Dec 19 18:03:41 2015 -0800 917 918 lcPubWrap: replace malloc(strlen) + strcpy with strdup 919 920 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 921 Reviewed-by: Adam Jackson <ajax@redhat.com> 922 923commit 6fc95cb12b70c5a67cb4fc5e5749f9f1ec741e2a 924Author: Alan Coopersmith <alan.coopersmith@oracle.com> 925Date: Sat Dec 19 10:21:04 2015 -0800 926 927 XlcDL.c: reduce code duplication 928 929 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 930 Reviewed-by: Adam Jackson <ajax@redhat.com> 931 932commit f7ecc0856be58608881d2086954cb71857ad64e1 933Author: Alan Coopersmith <alan.coopersmith@oracle.com> 934Date: Sat Dec 19 10:19:25 2015 -0800 935 936 XlcDL.c: replace strcpy+strcat sequences with snprintf 937 938 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 939 Reviewed-by: Adam Jackson <ajax@redhat.com> 940 941commit 522989b34398bd6a6ea144c4af0ba69d6dc4faea 942Author: Alan Coopersmith <alan.coopersmith@oracle.com> 943Date: Sat Dec 19 10:05:42 2015 -0800 944 945 XDefaultOMIF: Remove comments referring to ancient Sun bug ids 946 947 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 948 Reviewed-by: Adam Jackson <ajax@redhat.com> 949 950commit b738a104ae80e4270dd1d215ad0c6a80016982c2 951Author: Alan Coopersmith <alan.coopersmith@oracle.com> 952Date: Sat Dec 19 10:00:22 2015 -0800 953 954 XDefaultOMIF: additional code simplification 955 956 Don't need to test for a case that we already returned for, don't need 957 to store a count that will only ever be 1 if we didn't return, don't 958 need to increment pointers to allow storing more than one item when we 959 can only ever possibly do one. 960 961 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 962 Reviewed-by: Adam Jackson <ajax@redhat.com> 963 964commit 31011cf100419269eae7409581c784638be503cf 965Author: Alan Coopersmith <alan.coopersmith@oracle.com> 966Date: Sat Dec 19 09:46:31 2015 -0800 967 968 XDefaultOMIF: replace strlen+Xmalloc+strcpy with strdup 969 970 Code seems to have been originally written to handle appending multiple 971 strings, but only ever operates on a single string. 972 973 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 974 Reviewed-by: Adam Jackson <ajax@redhat.com> 975 976commit c27c46d5e22bbf60fb5608eaabe584b7fdeb0b09 977Author: Alan Coopersmith <alan.coopersmith@oracle.com> 978Date: Sat Dec 19 09:20:55 2015 -0800 979 980 Use strdup instead of Xmalloc+strcpy in _XDefaultOpenIM 981 982 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 983 Reviewed-by: Adam Jackson <ajax@redhat.com> 984 985commit 4359dfabc04af082872d2bc2d5b52e26d6d93290 986Author: Alan Coopersmith <alan.coopersmith@oracle.com> 987Date: Fri Dec 4 22:20:53 2015 -0800 988 989 Delete #if 0 hunks of code 990 991 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 992 993commit a2f9dfac286f37e54eb47d4736cc3f0150224a84 994Author: Alan Coopersmith <alan.coopersmith@oracle.com> 995Date: Thu Dec 3 23:38:07 2015 -0800 996 997 Bug 93183: _XDefaultOpenIM memory leaks in out-of-memory error paths 998 999 Rework code to store allocations directly into XIM struct instead of 1000 temporary local variables, so we can use _XCloseIM to unwind instead 1001 of duplicating it, and consistently jump to error handler on failure, 1002 instead of sometimes leaking and sometimes freeing. 1003 1004 Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=93183 1005 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 1006 1007commit 07a97b3944467dce085a1efd24706cc851d2caf2 1008Author: Alan Coopersmith <alan.coopersmith@oracle.com> 1009Date: Thu Dec 3 23:19:48 2015 -0800 1010 1011 Bug 93184: read_EncodingInfo invalid free 1012 1013 Free the correct bits of memory if we run out and need to unwind 1014 1015 Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=93184 1016 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 1017 1018commit 11118e9eb3705fcbe42b6a68d4a8aa86ab0211f1 1019Author: Alan Coopersmith <alan.coopersmith@oracle.com> 1020Date: Sat Nov 28 13:18:11 2015 -0800 1021 1022 Remove unused definition of XCONN_CHECK_FREQ 1023 1024 The only use of XCONN_CHECK_FREQ was removed in commit 15e5eaf62897b3179 1025 when we dropped the old Xlib connection handling in favor of xcb's. 1026 1027 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 1028 Reviewed-by: Mark Kettenis <kettenis@openbsd.org> 1029 1030commit 5f0da8311a61498edf073cc877f5b467bfd5f863 1031Author: James Cloos <cloos@jhcloos.com> 1032Date: Thu Dec 3 18:24:44 2015 -0500 1033 1034 Fix another missing update in cf4d5989383a 1035 1036 Reported in: 1037 1038 https://bugs.freedesktop.org/show_bug.cgi?id=81875#c7 1039 1040 Signed-off-by: James Cloos <cloos@jhcloos.com> 1041 1042commit 33840a5465a2e5fecab520bfbdd2d1bd0a456f51 1043Author: James Cloos <cloos@jhcloos.com> 1044Date: Thu Dec 3 18:15:40 2015 -0500 1045 1046 Fix missing update in cf4d5989383a 1047 1048 Reported in: 1049 1050 https://bugs.freedesktop.org/show_bug.cgi?id=81875#c7 1051 1052 Signed-off-by: James Cloos <cloos@jhcloos.com> 1053 1054commit dbcb847a08c44d99e4e1de2ba777d63238fb0e03 1055Author: Alan Coopersmith <alan.coopersmith@oracle.com> 1056Date: Sun Sep 27 18:38:32 2015 -0700 1057 1058 Get rid of some extraneous ; at the end of C source lines 1059 1060 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 1061 Reviewed-by: Thomas Klausner <wiz@NetBSD.org> 1062 1063commit 121a1bad334459f66f78bfca6df53dc841cf97f8 1064Author: Gunnar Hjalmarsson <gunnarhj@ubuntu.com> 1065Date: Wed Sep 23 11:44:55 2015 -0400 1066 1067 Add compose file for pt_PT similar to pt_BR 1068 1069 This is a forward of the Ubuntu bug https://launchpad.net/bugs/518056 1070 1071 One of the conclusions from the discussion on that bug report, which 1072 basically is about typing the ccedilla character easily on a non- 1073 Portuguese keyboard, is that X11 should include a compose file for 1074 pt_PT.UTF-8 similar to the file for pt_BR.UTF-8. 1075 1076 FDO bug: https://bugs.freedesktop.org/show_bug.cgi?id=90300 1077 1078 Signed-off-by: Gunnar Hjalmarsson <gunnarhj@ubuntu.com> 1079 Signed-off-by: James Cloos <cloos@jhcloos.com> 1080 1081commit 3f41d8a7f82eb5ffbd5c5d36472cf7043186b904 1082Author: Julien Cristau <jcristau@debian.org> 1083Date: Fri May 1 13:50:15 2015 +0200 1084 1085 Mark _XNextRequest as hidden 1086 1087 It's only used inside XNextRequest(), so doesn't need to be exported. 1088 1089 Signed-off-by: Julien Cristau <jcristau@debian.org> 1090 Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com> 1091 1092commit a72d2d06c002b644b7040a0a9936c8525e092ba8 1093Author: Christian Linhart <chris@demorecorder.com> 1094Date: Mon Sep 7 17:17:32 2015 +0200 1095 1096 fix for Xlib 32-bit request number issues 1097 1098 Make use of the new 64-bit sequence number API in XCB 1.11.1 to avoid 1099 the 32-bit sequence number wrap in libX11. 1100 1101 Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=71338 1102 Signed-off-by: Christian Linhart <chris@demorecorder.com> 1103 Signed-off-by: Olivier Fourdan <ofourdan@redhat.com> 1104 Reviewed-by: Adam Jackson <ajax@redhat.com> 1105 1106commit 58af066a764305c506efea7065ef7679369a1a98 1107Author: Thomas Klausner <wiz@NetBSD.org> 1108Date: Sun Jul 19 10:23:21 2015 +0200 1109 1110 Ignore test-driver (used by newer autoconf). 1111 1112 Signed-off-by: Thomas Klausner <wiz@NetBSD.org> 1113 Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com> 1114 1115commit 80b9a346b9ba200fa4652560282e80d249519287 1116Author: Thomas Klausner <wiz@NetBSD.org> 1117Date: Sun Jul 19 10:22:45 2015 +0200 1118 1119 Do not return() after exit(). 1120 1121 Signed-off-by: Thomas Klausner <wiz@NetBSD.org> 1122 Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com> 1123 1124commit c827edcd1c4a7f920aa25208083b5b58d60d2b44 1125Author: Ross Burton <ross.burton@intel.com> 1126Date: Mon May 18 14:49:01 2015 +0100 1127 1128 Add missing NULL checks to ICWrap 1129 1130 ICWrap.c dereferences the xim parameter passed in from client code without a 1131 NULL check. I have seen mplayer trigger this resulting in a segfault. In this 1132 case mplayer had called XOpenIM and NULL was returned which was later passed 1133 into XCreateIC. 1134 1135 Patch originally by Drew Moseley <drew_moseley@mentor.com>. 1136 1137 Signed-off-by: Ross Burton <ross.burton@intel.com> 1138 Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com> 1139 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 1140 1141commit 26e0d2de294f8adf1ce65f1dbff0b59af41a00b9 1142Author: Alan Coopersmith <alan.coopersmith@oracle.com> 1143Date: Thu Jun 4 20:51:17 2015 -0700 1144 1145 Replace Xmalloc+memset pairs with Xcalloc calls 1146 1147 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 1148 1149commit f0286b2770ece10aef5e2e8c004260217f12fd25 1150Author: Bhavi Dhingra <b.dhingra@samsung.com> 1151Date: Thu Jun 4 19:07:12 2015 -0700 1152 1153 omGeneric.c: Correct the parameter usage of sizeof 1154 1155 Incorrect parameter usage with sizeof. Earlier passed argument FontData 1156 will be 4 bytes always as its a pointer hence the change is needed and 1157 FontDataRec should be used for memset. 1158 1159 Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com> 1160 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 1161 1162commit 47da70d75f9e48e800719c0db752f9ccd2d77aea 1163Author: Peter Hutterer <peter.hutterer@who-t.net> 1164Date: Tue May 19 12:30:22 2015 +1000 1165 1166 Fix three "use of uninitialized variable" coverity warnings 1167 1168 False positive, if rlen/nbytes are unset we quit early before using it. Still, 1169 initialize it so we don't have to deal with these warnings again. 1170 1171 Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net> 1172 Reviewed-by: Hans de Goede <hdegoede@redhat.com> 1173 Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com> 1174 1175commit 19a30f17f30e9ae9641a7c0634fc52134208b060 1176Author: Peter Hutterer <peter.hutterer@who-t.net> 1177Date: Mon May 18 07:56:22 2015 +1000 1178 1179 Fix an indentation issue 1180 1181 Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net> 1182 Reviewed-by: Hans de Goede <hdegoede@redhat.com> 1183 Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com> 1184 1185commit 013ccece124b990217ad3bcf2c41688e8fda1df8 1186Author: Peter Hutterer <peter.hutterer@who-t.net> 1187Date: Mon May 18 07:55:17 2015 +1000 1188 1189 Fix potential memory leak 1190 1191 If we hit the depth limit, filename leaks. Move the depth check up before we 1192 allocate filename. 1193 Introduced in 226622349a4b1e16064649d4444a34fb4be4f464. 1194 1195 Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net> 1196 Reviewed-by: Hans de Goede <hdegoede@redhat.com> 1197 Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com> 1198 1199commit d3415d1f052530760b4617db45affcb984cfe35c 1200Author: Mike FABIAN <mfabian@redhat.com> 1201Date: Mon Apr 20 17:59:30 2015 +0200 1202 1203 Fix spelling mistake introduced by 748d47e69f5c12d8557d56a8a8ec166588da7b93 1204 1205 Sorry, my patch to fix the spelling mistakes in the ks_IN and sd_IN 1206 locales fixed it only partly, I introduced a new spelling mistake 1207 in the sd_IN locales. This patch fixes this. 1208 1209 Signed-off-by: James Cloos <cloos@jhcloos.com> 1210 1211commit 748d47e69f5c12d8557d56a8a8ec166588da7b93 1212Author: Mike FABIAN <mfabian@redhat.com> 1213Date: Wed Feb 19 11:46:45 2014 +0100 1214 1215 fix spelling mistakes in ks_IN and sd_IN devanagari locales 1216 1217 The codeset must be *before* the modifier. 1218 1219 See also: http://pubs.opengroup.org/onlinepubs/7908799/xbd/envvar.html 1220 1221 opengroup> The syntax for these environment variables is thus defined as: 1222 opengroup> 1223 opengroup> [language[_territory][.codeset][@modifier]] 1224 1225 Signed-off-by: James Cloos <cloos@jhcloos.com> 1226 1227commit c64fe5553aa4738f9d1d74a795f5651fbb7b1b09 1228Author: Mike FABIAN <mfabian@redhat.com> 1229Date: Wed Feb 19 11:50:55 2014 +0100 1230 1231 add be_BY.UTF-8@latin and sr_RS.UTF-8@latin to locale.dir 1232 1233 See also: https://bugzilla.redhat.com/show_bug.cgi?id=1066910 1234 1235 If these are not in locale.dir, 1236 1237 $ LANG=sr_RS.UTF-8@latin xterm 1238 1239 and 1240 1241 $ LANG=sr_RS@latin xterm 1242 1243 give the warning: 1244 1245 Warning: locale not supported by Xlib, locale set to C 1246 1247 and some programs (like xmms) fail to find translations for Serbian 1248 in Latin because of this. 1249 1250 Signed-off-by: James Cloos <cloos@jhcloos.com> 1251 1252commit c85be01b006126c4407eebd1eb6e01a17312b7b4 1253Author: Alan Coopersmith <alan.coopersmith@oracle.com> 1254Date: Sun Mar 22 16:46:45 2015 -0700 1255 1256 Move Compose \ o / to be with other emoji compose sequences 1257 1258 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 1259 1260commit 5a499ca7b064bf7e6a4fcc169f22862dce0c60c5 1261Author: Alan Coopersmith <alan.coopersmith@oracle.com> 1262Date: Mon Mar 9 15:28:29 2015 -0700 1263 1264 libX11 1.6.3 1265 1266 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 1267 1268commit c8e19b393defd53f046ddc2da3a16881221b3c34 1269Author: Joonas Javanainen <joonas.javanainen@gmail.com> 1270Date: Thu Feb 5 17:31:04 2015 +0200 1271 1272 Fix XErrorEvent struct field order in man page 1273 1274 In the man page the field "resourceid" was in a different place than 1275 in the actual struct layout in Xlib.h 1276 1277 Signed-off-by: Joonas Javanainen <joonas.javanainen@gmail.com> 1278 Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net> 1279 1280commit ddf3b09bb262d01b56fbaade421ac85b0e60a69f 1281Author: Ran Benita <ran234@gmail.com> 1282Date: Tue Feb 3 13:23:50 2015 -0500 1283 1284 compose: fix the description of modifiers in compose sequences 1285 1286 The Compose format has a feature which allows specifying certain 1287 modifiers must (or must not) be present with a given keysym in the 1288 sequence. 1289 1290 The grammar in imLcPrs.c and the Compose man page both do not match what 1291 the code actually does (see the handling of the variables 1292 `modifier_mask` and `modifier` in parseline() in imLcPrs.c, which are 1293 eventually matched as `ev->state & modifier_mask == modifier`). 1294 1295 Also explicitly list the accepted modifier names, since they are 1296 not standard (e.g. "Ctrl" instead of "Control"). 1297 1298 Signed-off-by: Ran Benita <ran234@gmail.com> 1299 Signed-off-by: James Cloos <cloos@jhcloos.com> 1300 1301commit 129f13f385c50e3d8b53ea7441b17386b0f36aeb 1302Author: Ran Benita <ran234@gmail.com> 1303Date: Tue Feb 3 13:23:49 2015 -0500 1304 1305 xkb: fix misleading comment about consumed modifiers 1306 1307 In the spec and the man page the `mods_rtrn` argument is described as 1308 "backfilled with unconsumed modifiers" but actually it is backfilled 1309 with the *consumed* modifiers. This is also mentioned a few lines below 1310 in each case. 1311 1312 Signed-off-by: Ran Benita <ran234@gmail.com> 1313 Signed-off-by: James Cloos <cloos@jhcloos.com> 1314 1315commit 446f5f7f41317a85a0cd0efa5e6a1b37bc99fba2 1316Author: Ingo Schwarze <schwarze@usta.de> 1317Date: Tue Dec 9 10:44:13 2014 +0100 1318 1319 Fix pasto in XkbGetKeyBehaviors(3) manual 1320 1321 Reviewed-by: Thomas Klausner <wiz@NetBSD.org> 1322 Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net> 1323 1324commit f3831dde6972e4da9e018c6a5f4013d8756a5e78 1325Author: Benno Schulenberg <bensberg@justemail.net> 1326Date: Sun Nov 23 21:35:36 2014 +0100 1327 1328 nls: Sorting compose sequences rigorously in mirroring pairs, as is custom. 1329 1330 Signed-off-by: Benno Schulenberg <bensberg@justemail.net> 1331 1332commit a51681b60c84109fe19f5d449e13080522499324 1333Author: Benno Schulenberg <bensberg@justemail.net> 1334Date: Thu Sep 19 16:42:01 2013 +0200 1335 1336 nls: Remove a duplicate locale name, and sort some others more strictly. 1337 1338 Also improve the grammar of the initial comment. 1339 1340 Signed-off-by: Benno Schulenberg <bensberg@justemail.net> 1341 Signed-off-by: James Cloos <cloos@jhcloos.com> 1342 1343commit 426b7f850f5376db96a4b12420ee141603fcc3cd 1344Author: Benno Schulenberg <bensberg@justemail.net> 1345Date: Fri Sep 20 12:37:29 2013 +0200 1346 1347 nls: Add a comment to the block of accented Hebrew letters. 1348 1349 And align them in a nicer manner. 1350 1351 Signed-off-by: Benno Schulenberg <bensberg@justemail.net> 1352 Signed-off-by: James Cloos <cloos@jhcloos.com> 1353 1354commit 7474c6f1ee78dd097b1d0b4c7e3e4ea41317e335 1355Author: Benno Schulenberg <bensberg@justemail.net> 1356Date: Fri Sep 20 12:05:09 2013 +0200 1357 1358 nls: Add one lowercase compose variant for ®, to mirror those for ©. 1359 1360 Signed-off-by: Benno Schulenberg <bensberg@justemail.net> 1361 Signed-off-by: James Cloos <cloos@jhcloos.com> 1362 1363commit 18dcd13514fa538afefa78c93523d9dbd4688e74 1364Author: Benno Schulenberg <bensberg@justemail.net> 1365Date: Sat Sep 7 20:10:43 2013 +0200 1366 1367 nls: Adding the visual composing characters to two comment lines. 1368 1369 The lines around them also contain the characters in the comments. 1370 1371 Signed-off-by: Benno Schulenberg <bensberg@justemail.net> 1372 Signed-off-by: James Cloos <cloos@jhcloos.com> 1373 1374commit 18d8307575af748913d5da17e3de45da2a22ede4 1375Author: Benno Schulenberg <bensberg@justemail.net> 1376Date: Sat Sep 7 20:09:32 2013 +0200 1377 1378 nls: Grouping a lone superscript minus together with its mates. 1379 1380 Signed-off-by: Benno Schulenberg <bensberg@justemail.net> 1381 Signed-off-by: James Cloos <cloos@jhcloos.com> 1382 1383commit 33301cc45e6a2b8aa841ed6325547af970f8c4db 1384Author: Benno Schulenberg <bensberg@justemail.net> 1385Date: Sat Sep 7 19:53:38 2013 +0200 1386 1387 nls: Grouping the compose sequences for Dstroke/dstroke together. 1388 1389 Signed-off-by: Benno Schulenberg <bensberg@justemail.net> 1390 Signed-off-by: James Cloos <cloos@jhcloos.com> 1391 1392commit 78fe1becb6c18fa33c0d5f04005b45d856f8952a 1393Author: Gioele Barabucci <gioele@svario.it> 1394Date: Sun Sep 21 23:05:55 2014 +0200 1395 1396 Add compose sequence for U+20B9 INDIAN RUPEE SIGN 1397 1398 The compose sequence for the new Indian Rupee sign is modelled after 1399 the sequence for the Euro sign. 1400 1401 Signed-off-by: Gioele Barabucci <gioele@svario.it> 1402 Signed-off-by: James Cloos <cloos@jhcloos.com> 1403 1404commit 6101b967b641355dd863fd1ce52c6a7d58bcbe68 1405Author: Gabriel Souza Franco <gabrielfrancosouza@gmail.com> 1406Date: Thu Jul 31 22:23:28 2014 -0300 1407 1408 Add double-arrow compose sequence 1409 1410 Signed-off-by: Gabriel Souza Franco <gabrielfrancosouza@gmail.com> 1411 Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com> 1412 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 1413 1414commit 368a6401c6a3275d3497fec38a3dcbc38cd9df60 1415Author: James Cloos <cloos@jhcloos.com> 1416Date: Fri Aug 1 18:30:42 2014 -0400 1417 1418 Add cs_CZ.UTF-8 locale to configure.ac 1419 1420 Commit cf4d5989383a should have included this. 1421 1422 Reported-by: Colin Harrison <colin.harrison@virgin.net> 1423 Signed-off-by: James Cloos <cloos@jhcloos.com> 1424 1425commit cf4d5989383acc4ed1b7eebadde9f380f2129766 1426Author: James Cloos <cloos@jhcloos.com> 1427Date: Tue Jul 29 15:02:56 2014 -0400 1428 1429 Add nls for cs_CZ.UTF-8 1430 1431 Based on the iso8859-2 compose, and a bug report by Vladimír Marek, 1432 override the en_US.UTF-8 use of <dead_caron> <u> to enter »ǔ« instead 1433 to enter »ů«, and likewise for the majuscule, for the Czech locale. 1434 1435 This evidently is the norm for Czech keyboards. 1436 1437 Fixes bz#81875. 1438 1439 The XI18N_OBJS and XLC_LOCALE.pre files are empty, as they are for 1440 several other locales. That may require an update. 1441 1442 Reported-by: Vladimír Marek <vlmarek@volny.cz> 1443 Signed-off-by: James Cloos <cloos@jhcloos.com> 1444 1445commit d9f569572bd14db31921471e7b877523b5cf1e4c 1446Author: Alan Coopersmith <alan.coopersmith@oracle.com> 1447Date: Sat Jul 26 12:17:47 2014 -0700 1448 1449 Fix source paths for out-of-tree lintlib builds 1450 1451 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 1452 1453commit 0885cad1e4a9ed57266582be320be55259c881bf 1454Author: Alan Coopersmith <alan.coopersmith@oracle.com> 1455Date: Sun Jul 20 09:21:20 2014 -0700 1456 1457 specs/XKB: Markup fractions as <{super,sub}script> instead of <emphasis> 1458 1459 Matches the way they were styled in original doc, before conversion 1460 to DocBook. 1461 1462 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 1463 1464commit d0a9e9d56bb003315787201ee525b4d00fd54e06 1465Author: Alan Coopersmith <alan.coopersmith@oracle.com> 1466Date: Sat Jul 19 23:55:47 2014 -0700 1467 1468 specs/XKB: acknowledge my contributions 1469 1470 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 1471 1472commit 9c0be82017f513e2eb63d59b095f1cf1955f2e2b 1473Author: Alan Coopersmith <alan.coopersmith@oracle.com> 1474Date: Sat Jul 19 23:53:48 2014 -0700 1475 1476 specs/XKB: Trim leading spaces off text lines 1477 1478 perl -i -p -e 's{/\*(\S)}{/* \1}g;' *.xml 1479 1480 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 1481 1482commit 75b0b10990f38d966c6fcc821bf15e58c5a90c91 1483Author: Alan Coopersmith <alan.coopersmith@oracle.com> 1484Date: Sat Jul 19 20:30:55 2014 -0700 1485 1486 specs/XKB: Add olinks to libX11 for "X Library Functions Affected by Xkb" 1487 1488 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 1489 1490commit 5009621799444e9d1d284719f871d00be13e7330 1491Author: Alan Coopersmith <alan.coopersmith@oracle.com> 1492Date: Sat Jul 19 12:34:28 2014 -0700 1493 1494 specs/XKB: Fix miscelleanous typos & spelling errors 1495 1496 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 1497 1498commit ac219bf1522a592bd3e3283b1a6ea3dfd2c3c48c 1499Author: Alan Coopersmith <alan.coopersmith@oracle.com> 1500Date: Sat Jul 19 00:46:41 2014 -0700 1501 1502 specs/XKB: add some more indexterms by hand 1503 1504 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 1505 1506commit 5c3aa4c69e65ecf2e56d5e26f3833fb5d31973c2 1507Author: Alan Coopersmith <alan.coopersmith@oracle.com> 1508Date: Sat Jul 19 00:48:02 2014 -0700 1509 1510 specs/XKB: fixup various formatting issues in <programlisting>s 1511 1512 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 1513 1514commit 70c648ff852fd9bc784967cfc77ea70bd7f14c8d 1515Author: Alan Coopersmith <alan.coopersmith@oracle.com> 1516Date: Fri Jul 18 23:56:29 2014 -0700 1517 1518 specs/XKB: fixup various formatting issues in <literallayout>s 1519 1520 Including translating some that are really just lists into 1521 <simplelist> markup. 1522 1523 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 1524 1525commit 94b56774784ac00b9db02403aecea10bb0814c10 1526Author: Alan Coopersmith <alan.coopersmith@oracle.com> 1527Date: Fri Jul 18 23:18:52 2014 -0700 1528 1529 specs/XKB: add some more links by hand 1530 1531 random bits where a link looked handy 1532 1533 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 1534 1535commit 7a15a934cdb07ed1b991bd0ef633f32ee00b1833 1536Author: Alan Coopersmith <alan.coopersmith@oracle.com> 1537Date: Fri Jul 18 23:16:31 2014 -0700 1538 1539 specs/XKB: add links for terms in definition list under figure 1.1 1540 1541 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 1542 1543commit 92b86fc3c50fbb7ab2e36af10a2fb3fe6284f58c 1544Author: Alan Coopersmith <alan.coopersmith@oracle.com> 1545Date: Fri Jul 18 22:52:16 2014 -0700 1546 1547 specs/XKB: add links to more tables listing section references 1548 1549 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 1550 1551commit 06a4483a05053b4f8d8c0d4cc0513c68ea912676 1552Author: Alan Coopersmith <alan.coopersmith@oracle.com> 1553Date: Fri Jul 18 22:49:34 2014 -0700 1554 1555 specs/XKB: Table 4.1: remove page numbers & unnecessary para tags 1556 1557 Page numbers refer to old doc format, didn't translate to new one 1558 1559 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 1560 1561commit 61bd55c6d1ab211b89d604bd05555dc417f6e53d 1562Author: Alan Coopersmith <alan.coopersmith@oracle.com> 1563Date: Sat Jul 19 11:55:51 2014 -0700 1564 1565 specs/XKB: remove unwanted white space around C -> struct references 1566 1567 perl -i -0 -p -e 's{\s*->\s*}{->}g' *xml 1568 1569 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 1570 1571commit 2be0cc0b2abbcc98cfd150210dea415a04787251 1572Author: Alan Coopersmith <alan.coopersmith@oracle.com> 1573Date: Fri Jul 18 22:26:20 2014 -0700 1574 1575 specs/XKB: replace -> with → when used as arrow, not in C structs 1576 1577 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 1578 1579commit bf1f3d6f6f995303624679ae546f507c70967dc0 1580Author: Alan Coopersmith <alan.coopersmith@oracle.com> 1581Date: Fri Jul 18 22:21:10 2014 -0700 1582 1583 specs/XKB: replace => with ⇒ for double arrows 1584 1585 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 1586 1587commit c7ee427fc0a72abd4a4f147ab16a5d1128a6a2ba 1588Author: Alan Coopersmith <alan.coopersmith@oracle.com> 1589Date: Sat Jul 19 11:33:35 2014 -0700 1590 1591 specs/XKB: Markup some ranges with – instead of - 1592 1593commit ec4075303c6c0d1d64bfe378e585968f9a137da7 1594Author: Alan Coopersmith <alan.coopersmith@oracle.com> 1595Date: Fri Jul 18 22:10:45 2014 -0700 1596 1597 specs/XKB: Markup some subtractions with − instead of - 1598 1599 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 1600 1601commit 441a267e461132a38abed205245f028686526f1d 1602Author: Alan Coopersmith <alan.coopersmith@oracle.com> 1603Date: Fri Jul 18 22:04:40 2014 -0700 1604 1605 specs/XKB: make sure all files have DOCTYPEs so standard entities work 1606 1607 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 1608 1609commit 88fd70bee410f290b4f540405fdc7ecd85c26f25 1610Author: Alan Coopersmith <alan.coopersmith@oracle.com> 1611Date: Fri Jul 18 21:55:41 2014 -0700 1612 1613 specs/XKB: Markup quoted terms as <quote> instead of with "" 1614 1615 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 1616 1617commit 3576587ff10334a8f48c34b4fe5b7e829dec9a1b 1618Author: Alan Coopersmith <alan.coopersmith@oracle.com> 1619Date: Sat Jul 19 09:01:26 2014 -0700 1620 1621 specs/XKB: fixup newlines between tags and punctuation 1622 1623 Get rid of unwanted whitespace before punctuation by moving them to the 1624 lines with the tags, instead of before & after. 1625 1626 perl -i -0 -p -e 's{\>\s*\n([\.,;:])}{>\1\n}g' *xml 1627 1628 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 1629 1630commit 6d5ec492cd28c206423337f926503349702af5a6 1631Author: Alan Coopersmith <alan.coopersmith@oracle.com> 1632Date: Fri Jul 18 21:29:33 2014 -0700 1633 1634 specs/XKB: fixup newlines between tags and parens 1635 1636 Get rid of unwanted whitespace inside parens by moving them to the 1637 lines with the tags, instead of before & after. 1638 1639 perl -i -0 -p \ 1640 -e 's{(?<!--) \(\s*\n\<}{\n(<}g;' \ 1641 -e 's{\>\s*\n\)([\.,;]?)(?! [^\n]*--)}{>)\1\n}g' *xml 1642 1643 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 1644 1645commit 59d688f4c787250e0b401a92b1db0437d8c60f2d 1646Author: Alan Coopersmith <alan.coopersmith@oracle.com> 1647Date: Fri Jul 18 21:09:24 2014 -0700 1648 1649 specs/XKB: Markup key terms as <firstterm> instead of <emphasis> 1650 1651 Also add <indexterm> entries for most of them, to make their definitions 1652 or introductions easy to find from the index. 1653 1654 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 1655 1656commit 861f3087ee0f501362a67501f384c2ca4c7bfe73 1657Author: Alan Coopersmith <alan.coopersmith@oracle.com> 1658Date: Thu Jul 10 20:00:53 2014 -0700 1659 1660 specs/XKB: Manual fixup of type markup 1661 1662 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 1663 1664commit 6b96259dabe52701fd1bcaa0625b574180c4e769 1665Author: Alan Coopersmith <alan.coopersmith@oracle.com> 1666Date: Thu Jul 10 15:00:30 2014 -0700 1667 1668 specs/XKB: Manual fixup of parameter markup 1669 1670 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 1671 1672commit 5526dce6812a84102f556fdde8f2b52b21c8bcdc 1673Author: Alan Coopersmith <alan.coopersmith@oracle.com> 1674Date: Thu Jul 10 13:40:40 2014 -0700 1675 1676 specs/XKB: Manual fixup of struct name/field markup 1677 1678 Handles typos that caused the scripts to miss matches, misnamed structs, etc. 1679 1680 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 1681 1682commit c36ee1a4db4e7876526190b8ab6b0da5867f76f7 1683Author: Alan Coopersmith <alan.coopersmith@oracle.com> 1684Date: Wed Jul 9 23:26:37 2014 -0700 1685 1686 specs/XKB: Manual fixup of symbol name markup 1687 1688 Handles typos that caused the scripts to miss matches, misnamed masks, etc. 1689 1690 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 1691 1692commit eb1453a0c69606b8af96b90ddccf1b93a069fb35 1693Author: Alan Coopersmith <alan.coopersmith@oracle.com> 1694Date: Wed Jul 9 00:03:23 2014 -0700 1695 1696 specs/XKB: Manual fixup of function name markup 1697 1698 Handles typos that caused the scripts to miss matches, functions like 1699 malloc & free from other libraries, function name patterns, etc. 1700 1701 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 1702 1703commit 252d99c87b60ac6f3f2b36f292f9b3880daabe26 1704Author: Alan Coopersmith <alan.coopersmith@oracle.com> 1705Date: Thu Jul 10 19:42:31 2014 -0700 1706 1707 specs/XKB: Markup protocol requests as <systemitem> instead of <emphasis> 1708 1709 No great fit in DocBook, so follow what we used in Xlib spec. 1710 1711 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 1712 1713commit ed60df10aad15057577d5714c955d22d2a446e51 1714Author: Alan Coopersmith <alan.coopersmith@oracle.com> 1715Date: Thu Jul 10 15:45:57 2014 -0700 1716 1717 specs/XKB: Markup keyboard keys as <keycap> instead of <emphasis> 1718 1719 Also uses <guilabel> for LED names/labels, for lack of a better fit 1720 in DocBook. 1721 1722 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 1723 1724commit f57b91ee497414083cc1bf481d28eb9ad9f965fb 1725Author: Alan Coopersmith <alan.coopersmith@oracle.com> 1726Date: Thu Jul 10 15:41:19 2014 -0700 1727 1728 specs/XKB: Markup characters & strings as <literal> instead of <emphasis> 1729 1730 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 1731 1732commit cfd4279c9b59d7e87c9f7c67692c87973adb7667 1733Author: Alan Coopersmith <alan.coopersmith@oracle.com> 1734Date: Thu Jul 10 11:08:14 2014 -0700 1735 1736 specs/XKB: Markup structs as <struct{name,field}> instead of <emphasis> 1737 1738 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 1739 1740commit a014bb4cc013b0d1b76524b7868e860c7e7ebc79 1741Author: Alan Coopersmith <alan.coopersmith@oracle.com> 1742Date: Wed Jul 9 23:30:54 2014 -0700 1743 1744 specs/XKB: Markup symbol names in table entries too 1745 1746 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 1747 1748commit 907f7ad7a7a977bf4f19daa3143d47c4d07ca33d 1749Author: Alan Coopersmith <alan.coopersmith@oracle.com> 1750Date: Tue Jul 8 23:35:48 2014 -0700 1751 1752 specs/XKB: Markup *Ptr as <type> instead of <emphasis> 1753 1754 perl -i -p -e 's{<emphasis>(\w*Ptr)</emphasis>}{<type>\1</type>}g' *xml 1755 1756 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 1757 1758commit 9f6c00629fd4b713082cc11f9150f7aafd272c89 1759Author: Alan Coopersmith <alan.coopersmith@oracle.com> 1760Date: Tue Jul 8 23:34:29 2014 -0700 1761 1762 specs/XKB: Markup *Rec as <structname> instead of <emphasis> 1763 1764 perl -i -p -e \ 1765 's{<emphasis>(\w*Rec)</emphasis>}{<structname>\1</structname>}g' *xml 1766 1767 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 1768 1769commit 83839e37802b8b752c77859a95de60ad757feb79 1770Author: Alan Coopersmith <alan.coopersmith@oracle.com> 1771Date: Tue Jul 8 23:29:49 2014 -0700 1772 1773 specs/XKB: Markup XKB macros as <symbol> instead of <emphasis> 1774 1775 Performed via: 1776 perl -n -e 'printf "s{<emphasis>\\s*%s\\s*</emphasis>}{<symbol>%s</symbol>};\n", $1, $1 if m{^#define\s+([^\s\(]*)}' \ 1777 /usr/include/X11/extensions/XK*h /usr/include/X11/XKBlib.h \ 1778 | sort -u > xkb-defines.pl 1779 perl -i -p -f xkb-defines.pl *.xml 1780 1781 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 1782 1783commit 9e397ed37ce4cc70621de347de3a795df88d4506 1784Author: Alan Coopersmith <alan.coopersmith@oracle.com> 1785Date: Tue Jul 8 22:53:12 2014 -0700 1786 1787 specs/XKB: Use ° instead of o for degrees. 1788 1789 Conversion from framemaker turned superscripted "o" into plain "o". 1790 1791 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 1792 1793commit 3b8364c21f5119105a2c14ae8cc75a11494cb7a7 1794Author: Alan Coopersmith <alan.coopersmith@oracle.com> 1795Date: Tue Jul 8 22:46:03 2014 -0700 1796 1797 specs/XKB: Markup keysyms as <keysym> instead of <emphasis> 1798 1799 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 1800 1801commit 33bef065683c8f910f3722730503c0c0699ee8be 1802Author: Alan Coopersmith <alan.coopersmith@oracle.com> 1803Date: Tue Jul 8 22:26:56 2014 -0700 1804 1805 specs/XKB: Markup NULL as <symbol> instead of <emphasis> 1806 1807 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 1808 1809commit f10aa1e09468bd28454d85ac8ab55d9dc7178029 1810Author: Alan Coopersmith <alan.coopersmith@oracle.com> 1811Date: Tue Jul 8 22:22:29 2014 -0700 1812 1813 specs/XKB: Markup function args as <parameter> instead of <emphasis> 1814 1815 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 1816 1817commit 79ba58cceb69521fcb313c69233cf93a9fcb177f 1818Author: Alan Coopersmith <alan.coopersmith@oracle.com> 1819Date: Mon Jul 7 23:56:13 2014 -0700 1820 1821 specs/XKB: Convert remaining error names to errorname tags 1822 1823 Most were caught by applying libX11 lists, but BadKeyboard & XKB*_Bad* 1824 are XKB-specific. (Plus some were badly split across tag boundaries.) 1825 1826 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 1827 1828commit 42b2f5388c399949ece377f9cc9c479c06964972 1829Author: Alan Coopersmith <alan.coopersmith@oracle.com> 1830Date: Mon Jul 7 23:16:56 2014 -0700 1831 1832 specs/XKB: manually fixup some more emphasis tagging mismatches 1833 1834 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 1835 1836commit 3b2f47d44a55d93c65455ff183f3b47da04b1de1 1837Author: Alan Coopersmith <alan.coopersmith@oracle.com> 1838Date: Mon Jul 7 23:02:31 2014 -0700 1839 1840 specs/XKB: re-normalize <emphasis> layout in xml files 1841 1842 Same script as before, just with <!-- xref --> comments out of the way 1843 now. 1844 1845 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 1846 1847commit ce95f152eda509263874c53fb7c6b4a6bdab2c29 1848Author: Alan Coopersmith <alan.coopersmith@oracle.com> 1849Date: Mon Jul 7 22:59:25 2014 -0700 1850 1851 specs/XKB: Remove remaining xref comments 1852 1853 All the places marked by these have been turned into the appropriate 1854 link, xref, or olink tags now. 1855 1856 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 1857 1858commit 6590b66e19af8dff68888ac403ac82f5d585b4e2 1859Author: Alan Coopersmith <alan.coopersmith@oracle.com> 1860Date: Mon Jul 7 22:56:36 2014 -0700 1861 1862 specs/XKB: make olinks to xkbproto for references in section 10.13 1863 1864 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 1865 1866commit fcda446877a62e7443d7bc704ba3610e90d1e755 1867Author: Alan Coopersmith <alan.coopersmith@oracle.com> 1868Date: Mon Jul 7 22:22:28 2014 -0700 1869 1870 specs/XKB: Add <figure> tags and make Figure references link to them 1871 1872 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 1873 1874commit 087a2338476719e340dc3d5af0df6fdc4a26ce7a 1875Author: Alan Coopersmith <alan.coopersmith@oracle.com> 1876Date: Mon Jul 7 21:30:01 2014 -0700 1877 1878 specs/XKB: Turn Table references into links 1879 1880 Adds id attributes to all table tags so we can link to them 1881 1882 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 1883 1884commit 135fa07b74cb50172c6a75768d499cd87ddb336e 1885Author: Alan Coopersmith <alan.coopersmith@oracle.com> 1886Date: Sun Jul 6 21:29:59 2014 -0700 1887 1888 specs/XKB: Turn section references into xref links 1889 1890 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 1891 1892commit 53e931d79926af8a3996253efd8b5f6c21d9e5d7 1893Author: Alan Coopersmith <alan.coopersmith@oracle.com> 1894Date: Sun Jul 6 21:17:18 2014 -0700 1895 1896 specs/XKB: Turn Chapter references into xref links 1897 1898 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 1899 1900commit b7f00ce5bcb0c00696bb82503ab548e14f04d17d 1901Author: Alan Coopersmith <alan.coopersmith@oracle.com> 1902Date: Sun Jul 6 20:40:18 2014 -0700 1903 1904 specs/XKB: Apply <emphasis> to semantic tag transformations from Xlib spec 1905 1906 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 1907 1908commit b00a7ddff2744238fbfe31c2298b02028a45a6ff 1909Author: Alan Coopersmith <alan.coopersmith@oracle.com> 1910Date: Sun Jul 6 20:34:51 2014 -0700 1911 1912 specs/XKB: Markup function names as <function> instead of <emphasis> 1913 1914 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 1915 1916commit bfbb58b7679221cb5c9212665209ea9099ad079a 1917Author: Alan Coopersmith <alan.coopersmith@oracle.com> 1918Date: Sun Jul 6 20:25:46 2014 -0700 1919 1920 specs/XKB: normalize <emphasis> layout in xml files 1921 1922 - Stop placing <emphasis> on empty space, commas, and periods. 1923 - Move periods & commas after closing </emphasis> tag 1924 - move <emphasis> open & close tags to same line, instead of mirroring 1925 nroff layout. 1926 1927 Simplifies automating further transformations of these tags. 1928 1929 Performed via: 1930 perl -i -0 -p \ 1931 -e 's{<emphasis>(\s*)</emphasis>}{}msg;' \ 1932 -e 's{<emphasis>([\s\.,]*)</emphasis>\s*}{\1}msg;' \ 1933 -e 's{\n([\.,])\s*}{\1\n}msg;' \ 1934 -e 's{([^\.])([\.,])\s*</emphasis>}{\1</emphasis>\2}msg;' \ 1935 -e 's{\s*<emphasis>\n\s*}{\n<emphasis>}msg;' *xml 1936 1937 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 1938 1939commit b16ee69a0103109a661a88140a1765dcd7bda634 1940Author: Alan Coopersmith <alan.coopersmith@oracle.com> 1941Date: Sun Jul 6 15:57:41 2014 -0700 1942 1943 specs/XKB: Convert to funcsynopsis+variablelist instead of informaltable 1944 1945 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 1946 1947commit b41d43d4cf0c0a1a049a171ee8cf6fd8a3ee4335 1948Author: Alan Coopersmith <alan.coopersmith@oracle.com> 1949Date: Sun Jul 6 19:29:38 2014 -0700 1950 1951 specs/XKB: Add index 1952 1953 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 1954 1955commit 72ae1d793be078db521dda60af578ece71f364de 1956Author: Alan Coopersmith <alan.coopersmith@oracle.com> 1957Date: Sun Jul 6 13:21:40 2014 -0700 1958 1959 specs/XKB: Fix various markup issues in functiondecl tables 1960 1961 - Merge some functionargdecl entries incorrectly split across rows 1962 - Add missing parameter name markup to some functionargdecls 1963 - Add missing function prototype markup to a functiondecl 1964 - Remove stray emphasis tags in a functiondecl 1965 1966 Allows them to correctly convert to funcsynopsis markup in next step. 1967 1968 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 1969 1970commit 9fdb973012de80ac60dbc59c39162f4e839fc5a4 1971Author: Alan Coopersmith <alan.coopersmith@oracle.com> 1972Date: Sun Jul 6 12:15:23 2014 -0700 1973 1974 specs/XKB: Convert header filenames to filename tags 1975 1976 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 1977 1978commit 5525e8433f93bce464412f27cffa203ea628f368 1979Author: Alan Coopersmith <alan.coopersmith@oracle.com> 1980Date: Tue Jul 8 00:05:32 2014 -0700 1981 1982 specs/libX11: disengender a user reference 1983 1984 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 1985 1986commit d8679eae9317b389ad4acb0430360ee0663e2af8 1987Author: Alan Coopersmith <alan.coopersmith@oracle.com> 1988Date: Fri Jul 11 18:41:42 2014 -0700 1989 1990 specs/libX11: Correct value of IconicState to match Xutil.h 1991 1992 Xutil.h has always had a value of 3 for IconicState, since 2 was 1993 previously used for the long-obsolete ZoomState, so make the spec 1994 match what programs have used for decades. 1995 1996 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 1997 Reviewed-by: Matthieu Herrb <matthieu@herrb.eu> 1998 1999commit 7ce2b0f12a48fb832f457cbafb0e1144ef557f9a 2000Author: Alan Coopersmith <alan.coopersmith@oracle.com> 2001Date: Fri Jul 11 10:34:08 2014 -0700 2002 2003 Use C99 named initializers to fill in events passed to XSendEvent 2004 2005 Forces compiler to zero-fill unset fields in the struct (fixing bug 81236) 2006 and allows optimizer to order field initialization to best fit cache layout 2007 or other considerations. 2008 2009 Before & after output of gcc -S on AMD64 shows insertion of "rep stosq" 2010 instructions to rapidly zero-fill structs. 2011 2012 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 2013 Reviewed-by: Matthieu Herrb <matthieu@herrb.eu> 2014 2015commit 169805e1dc8743b37b00e24cf3a5eb8748f733ad 2016Author: Alan Coopersmith <alan.coopersmith@oracle.com> 2017Date: Sun Jul 6 11:13:49 2014 -0700 2018 2019 Fix validation of ctrls parameter to XkbGetPerClientControls() 2020 2021 Nothing in the XKB spec states that the memory pointed to by ctrls has to 2022 be initialized to any given value when passed to the function, only that 2023 it is set by the function to the values returned by the X server: 2024 http://www.x.org/releases/X11R7.7/doc/libX11/XKB/xkblib.html#The_Miscellaneous_Per_client_Controls 2025 2026 The check for the incoming value seems to be copied from 2027 XkbSetPerClientControls without explanation. 2028 2029 Instead change it to checking if ctrls is non-NULL, since there's no 2030 point asking the X server to return a value the caller won't even see. 2031 2032 Found while investigating report from cppcheck-1.65: 2033 [src/xkb/XKB.c:699] -> [src/xkb/XKB.c:719]: (warning) Possible null pointer 2034 dereference: ctrls - otherwise it is redundant to check it against null. 2035 2036 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 2037 2038commit 1e362fac92c6688fb42b195ccad16d7a337a34c1 2039Author: Alan Coopersmith <alan.coopersmith@oracle.com> 2040Date: Sun Jul 6 10:54:57 2014 -0700 2041 2042 Fix map->num_types check in XkbAddKeyType() 2043 2044 Check is intended to ensure we allocate at least XkbNumRequiredTypes 2045 in map, but was accidentally marked with a ! causing the wrong check. 2046 2047 Reported-by: Harms <wharms@bfs,de> 2048 Reviewed-by: Matthieu Herrb <matthieu@herrb.eu> 2049 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 2050 2051commit ff9a5c199251a84fa59d14fd48dadb3f8920b54b 2052Author: Alan Coopersmith <alan.coopersmith@oracle.com> 2053Date: Sun Jul 6 15:08:21 2014 -0700 2054 2055 specs/libX11: Add missing spaces to 'unsignedint' & 'unsignedlong' types 2056 2057 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 2058 2059commit a06ea86773568926c36ae650b188fc818d540db7 2060Author: Alan Coopersmith <alan.coopersmith@oracle.com> 2061Date: Sun Jul 6 15:04:27 2014 -0700 2062 2063 specs/libX11: Fix height & width in parameter lists to be two separate entries 2064 2065 "unsigned int width, unsigned int height", not a single parameter "height" 2066 of type "unsignedintwidth,". 2067 2068 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 2069 2070commit e4db5e503682b3304fe82e4b17b419a8e0f0a9f2 2071Author: Alan Coopersmith <alan.coopersmith@oracle.com> 2072Date: Sun Jul 6 14:38:10 2014 -0700 2073 2074 specs/libX11: Fix x & y in parameter lists to be two separate parameters 2075 2076 "int x, int y" not a single parameter y of type "intx" 2077 2078 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 2079 2080commit aa8bda0db2c6d82515b90ceb4a7d6403e38895e9 2081Author: walter harms <wharms@bfs.de> 2082Date: Sat Jun 7 12:03:17 2014 +0200 2083 2084 lcDefConv.c: fix use before check 2085 2086 * Do not use variables before checked for NULL. 2087 * remove some superfluid spaces (Mark Kettenis) 2088 2089 Signed-off-by: Harms <wharms@bfs,de> 2090 Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com> 2091 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 2092 2093commit c0670e5d3ae330e611ecb05303d579a4f8a3d114 2094Author: Alan Coopersmith <alan.coopersmith@oracle.com> 2095Date: Mon Jun 16 15:16:10 2014 -0700 2096 2097 Start adding Unicode 7.0 support to compose table 2098 2099 New characters defined in http://www.unicode.org/charts/PDF/U1F300.pdf 2100 2101 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 2102 2103commit a4679baaa18142576d42d423afe816447f08336c 2104Author: walter harms <wharms@bfs.de> 2105Date: Sat Jun 7 11:54:34 2014 +0200 2106 2107 rm redundant null checks 2108 2109 remove more redundant NULL checks 2110 note that _XkbFree() is really Xfree() 2111 2112 Signed-off-by: Harms <wharms@bfs,de> 2113 Reviewed-by: Rémi Cardona <remi@gentoo.org> 2114 Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net> 2115 2116commit 602d7f5030fe93b2fe7f29fb7310deb6f50cb6df 2117Author: walter harms <wharms@bfs.de> 2118Date: Sat Jun 7 15:17:27 2014 +0200 2119 2120 libX11: rm redundante NULL checks 2121 2122 This patch removes the last remaining NULL checks for Xfree() 2123 2124 Signed-off-by: Harms <wharms@bfs,de> 2125 Reviewed-by: Peter Hutterer <peter.hutterer@who-t.net> 2126 Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net> 2127 2128commit d81fed46144d089bdfa1d916a28dffc9ebffe1e4 2129Author: walter harms <wharms@bfs.de> 2130Date: Fri Jun 6 22:53:05 2014 +0200 2131 2132 Remove more redundant null checks before Xfree() 2133 2134 Signed-off-by: Harms <wharms@bfs,de> 2135 Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com> 2136 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 2137 2138commit 0b7fd7dbec136bae317bd9a329309eaa089beee3 2139Author: walter harms <wharms@bfs.de> 2140Date: Thu Jun 5 18:37:40 2014 +0200 2141 2142 Remove redundant null checks before free 2143 2144 This patch removes some redundant null checks before free. 2145 It should not change the code otherwise. Be aware that this 2146 is only the first series. 2147 2148 Signed-off-by: Harms <wharms@bfs,de> 2149 Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com> 2150 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 2151 2152commit 7d452fad5068ba92b964e92bc46708046f4044aa 2153Author: walter harms <wharms@bfs.de> 2154Date: Wed Jun 4 17:12:31 2014 +0200 2155 2156 libX11/lcUTF8.c fix: dereferenced before check 2157 2158 * Do not use variables before checked for NULL. 2159 2160 Signed-off-by: Harms <wharms@bfs,de> 2161 Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com> 2162 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 2163 2164commit a3808f51517a720e7ff738208af60865779dd6ef 2165Author: walter harms <wharms@bfs.de> 2166Date: Wed Jun 4 17:10:20 2014 +0200 2167 2168 libX11/XKBNames.c fix: dereferenced before check 2169 2170 * Do not use variables before checked for NULL. 2171 2172 Signed-off-by: Harms <wharms@bfs,de> 2173 Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com> 2174 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 2175 2176commit b3c9f6a17e430aabe16aecbe097f7312a0f6ff78 2177Author: walter harms <wharms@bfs.de> 2178Date: Wed Jun 4 17:08:12 2014 +0200 2179 2180 libX11/lcGenConv.c fix: dereferenced before check 2181 2182 * Do not use variables before checked for NULL. 2183 2184 Signed-off-by: Harms <wharms@bfs,de> 2185 Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com> 2186 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 2187 2188commit c6bc28d433243c32b3f74955f1478451b4fd27b5 2189Author: Andreas Schwab <schwab@linux-m68k.org> 2190Date: Sun Jan 19 16:59:13 2014 +0100 2191 2192 Restore lost tabs in sed commands 2193 2194 Signed-off-by: Andreas Schwab <schwab@linux-m68k.org> 2195 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 2196 2197commit e3dc0d17339e61eaf0b51b8907510984e3bf23cb 2198Author: Benno Schulenberg <bensberg@justemail.net> 2199Date: Thu Sep 19 11:01:11 2013 +0200 2200 2201 nls: Transform Brazilian compose file to an include plus three overrides. 2202 2203 Signed-off-by: James Cloos <cloos@jhcloos.com> 2204 2205commit 16c87dda4da2271aaecc5d8b6fe6ecd072cc584c 2206Author: Benno Schulenberg <bensberg@justemail.net> 2207Date: Fri Sep 6 12:10:01 2013 +0200 2208 2209 nls: Adding the missing compose sequences with <comma> for O with ogonek. 2210 2211 All other vowels with ogoneks can already be composed using <comma>. 2212 2213 Signed-off-by: Benno Schulenberg <bensberg@justemail.net> 2214 Signed-off-by: James Cloos <cloos@jhcloos.com> 2215 2216commit 655b60f48376069750b151c46da836fdd411c83b 2217Author: Benno Schulenberg <bensberg@justemail.net> 2218Date: Fri Sep 6 12:04:24 2013 +0200 2219 2220 nls: Adding the missing postfix sequences for composing vowels with ogoneks. 2221 2222 It existed for lowercase i, but not for uppercase I nor the other vowels. 2223 2224 Signed-off-by: Benno Schulenberg <bensberg@justemail.net> 2225 Signed-off-by: James Cloos <cloos@jhcloos.com> 2226 2227commit 7f8f9a36ef901f31279c385caf960a22daeb33fe 2228Author: Owen W. Taylor <otaylor@fishsoup.net> 2229Date: Fri May 9 18:21:05 2014 -0400 2230 2231 Fix XNextRequest() after direct usage of XCB 2232 2233 When XCB owns the X socket, dpy->request is not updated, so 2234 NextRequest() and XNextRequest() return the wrong value. There's 2235 nothing we can do to fix NextRequest() while retaining ABI compat, 2236 but change XNextRequest() to grab the socket back from XCB, 2237 updating dpy->request. 2238 2239 Signed-off-by: Owen W. Taylor <otaylor@fishsoup.net> 2240 Reviewed-by: Uli Schlachter <psychon@znc.in> 2241 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 2242 2243commit 0f9e734ea96556fe750a4baf354d42d5a87bcd14 2244Author: Alan Coopersmith <alan.coopersmith@oracle.com> 2245Date: Sun May 4 11:54:59 2014 -0700 2246 2247 Add missing .TE tags to end tables in Xkb man pages 2248 2249 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 2250 2251commit 280274e5292e013b43e552274111fab434f5ed4e 2252Author: Alan Coopersmith <alan.coopersmith@oracle.com> 2253Date: Sun May 4 11:23:17 2014 -0700 2254 2255 XCreateGC.man: simplify table to work with Solaris tbl 2256 2257 Having every table cell be a text diversion (T{...T}) was too much for 2258 Solaris tbl to handle, and thus "man XCreateGC" would print the error 2259 /usr/man/man3x11/XCreateGC.3x11: line 402: Too many text block diversions 2260 tbl quits 2261 and not display the table of mask bits or any text in the man page after 2262 that table. Since the #define column doesn't need special handling, 2263 making it not use text diversions brings the table under the tbl limit. 2264 2265 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 2266 2267commit 93bb325a54025dd15f4744abce54b358960420f9 2268Author: James Cloos <cloos@jhcloos.com> 2269Date: Tue May 20 17:30:10 2014 -0400 2270 2271 Revert "nls: Adding compose sequences (with <parenleft> first) that GTK also has." 2272 2273 Parenleft is already in use for sequences of the form <(> <letter> <)> 2274 to generate circled letters. 2275 2276 Eg, <Multikey> <parenleft> <a> <parenright> generates ⓐ. 2277 2278 This reverts commit f020235f4bd91fb6eade82f8c9f7b85a57981768. 2279 2280 Signed-off-by: James Cloos <cloos@jhcloos.com> 2281 2282commit 060707851be918f2f507a26d17b016f764ddf2b4 2283Author: Benno Schulenberg <bensberg@justemail.net> 2284Date: Fri Sep 6 11:42:59 2013 +0200 2285 2286 nls: Adding accessible compose sequences for Ș and Ț (with comma below). 2287 2288 Compose sequences with <dead_belowcomma> exist, but very few keyboard 2289 layouts contain that symbol. So a more usual character is needed to be 2290 able to easily compose Ș, ș, Ț and ț. The semicolon is normally only 2291 used for composing letters with ogoneks -- but only vowels take ogoneks, 2292 so the character is free for consonants, and thus <semicolon> is used 2293 here to compose commas below. It is somewhat fitting, because on most 2294 Romanian keyboards the Ș is placed on that key, and the Ț next to it. 2295 2296 (Oh -- the more obvious sequences with <comma> were already taken for 2297 composing S and T with cedillas.) 2298 2299 Signed-off-by: Benno Schulenberg <bensberg@justemail.net> 2300 Signed-off-by: James Cloos <cloos@jhcloos.com> 2301 2302commit ca435c2f753aa2961fb35ac448cdb2cc77112755 2303Author: Benno Schulenberg <bensberg@justemail.net> 2304Date: Tue Sep 3 21:10:33 2013 +0200 2305 2306 nls: Ordering some compose sequences in a more customary way. 2307 2308 The custom seems to be: pairing the ones that have only the sequence of 2309 two keys reversed, and putting the one with the diacritic first first. 2310 2311 Signed-off-by: Benno Schulenberg <bensberg@justemail.net> 2312 Signed-off-by: James Cloos <cloos@jhcloos.com> 2313 2314commit f020235f4bd91fb6eade82f8c9f7b85a57981768 2315Author: Benno Schulenberg <bensberg@justemail.net> 2316Date: Tue Sep 3 20:44:42 2013 +0200 2317 2318 nls: Adding compose sequences (with <parenleft> first) that GTK also has. 2319 2320 Signed-off-by: Benno Schulenberg <bensberg@justemail.net> 2321 Signed-off-by: James Cloos <cloos@jhcloos.com> 2322 2323commit bda0b3b5bd19154206dc40166364e73d4b6b1374 2324Author: Benno Schulenberg <bensberg@justemail.net> 2325Date: Tue Sep 3 11:14:16 2013 +0200 2326 2327 nls: Allowing Romanian Ă and ă to be composed also with lowercase <u>. 2328 2329 Signed-off-by: Benno Schulenberg <bensberg@justemail.net> 2330 Signed-off-by: James Cloos <cloos@jhcloos.com> 2331 2332commit 8be4610939b833587954957f5963eb4191b43d19 2333Author: Alan Coopersmith <alan.coopersmith@oracle.com> 2334Date: Thu Mar 13 23:22:48 2014 -0700 2335 2336 Fix "follwing" typo in en_US.UTF-8/Compose comment 2337 2338 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 2339 2340commit 6f30e9034f29c3ae6ad7e617b3d5e903aa107b6a 2341Author: Reuben Thomas <rrt@sc3d.org> 2342Date: Mon Jan 27 14:18:24 2014 +0000 2343 2344 en_US.UTF-8/Compose: Fix apparent copy-paste-o, changing capital to small A. 2345 2346 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 2347 2348commit d6bd988bc00494914b38b95ee5df77ac4f32f19f 2349Author: Peter Hutterer <peter.hutterer@who-t.net> 2350Date: Mon Mar 3 12:38:48 2014 +1000 2351 2352 man: fix man page for XkbGetMap 2353 2354 Returned structure must be freed with XkbFreeKeyboard(). 2355 2356 Reported-by: Morten Bøgeskov <mb@dbc.dk> 2357 Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net> 2358 2359commit a6dcf2201a05adbff54122df05a1e6325936abb6 2360Author: Ran Benita <ran234@gmail.com> 2361Date: Tue Feb 11 13:26:16 2014 +0200 2362 2363 Remove dead USE_OWN_COMPOSE-protected code 2364 2365 The build doesn't provide any way to define this option. It also refers 2366 to files (imComp.h) and functions (e.g. XimCompInitTables(), 2367 XimCompProcessSym()) which are not found anywhere, and the ordinary 2368 Compose implementation in xim doesn't use any of it. 2369 2370 Signed-off-by: Ran Benita <ran234@gmail.com> 2371 Reviewed-by: Julien Cristau <jcristau@debian.org> 2372 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 2373 2374commit b64bee2ddb7b96f00713a8b8435f11ad9ac1c9e0 2375Author: Ran Benita <ran234@gmail.com> 2376Date: Sun Feb 16 15:24:58 2014 +0200 2377 2378 nls: always use XCOMM instead of # for comments in Compose.pre files 2379 2380 Lines starting with # are considered as preprocessor directives in the 2381 .pre files. 2382 2383 Fixes warnings like: 2384 <stdin>:3:0: error: invalid preprocessing directive #Khmer 2385 2386 Signed-off-by: Ran Benita <ran234@gmail.com> 2387 Signed-off-by: James Cloos <cloos@jhcloos.com> 2388 2389commit 470e2289a3ebc59c5a35e54e1adeb0f261d5bf88 2390Author: Alan Coopersmith <alan.coopersmith@oracle.com> 2391Date: Thu Feb 6 13:48:08 2014 -0800 2392 2393 Fix typos in Xrm.c comments 2394 2395 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 2396 2397commit aacf95dacc7c598e7297894580d4d655593813b2 2398Author: Marko Myllynen <myllynen@redhat.com> 2399Date: Mon Jan 13 16:43:18 2014 +0200 2400 2401 Annotate Finnish Compose map with Unicode code points 2402 2403 Scripted annotation, no functional changes. 2404 2405 Signed-off-by: James Cloos <cloos@jhcloos.com> 2406 2407commit 20fdccd81b54678376d49e00edfebbbe94951f07 2408Author: Teemu Likonen <tlikonen@iki.fi> 2409Date: Fri Jul 20 19:21:04 2012 +0300 2410 2411 Fix "RING ABOVE" key in the Finnish compose file 2412 2413 The Finnish keyboard standard defines that <dead_abovering> <space> must 2414 insert the character U+02DA RING ABOVE. Currently the Finnish Compose 2415 file inserts U+00B0 DEGREE SIGN even though the line's comment says 2416 "RING ABOVE". This commit changes the character to U+02DA RING ABOVE. 2417 2418 Signed-off-by: Teemu Likonen <tlikonen@iki.fi> 2419 Signed-off-by: James Cloos <cloos@jhcloos.com> 2420 2421commit 8757e2ac8e04f2932ff437127f3e2ae9ac20c1d7 2422Author: Ran Benita <ran234@gmail.com> 2423Date: Wed Jan 29 02:11:47 2014 +0200 2424 2425 nls: remove duplicate 'ohorn' and 'uhorn' compose sequences 2426 2427 Since <Ohorn> == <U01A0> and <ohorn> == <U01A1>, when translated to 2428 keysyms: 2429 2430 #define XK_Ohorn 0x10001a0 /* U+01A0 LATIN CAPITAL LETTER O WITH HORN */ 2431 #define XK_ohorn 0x10001a1 /* U+01A1 LATIN SMALL LETTER O WITH HORN */ 2432 2433 (and similarly for uhorn), there is no need to have both names. Remove 2434 the unicode literal ones. 2435 2436 Signed-off-by: Ran Benita <ran234@gmail.com> 2437 Signed-off-by: James Cloos <cloos@jhcloos.com> 2438 2439commit b98998cb3bea7cb3005f2e9d5bc5332d14b1d5d3 2440Author: Alan Coopersmith <alan.coopersmith@oracle.com> 2441Date: Sat Jan 18 22:35:18 2014 -0800 2442 2443 Add RANDR 1.4 requests & events to XErrorDB 2444 2445 Checked against randrproto.txt & randr.h 2446 2447 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 2448 2449commit 321392ded15a7ee9d177d4ebe8846336ba76741c 2450Author: Alan Coopersmith <alan.coopersmith@oracle.com> 2451Date: Fri Jan 3 20:04:33 2014 -0800 2452 2453 Remove unused ETEST & ESZTEST macros from XlibInt.c 2454 2455 Left behind when 15e5eaf62897 removed support for building without XCB. 2456 2457 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 2458 Reviewed-by: Jasper St. Pierre <jstpierre@mecheye.net> 2459 2460commit 1ffc0c5503d4f419fdbc765243832a53491bf5bc 2461Author: Alan Coopersmith <alan.coopersmith@oracle.com> 2462Date: Thu Dec 26 09:26:13 2013 -0800 2463 2464 _XkbReadGeomOverlay: check for NULL first, then use pointer 2465 2466 Flagged by cppcheck 1.62: 2467 [lib/libX11/src/xkb/XKBGeom.c:479] -> [lib/libX11/src/xkb/XKBGeom.c:480]: 2468 (warning) Possible null pointer dereference: row - otherwise it is 2469 redundant to check it against null. 2470 2471 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 2472 2473commit ddf5f130cc29bb3bf8b9c757dcbac31bc56e9379 2474Author: Alan Coopersmith <alan.coopersmith@oracle.com> 2475Date: Thu Dec 26 09:22:49 2013 -0800 2476 2477 XkbSelectEventDetails: remove unnecessary assignments 2478 2479 clear & selectAll are set to 0 already a few lines earlier, 2480 affectWhich is set to XkbMapNotifyMask a few lines later. 2481 None are used between the other assignments and the removed ones. 2482 2483 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 2484 2485commit 3d69b0a83e62f8f6fbdd952fc49cdbdf8825e1e6 2486Author: Jon TURNEY <jon.turney@dronecode.org.uk> 2487Date: Thu Oct 7 18:46:08 2010 +0100 2488 2489 Don't try so hard to find a matching font with the given encoding 2490 2491 See http://sourceware.org/bugzilla/show_bug.cgi?id=10948 2492 2493 Currently, if the locale is UTF-8, no CJK fonts are installed, and someone 2494 does XCreateFontSet() with a font name of "*", we end up asking the server 2495 to list the (non-existent) fonts 11 times for each CJK encoding, which can 2496 take a while. 2497 2498 A * wildcard can match multiple components in a XLFD name in XListFonts(), 2499 so there's no need to try adding more than one to get a match. 2500 2501 We do try once with a leading '*-' in case the fontname isn't a full 2502 well-formed XLFD name, maybe even that isn't needed? 2503 2504 (See also http://invisible-island.net/xterm/xterm.faq.html#slow_menus) 2505 2506 Signed-off-by: Jon TURNEY <jon.turney@dronecode.org.uk> 2507 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 2508 2509commit 7e163300735d4bcd3386b86eec112acdad139c59 2510Author: Alan Coopersmith <alan.coopersmith@oracle.com> 2511Date: Mon Dec 2 21:51:27 2013 -0800 2512 2513 unifdef -UISC 2514 2515 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 2516 2517commit 1e43c262d13cab2b759665f9f13bdedbc7afbfd4 2518Author: Benno Schulenberg <bensberg@justemail.net> 2519Date: Thu Sep 19 13:20:05 2013 +0200 2520 2521 nls: Fix transposed locale identifier for Khmer. 2522 2523 Signed-off-by: Benno Schulenberg <bensberg@justemail.net> 2524 Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com> 2525 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 2526 2527commit 0e45f64766c0557c8e99a979c70ca6f55664dae7 2528Author: Alan Coopersmith <alan.coopersmith@oracle.com> 2529Date: Sat Nov 16 20:21:54 2013 -0800 2530 2531 Drop X_LOCALE fallback for OS'es without setlocale() 2532 2533 C89 or bust! This was documented as being needed for "only Lynx, 2534 Linux-libc5, OS/2" and has never been enabled in modular builds, 2535 since none of those platforms have had anyone step up to add support 2536 since the X11R7 conversion to autotools. 2537 2538 Mostly performed with unifdef -UX_LOCALE, followed by removal of files 2539 left without any purpose, and manual cleanup of remaining references. 2540 2541 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 2542 Reviewed-by: Adam Jackson <ajax@redhat.com> 2543 2544commit 6cb02b166361200da35ba14f52cd9aaa493eb0ea 2545Author: Alan Coopersmith <alan.coopersmith@oracle.com> 2546Date: Wed Oct 23 10:37:53 2013 -0700 2547 2548 Xcms file parsing should not require the impossible to succeed 2549 2550 The field2 helper function, to split lines from Xcms.txt files into 2551 two tab delimited fields, contained a check: 2552 2553 if ((*pBuf != '\n') || (*pBuf != '\0')) { 2554 return(XcmsFailure); 2555 2556 which would cause it to return failure unless *pBuf had a value that 2557 was simultaneously equal to both \n & \0, and no one wants to live in 2558 a world where that could ever be true. 2559 2560 This has gone unnoticed since 1991, since this only caused lines 2561 in Xcms.txt that started with whitespace to be rejected, but now 2562 gcc -Wlogicalop has brought it to our attention, and 2563 https://bugs.freedesktop.org/show_bug.cgi?id=70803 was filed. 2564 2565 Now that we see it, and cannot unsee it, we change it to use the 2566 same logic as the check at other points in this function, to return 2567 failure only if we hit \n or \0 before we find the first non-whitespace 2568 character, so that lines starting with whitespace will have the space 2569 skipped over to get to the color name to be defined. 2570 2571 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 2572 Reviewed-by: Dan Nicholson <dbn.lists@gmail.com> 2573 2574commit 18a5278b008e9faa59b346fcab18a8d74b875fda 2575Author: Gaetan Nadon <memsize@videotron.ca> 2576Date: Sat Sep 28 17:33:52 2013 -0400 2577 2578 makekeys: don't need to use target-specific CFLAGS 2579 2580 It's the only thing built in that directory, so we can use AM_CFLAGS 2581 and AM_CPPFLAGS as usual. 2582 2583 Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com> 2584 Signed-off-by: Gaetan Nadon <memsize@videotron.ca> 2585 2586commit 5dcb40f28d59587597d2ff6e6ac64c71cfe6ff7b 2587Author: James Cloos <cloos@jhcloos.com> 2588Date: Tue Sep 17 12:50:42 2013 -0400 2589 2590 nls/en_US.UTF-8/Compose.pre: Fix typo. 2591 2592 Fix typo added in 215ce6a67863, s/actute/acute/. 2593 2594 Fixes bug #69476. Reported by Jean Krohn. 2595 2596 Signed-off-by: James Cloos <cloos@jhcloos.com> 2597 2598commit cb107760df33ffc8630677e66e2e50aa37950a5c 2599Author: Alan Coopersmith <alan.coopersmith@oracle.com> 2600Date: Sun Sep 8 18:37:01 2013 -0700 2601 2602 libX11 1.6.2 2603 2604commit 215ce6a67863de7acfd6dd3562b4fd97ef87b411 2605Author: Benno Schulenberg <bensberg@justemail.net> 2606Date: Sun Sep 1 12:38:30 2013 +0200 2607 2608 nls: Adding more accessible compose sequences for J́ and j́. 2609 2610 Few keyboards have an <acute> key, so this adds the much more 2611 accessible and usual compose sequences with <apostrophe>, ánd 2612 the most comfortable ones with <dead_acute>. 2613 2614 Signed-off-by: Benno Schulenberg <bensberg@justemail.net> 2615 Signed-off-by: James Cloos <cloos@jhcloos.com> 2616 2617commit e9b14d10d0258bfcc273ff8bc84cd349dccda62c 2618Author: Alan Coopersmith <alan.coopersmith@oracle.com> 2619Date: Sat Aug 24 17:27:43 2013 -0700 2620 2621 Bug 68413 - [Bisected]Error in `xterm': realloc(): invalid next size 2622 2623 Pass *new* size to realloc, not old size. 2624 2625 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 2626 2627commit c2b8e30790c21d6386767265263b3294ce1b1f9a 2628Author: Alan Coopersmith <alan.coopersmith@oracle.com> 2629Date: Fri Aug 16 21:04:02 2013 -0700 2630 2631 Stop checking for HAVE_DIX_CONFIG_H on the client side 2632 2633 Leftover from when these XKB files were shared with the server sources 2634 and could be compiled in either the client or server, with the different 2635 autoconf config files in each. 2636 2637 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 2638 2639commit 84276609b2f0aec74fb464c428c7db5714b0fcfc 2640Author: Alan Coopersmith <alan.coopersmith@oracle.com> 2641Date: Fri Aug 16 18:27:28 2013 -0700 2642 2643 Rearrange some variable declarations & initializations in XKB 2644 2645 Little things noticed during XKB restyling that seemed to make the 2646 code easier to read. 2647 2648 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 2649 2650commit b90b7e859cf45ec76921fa21bbfc1f3840d6e8d1 2651Author: Alan Coopersmith <alan.coopersmith@oracle.com> 2652Date: Sun Aug 11 13:29:33 2013 -0700 2653 2654 Reindent XKB code to X.Org standard style 2655 2656 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 2657 2658commit c0a0f78eb49c2e4ad956209de77475c85b9314ea 2659Author: Alan Coopersmith <alan.coopersmith@oracle.com> 2660Date: Fri Aug 16 18:14:14 2013 -0700 2661 2662 Fix overflow checks in _XkbReadKeySyms when key_sym_map is already created 2663 2664 We were checking to make sure that the largest keysym value was within 2665 the range of the allocated buffer, but checking against different limits 2666 in the not-yet-allocated vs. the already-allocated branches. 2667 2668 The check should be the same in both, and reflect the size used for the 2669 allocation, which is based on the maximum key code value, so we move it 2670 to be a common check, before we branch, instead of duplicating in each 2671 branch. 2672 2673 map->key_sym_map is an array of XkbSymMapRec structs, [0..max_key_code] 2674 map->syms is the array for which num_syms is recorded, hence is not the 2675 right value to check for ensuring our key_sym_map accesses are in range. 2676 2677 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 2678 Reported-by: Barry Kauler <bkauler@gmail.com> 2679 Tested-by: Barry Kauler <bkauler@gmail.com> 2680 2681commit bea6cbd027973142fc64532274e1d16861b47190 2682Author: Alan Coopersmith <alan.coopersmith@oracle.com> 2683Date: Sun Aug 11 17:02:21 2013 -0700 2684 2685 Remove long unused src/udcInf.c 2686 2687 I can find no record of what this file was for. Neither the X11R6.8.2 2688 monolith Imakefile nor any modular release Makefile.am have ever built 2689 it and nothing else references it. 2690 2691 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 2692 2693commit bf3501e0395abe890acfea98fdd9f50a6966f118 2694Author: Alan Coopersmith <alan.coopersmith@oracle.com> 2695Date: Sun Aug 11 00:07:33 2013 -0700 2696 2697 Remove unnecessary casts of pointers to (char *) in calls to Xfree() 2698 2699 Left one cast behind that is necessary to change from const char * 2700 to char * in src/xlibi18n/lcCharSet.c. 2701 2702 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 2703 2704commit 6ead9dd92ab90aabd9f0e328d59597e6b5bc09d3 2705Author: Alan Coopersmith <alan.coopersmith@oracle.com> 2706Date: Sat Aug 10 23:57:55 2013 -0700 2707 2708 Don't cast sizeof() results to unsigned when passing to Xmalloc/Xcalloc 2709 2710 sizeof() returns size_t, malloc() & calloc() expect sizes in size_t, 2711 don't strip down to unsigned int and re-expand unnecessarily. 2712 2713 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 2714 2715commit 25a7a329def672fc8d26078538173777850c6390 2716Author: Alan Coopersmith <alan.coopersmith@oracle.com> 2717Date: Sat Aug 10 23:51:08 2013 -0700 2718 2719 Remove even more casts of return values from Xmalloc/Xrealloc 2720 2721 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 2722 2723commit f8fa16092a148b74ca35b4beb182053352606f2f 2724Author: Alan Coopersmith <alan.coopersmith@oracle.com> 2725Date: Sat Aug 10 23:05:13 2013 -0700 2726 2727 xlibi18n: fix argsize argument to _XlcParsePath 2728 2729 The array is defined as having NUM_LOCALEDIR entries, so use that 2730 instead of hardcoded 256 value (the other two calls already did this). 2731 2732 Reported by parfait: 2733 Buffer overflow (CWE 120): In pointer dereference of argv[argc] with index argc 2734 Pointer size is 64 elements (of 8 bytes each), index is 255 2735 at line 82 of src/xlibi18n/lcFile.c in function 'parse_line'. 2736 called at line 178 in function '_XlcParsePath' with argv = argv. 2737 called at line 722 in function '_XlcLocaleLibDirName' with argv = args, argsize = 256. 2738 at line 82 of src/xlibi18n/lcFile.c in function 'parse_line'. 2739 called at line 178 in function '_XlcParsePath' with argv = argv. 2740 called at line 638 in function '_XlcLocaleDirName' with argv = args, argsize = 256. 2741 2742 [ This bug was found by the Parfait 1.2.0 bug checking tool. 2743 http://labs.oracle.com/pls/apex/f?p=labs:49:::::P49_PROJECT_ID:13 ] 2744 2745 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 2746 2747commit e7d46c6452c0b90fd66ae9f538546b968e0dd608 2748Author: Alan Coopersmith <alan.coopersmith@oracle.com> 2749Date: Sat Aug 10 22:32:42 2013 -0700 2750 2751 i18n modules: Fix some const cast warnings 2752 2753 imRm.c: In function '_XimSetICMode': 2754 imRm.c:2419:37: warning: cast discards '__attribute__((const))' qualifier from pointer target type [-Wcast-qual] 2755 imRm.c:2420:30: warning: cast discards '__attribute__((const))' qualifier from pointer target type [-Wcast-qual] 2756 2757 lcGenConv.c: In function 'byteM_parse_codeset': 2758 lcGenConv.c:345:13: warning: cast discards '__attribute__((const))' qualifier from pointer target type [-Wcast-qual] 2759 2760 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 2761 2762commit cbd86eccf175dc82a5cbcea54c8bd21ce18b70c0 2763Author: Alan Coopersmith <alan.coopersmith@oracle.com> 2764Date: Sat Aug 10 22:21:54 2013 -0700 2765 2766 xlibi18n: Fix a bunch of const cast warnings 2767 2768 Add const qualifiers to casts where needed, remove other casts that 2769 are no longer needed. 2770 2771 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 2772 2773commit eb3676113fc2dd0f34d92b89beb81b3f61569aa1 2774Author: Alan Coopersmith <alan.coopersmith@oracle.com> 2775Date: Sat Aug 10 22:18:00 2013 -0700 2776 2777 Fix const handling in XSetLocaleModifiers 2778 2779 Instead of reusing the input parameter to store the output, make a 2780 result variable instead, so that there's less const confusion. 2781 2782 Fixes gcc warnings: 2783 lcWrap.c: In function 'XSetLocaleModifiers': 2784 lcWrap.c:87:18: warning: cast discards '__attribute__((const))' qualifier from pointer target type [-Wcast-qual] 2785 lcWrap.c:91:25: warning: cast discards '__attribute__((const))' qualifier from pointer target type [-Wcast-qual] 2786 lcWrap.c:93:12: warning: cast discards '__attribute__((const))' qualifier from pointer target type [-Wcast-qual] 2787 2788 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 2789 2790commit 8ebbffa98563960910152e4f2e31cb032375d871 2791Author: Alan Coopersmith <alan.coopersmith@oracle.com> 2792Date: Sat Aug 10 21:46:37 2013 -0700 2793 2794 Constify lc_name argument to _XlcLocaleDirName() & _XlcLocaleLibDirName() 2795 2796 Makes code considerably less crufty and clears gcc warnings: 2797 XlcDL.c: In function '_XlcDynamicLoad': 2798 XlcDL.c:384:44: warning: cast discards '__attribute__((const))' qualifier 2799 from pointer target type [-Wcast-qual] 2800 XlcDL.c:386:51: warning: cast discards '__attribute__((const))' qualifier 2801 from pointer target type [-Wcast-qual] 2802 2803 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 2804 2805commit 07e4e864107b38c2f393564fdacc90f4e858f23f 2806Author: Alan Coopersmith <alan.coopersmith@oracle.com> 2807Date: Sat Aug 10 13:37:53 2013 -0700 2808 2809 init_om: remove unneeded extra copy of string to local buffer 2810 2811 Strings from the supported_charset_list[] were being copied one by 2812 one to a stack buffer, and then strdup called on that buffer. 2813 2814 Instead, just strdup the original string, without the local copy, 2815 and use a more traditional for loop, so it's easier to figure out 2816 what the code is doing (cleaning up a gcc const-cast warning in 2817 the process). 2818 2819 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 2820 Reviewed-by: Matthieu Herrb <matthieu.herrb@laas.fr> 2821 2822commit 1cec14dad904ba21a861f4af131be5982ecb83dd 2823Author: Alan Coopersmith <alan.coopersmith@oracle.com> 2824Date: Sat Aug 10 12:34:53 2013 -0700 2825 2826 Delete unused XKB_INSURE_SIZE macro from XKBlibint.h 2827 2828 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 2829 Reviewed-by: Matthieu Herrb <matthieu.herrb@laas.fr> 2830 2831commit 5f32182c7c4045540ff3833c48ee24a3a25726e2 2832Author: Alan Coopersmith <alan.coopersmith@oracle.com> 2833Date: Sat Aug 10 12:19:17 2013 -0700 2834 2835 miRegionOp(): ensure region size is not updated if realloc fails 2836 2837 This function performs operations on a region, and when finished, 2838 checks to see if it should compact the rectangle list. If the 2839 number of rectangles for which memory is allocated in the list is 2840 more than twice the number used, it tries to shrink. realloc() 2841 should not fail in this case, but if it does, might as well keep 2842 the correct value for the number of allocated rectangles, so we 2843 don't try to grow it unnecessarily later if adding to the region. 2844 2845 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 2846 2847commit bd2a0b5a187798bb2e2f05dc5062ca79e37075dd 2848Author: Alan Coopersmith <alan.coopersmith@oracle.com> 2849Date: Sat Aug 10 12:19:17 2013 -0700 2850 2851 miRegionCopy(): handle realloc failure better 2852 2853 Zero out the region size when freeing the region so callers don't think 2854 there's anything there. (Pointer is already set to NULL from the realloc 2855 result itself.) Return 0 to the callers, and have them cascade that back 2856 to their callers to indicate failure, instead of their usual return value 2857 of 1 on success. 2858 2859 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 2860 2861commit 5dc8b5385d513bbda88697c2372db750d23f46d4 2862Author: Alan Coopersmith <alan.coopersmith@oracle.com> 2863Date: Sat Aug 10 11:27:22 2013 -0700 2864 2865 Avoid memory leak/corruption if realloc fails in Xregion.h:MEMCHECK macro 2866 2867 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 2868 2869commit 453c4ee436ef32d91501d7736d7a91c1aeafc565 2870Author: Alan Coopersmith <alan.coopersmith@oracle.com> 2871Date: Sat Aug 10 12:07:51 2013 -0700 2872 2873 Avoid memory leak/corruption if realloc fails in imLcPrs.c:parseline() 2874 2875 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 2876 2877commit b3fea74ec5b7d4f83755a52a8d49c564b71c6d12 2878Author: Alan Coopersmith <alan.coopersmith@oracle.com> 2879Date: Sat Aug 10 12:30:39 2013 -0700 2880 2881 lcDB.c: ensure buffer size is updated correctly if realloc fails 2882 2883 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 2884 2885commit 43bb822c714a73c3b2d15e621ffb3333cd10da8c 2886Author: Alan Coopersmith <alan.coopersmith@oracle.com> 2887Date: Sat Aug 10 11:07:47 2013 -0700 2888 2889 Avoid memory leak/corruption if realloc fails in XlcDL.c:resolve_object() 2890 2891 Previously, if realloc failed to increase the size, we'd still 2892 record that we had allocated the larger size, but the pointer 2893 to it would be NULL, causing future calls to be broken, and the 2894 previous allocation to be lost/leaked. 2895 2896 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 2897 Reviewed-by: Matthieu Herrb <matthieu.herrb@laas.fr> 2898 2899commit 5d47a39978e92bb34ec928b1b15d71c0c2434870 2900Author: Alan Coopersmith <alan.coopersmith@oracle.com> 2901Date: Fri Aug 9 23:33:03 2013 -0700 2902 2903 omGeneric.c: convert sprintf calls to snprintf 2904 2905 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 2906 Reviewed-by: Matthieu Herrb <matthieu.herrb@laas.fr> 2907 2908commit 88a27a2aa9b7d35cb79b16334ea3413e572b724a 2909Author: Alan Coopersmith <alan.coopersmith@oracle.com> 2910Date: Fri Aug 9 23:30:30 2013 -0700 2911 2912 ximcp/imRm.c: convert sprintf calls to snprintf 2913 2914 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 2915 Reviewed-by: Matthieu Herrb <matthieu.herrb@laas.fr> 2916 2917commit 4fadae243fb485628c9a137f5da3489ed6214b21 2918Author: Alan Coopersmith <alan.coopersmith@oracle.com> 2919Date: Fri Aug 9 23:02:12 2013 -0700 2920 2921 xlibi18n: convert sprintf calls to snprintf 2922 2923 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 2924 Reviewed-by: Matthieu Herrb <matthieu.herrb@laas.fr> 2925 2926commit 36a7edf0e5edfc5ef4ff2c3a8b4fa3dc4796e854 2927Author: Alan Coopersmith <alan.coopersmith@oracle.com> 2928Date: Fri Aug 9 23:02:12 2013 -0700 2929 2930 lcfile: skip over any null entries in args list 2931 2932 Previous code seemed to assume that printf("%s", NULL) would result 2933 in a 0-length string, not "(null)" or similar, but since there's no 2934 point looking for files in "(null)/filepath...", instead we just 2935 skip over NULL entries in search paths when generating file names. 2936 2937 In the *DirName() functions, this effectively just moves the "bail on 2938 NULL in arg[i]" check up from the later code that assigned it to targetdir 2939 and then bailed if that was NULL. 2940 2941 Not sure how there ever could be a NULL in arg[i], given the current 2942 implementation of XlcParsePath, but it's easy enough to check once and 2943 reject up front instead of on every reference. 2944 2945 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 2946 2947commit ee0824f24392d5ca3d5fd5f5ed8d78c0d892f7c0 2948Author: Alan Coopersmith <alan.coopersmith@oracle.com> 2949Date: Fri Aug 9 22:00:09 2013 -0700 2950 2951 Fix file leak on malloc error in XlcDL.c:resolve_object() 2952 2953 File Leak: Leaked File fp 2954 at line 219 of lib/libX11/src/xlibi18n/XlcDL.c in function 'resolve_object'. 2955 fp initialized at line 198 with fopen 2956 2957 [ This bug was found by the Parfait 1.2.0 bug checking tool. 2958 http://labs.oracle.com/pls/apex/f?p=labs:49:::::P49_PROJECT_ID:13 ] 2959 2960 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 2961 Reviewed-by: Matthieu Herrb <matthieu.herrb@laas.fr> 2962 2963commit 9b291044a240e5b9b031ed814e0c84e53a1c3084 2964Author: Julien Cristau <jcristau@debian.org> 2965Date: Sat Jun 15 18:02:21 2013 +0200 2966 2967 Add missing locales to configure.ac 2968 2969 Commits 40761898692e5063957bfa2518cca3d35b2e354a and 2970 f198c6aa98f88ff285d903175a3c4c0fd33a4575 added two new locales 2971 (sr_CS.UTF-8 and km_KH.UTF-8), but didn't list them in configure.ac, 2972 meaning they're not included in tarballs. 2973 2974 Signed-off-by: Julien Cristau <jcristau@debian.org> 2975 Reviewed-by: James Cloos <cloos@jhcloos.com> 2976 2977commit 8f58e54a5f46c3cd4897a23b89950f4800ae38d4 2978Author: ISHIKAWA,chiaki <ishikawa@yk.rim.or.jp> 2979Date: Tue Dec 18 15:28:05 2012 +0000 2980 2981 Fix bogus timestamp generated by XIM 2982 2983 Fix bogus timestamp generted by XIM due to uninitialized 2984 data field. Also set appropriate serial, too. 2985 Fixes: https://bugs.freedesktop.org/show_bug.cgi?id=39367 2986 2987 Signed-off-by: Chiaki ISHIKAWA <ishikawa@yk.rim.or.jp> 2988 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 2989 2990commit e7fd6f0eda57300df4d6b695b7064610ca5dec57 2991Author: Egbert Eich <eich@freedesktop.org> 2992Date: Thu Jun 16 18:47:49 2011 +0200 2993 2994 XIM: Fix sync problem on focus change. 2995 2996 XSetICFocus() and XUnsetICFocus() are both asynchronous events. 2997 This is a pretty stupid idea: those functions may undo certain 2998 settings on the client side for which requests from the server 2999 may still be in the queue unprocessed. Thus things may be set 3000 in the wrong order ie instead of set -> unest it will be unset -> set. 3001 Moreover there is no way for either the client or the server to 3002 cause the event queue to be flushed - which is pretty bad as 3003 XIM is bidirectional. 3004 The scenario is as follows: 3005 Two ICs are created: 3006 ic1 = XCreateIC(im, 3007 XNInputStyle, XIMPreeditCallbacks | XIMStatusCallbacks, 3008 XNClientWindow, window, 3009 XNPreeditAttributes, preedit_attr, 3010 XNStatusAttributes, status_attr, 3011 NULL); 3012 ic2 = XCreateIC(im, XNInputStyle, 3013 XIMPreeditNothing | XIMStatusNothing, 3014 XNClientWindow, window, NULL); 3015 Then the focus is removed from ic2: 3016 XUnsetICFocus(ic2); 3017 If SCIM is used as the input server it will send a bunch of requests 3018 following an XCreateIC(). One of the requests registers a key release 3019 filter. XUnsetICFocus() unsets both key press and release filters. 3020 Since it is asynchronous, the input server requests to register key 3021 press and release filters may not have been processed, when XUnsetICFocus() 3022 is called. Since there is no explicite way for client programs to enforce 3023 the request queue to be flushed explicitely before an X[Set/Unset]ICFocus() 3024 call it would be safest to make those two calls synchronous in the sense 3025 that they ensure the request queue has been handled before they execute. 3026 The easiest way to do this from Xlib is thru a call to XGetICValues() 3027 which sends a request to the server and subsequently reads the queue 3028 from the server to the client. This will cause all outstanding requests 3029 in the queue to be read and handled. 3030 This is an ugly hack and this could be fixed directly in the client, 3031 however it seems to be easier to fix Xlib than to fix numerous clients. 3032 This problem arose since there is no well documented way how to handle 3033 and synchronize XIM requests and not all input servers send requests 3034 when an IC is created. 3035 This has been discussed extensively in: 3036 https://bugzilla.novell.com/show_bug.cgi?id=221326 3037 3038 Signed-off-by: Egbert Eich <eich@freedesktop.org> 3039 3040commit 26ec7d3821bc19debc73c8c3e42e6e33ef6f856e 3041Author: Egbert Eich <eich@freedesktop.org> 3042Date: Thu Jun 16 17:28:39 2011 +0200 3043 3044 XIM: Fix race on focus change: set 'FABRICATED' only when keyev filters in place. 3045 3046 When synthesized key events are sent on commit XIM sets the 'fabricated' 3047 flag so that the keypress handler knows that these were not real events. 3048 This also happens when committing due to the loss of focus. However in this 3049 case the keypress/release filters which consume and unset this flag are no 3050 longer in the filter chain. 3051 So the flag is erronously set when a real keyboard event is received after 3052 focus has been regained. So the first event is wrongly treated as a 3053 fabricated key in the keypress handler which will at the same time reset 3054 the flag so the second key event is treated correctly. 3055 This fix only sets the flag when at least one of the keyboard filters is in 3056 place. 3057 How to reproduce this bug: run scim, choose a Japanese input method start 3058 two instances of xterm: start typing in one xterm (this should pop up an 3059 IM window). Without comitting (hitting 'enter') move focus to the other 3060 xterm, then move focus back. Start typing again. The first character will 3061 be committed immediately without popping up an input window. 3062 With this fix this behavior is gone. 3063 3064 See also: https://bugzilla.novell.com/show_bug.cgi?id=239698 3065 3066 Signed-off-by: Egbert Eich <eich@freedesktop.org> 3067 3068commit 44f84223f5e2dd46883fcbd352af2798bfa9aeb6 3069Author: Alan Coopersmith <alan.coopersmith@oracle.com> 3070Date: Mon Jul 29 21:29:49 2013 -0700 3071 3072 libX11 1.6.1 3073 3074 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 3075 3076commit d19cfaca15826943d3c637ef7fa5db0a23d5feed 3077Author: Alan Coopersmith <alan.coopersmith@oracle.com> 3078Date: Sat Jul 27 12:19:00 2013 -0700 3079 3080 Fix undefined XCMSDIR error when building lint library 3081 3082 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 3083 3084commit 3083cd43d7dcd59da587975e7cadda681cd8a103 3085Author: Alan Coopersmith <alan.coopersmith@oracle.com> 3086Date: Sat Jul 27 00:36:08 2013 -0700 3087 3088 Add ku_TR.UTF-8 (Kurdish language, Turkey region) to compose/locale.dir 3089 3090 Upstreaming from changes originally integrated into OpenSolaris 3091 under Sun bug id 6882572. 3092 3093 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 3094 Reviewed-by: Thomas Klausner <wiz@NetBSD.org> 3095 3096commit 208e586c808e88a2ee819e4450dc27f557afc2bf 3097Author: Alan Coopersmith <alan.coopersmith@oracle.com> 3098Date: Sat Jul 27 01:03:18 2013 -0700 3099 3100 omGeneric: remove space between struct name & member name 3101 3102 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 3103 3104commit 7db74514e454d3fc4ff70aa08ddac66bfffda4dd 3105Author: Alan Coopersmith <alan.coopersmith@oracle.com> 3106Date: Tue Jul 23 22:18:46 2013 -0700 3107 3108 Refactor common code from XAddHost & XRemoveHost into single function 3109 3110 On the Xlib side, the only real difference is the mode flag we send 3111 to the server with the address, so just make that an argument to the 3112 function with the common code for packing the address into the request. 3113 3114 (Aside from labels, gcc 4.7.2 generates identical code before & after 3115 this change due to inlining, verified via diff of gcc -S output.) 3116 3117 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 3118 3119commit 3292195a64a9ce4f0d27134cd544651ec647e728 3120Author: Alan Coopersmith <alan.coopersmith@oracle.com> 3121Date: Tue Jul 23 22:11:34 2013 -0700 3122 3123 XSetModifierMapping: Use Data instead of GetReqExtra 3124 3125 Handle arbitrary length data in the same fashion as other calls, 3126 avoiding need to ensure it fits all in the request buffer. 3127 3128 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 3129 3130commit feb131b18aee31c2c125dc3275b0260940245882 3131Author: Kees Cook <kees@outflux.net> 3132Date: Sun Jun 9 11:13:43 2013 -0700 3133 3134 libX11: check "req" when calling GetReqExtra 3135 3136 This fixes the two callers of GetReqExtra to check that "req" is non-NULL 3137 to avoid crashing now that GetReqExtra does internal bounds-checking on 3138 the resulting buffer sizes. 3139 3140 Additionally updates comment describing return values to use names 3141 instead of only literal values. 3142 3143 Signed-off-by: Kees Cook <kees@outflux.net> 3144 Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com> 3145 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 3146 3147commit 54540d7cba0c2bfe9176221c7bca910058d304df 3148Author: Kees Cook <kees@outflux.net> 3149Date: Sun Jun 9 11:13:42 2013 -0700 3150 3151 libX11: check size of GetReqExtra after XFlush 3152 3153 Two users of GetReqExtra pass arbitrarily sized allocations from the 3154 caller (ModMap and Host). Adjust _XGetRequest() (called by the GetReqExtra 3155 macro) to double-check the requested length and invalidate "req" when 3156 this happens. Users of GetReqExtra passing lengths greater than the Xlib 3157 buffer size (normally 16K) must check "req" and fail gracefully instead 3158 of crashing. 3159 3160 Any callers of GetReqExtra that do not check "req" for NULL 3161 will experience this change, in the pathological case, as a NULL 3162 dereference instead of a buffer overflow. This is an improvement, but 3163 the documentation for GetReqExtra has been updated to reflect the need 3164 to check the value of "req" after the call. 3165 3166 Bug that manifested the problem: 3167 https://bugs.launchpad.net/ubuntu/+source/x11-xserver-utils/+bug/792628 3168 3169 Signed-off-by: Kees Cook <kees@outflux.net> 3170 Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com> 3171 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 3172 3173commit 24d3ee0d08f24e23c91d55702f010f73d7b908e5 3174Author: Thomas Klausner <wiz@NetBSD.org> 3175Date: Tue Jun 25 22:35:29 2013 +0200 3176 3177 Tighten out-of-range comparisons. 3178 3179 [For all of these, LONG_MAX was the correct value to prevent overflows 3180 for the recent CVEs. Lowering to INT_MAX catches buggy replies from 3181 the server that 32-bit clients would reject but 64-bit would accept, 3182 so we catch bugs sooner, and really, no sane & working server should 3183 ever report more than 2gb of extension names, font path entries, 3184 key modifier maps, etc. -alan- ] 3185 3186 Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com> 3187 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 3188 3189commit 6d926088d80a08e13e6d6c4ff207b81ad52e667f 3190Author: Thomas Klausner <wiz@NetBSD.org> 3191Date: Tue Jun 25 18:34:32 2013 +0200 3192 3193 Fix out-of-range comparison in _XF86BigfontQueryFont 3194 3195 clang complained (correctly): 3196 warning: comparison of constant 768614336404564650 with expression 3197 of type 'CARD32' (aka 'unsigned int') is always true 3198 [-Wtautological-constant-out-of-range-compare] 3199 3200 [While LONG_MAX is correct, since it's used in size_t math, the 3201 numbers have to be limited to 32-bit range to be usable by 32-bit 3202 clients, and values beyond that range are far more likely to be 3203 bugs in the data from the server than valid numbers of characters 3204 in a font. -alan- ] 3205 3206 Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com> 3207 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 3208 3209commit 383e2b0d029482a0f4c39fe00e15397538576fc1 3210Author: Thomas Klausner <wiz@NetBSD.org> 3211Date: Tue Jun 25 18:33:56 2013 +0200 3212 3213 Check for symbol existence with #ifdef, not #if 3214 3215 Reviewed-by: Jamey Sharp <jamey@minilop.net> 3216 3217 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 3218 3219commit 9955d1c8de994a90fe7f2e3187e7362611d7d265 3220Author: Thomas Klausner <wiz@NetBSD.org> 3221Date: Tue Jun 25 18:33:07 2013 +0200 3222 3223 Use newer callback-based API for XIM. 3224 3225 Let libX11 load and make available the newer (X11R6) callback-based 3226 API for XIM (expected by emacs). 3227 3228 This patch updates the files to match the other nls/ files. 3229 3230 Patch from Ian D. Leroux <idleroux@fastmail.fm> on pkgsrc-users@NetBSD.org 3231 following a hint by Nhat Minh Lê <nhat.minh.le@gmail.com>. 3232 3233 Reviewed-by: James Cloos <cloos@jhcloos.com> 3234 3235 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 3236 3237commit a17ceb7100bd36c2db210473ee701deb5d515731 3238Author: Thomas Klausner <wiz@NetBSD.org> 3239Date: Tue Jun 25 18:31:32 2013 +0200 3240 3241 Stop truncating source to destination length if it is larger. 3242 3243 It seems useless to do that since the code tests for both source 3244 length and destination to be non-zero. This fixes a cut'n'paste 3245 problem in xterm where the paste length was limited to 1024 (BUFSIZ) 3246 in button.c. 3247 3248 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 3249 3250commit a336db9a0add3ae0783dda6e52459236622a12af 3251Author: Alan Coopersmith <alan.coopersmith@oracle.com> 3252Date: Mon Jun 24 23:02:05 2013 -0700 3253 3254 Require ANSI C89 pre-processor, drop pre-C89 token pasting support 3255 3256 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 3257 3258commit 9dfb0f3c0a761590bcdc1f3396b1e064da4e18e8 3259Author: Alan Coopersmith <alan.coopersmith@oracle.com> 3260Date: Fri Jun 7 11:30:11 2013 -0700 3261 3262 troff macro expansion in specs/libX11 3263 3264 Many of the custom nroff macros (.ds <macro> <contents>) were left 3265 unsubstituted in the nroff->docbook conversion. This substitution 3266 is now performed, via the following perl script: 3267 3268 #! /usr/bin/perl -w -i 3269 3270 use Text::Wrap; 3271 3272 while ($_ = <>) { 3273 while ($_ =~ m/\((\w+)\b/g) { 3274 my $m = $1; 3275 if (exists $macro{$m}) { 3276 $_ =~ s/\($m/$macro{$m}/; 3277 $_ = wrap('', '', $_); 3278 $_ =~ s/[ \t]+$//; 3279 } 3280 } 3281 3282 if ($_ =~ /\<!-- .ds (\w+) (.*) -->/) { 3283 my ($m, $s) = ($1, $2); 3284 $macro{$m} = $s; 3285 while ($macro{$m} =~ /\\\s*$/) { 3286 $macro{$m} =~ s/\\\s*$//ms; 3287 $macro{$m} .= <>; 3288 chomp($macro{$m}); 3289 } 3290 $macro{$m} =~ s/\\ / /g; 3291 } else { 3292 print $_; 3293 } 3294 } 3295 3296 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 3297 3298commit 20c17bd9ebf767a24643279e45866dddcb57b5ce 3299Author: Alan Coopersmith <alan.coopersmith@oracle.com> 3300Date: Fri Jun 7 09:27:26 2013 -0700 3301 3302 specs/libX11: correct prototype for XListPixmapFormats/XImageByteOrder 3303 3304 The XListPixmapFormats arguments was being shown with XImageByteOrder's 3305 name and return types. Appears to have been a glitch in the nroff -> 3306 docbook conversion. 3307 3308 Reported-by: ZHANG Zhaolong <zhangzl2013@126.com> 3309 Reviewed-by: Jamey Sharp <jamey@minilop.net> 3310 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 3311 3312commit ed3d830243c8a0eefaf24e15b11823272ffe5049 3313Author: Thomas Klausner <wiz@NetBSD.org> 3314Date: Sun Jun 2 20:49:55 2013 +0200 3315 3316 Deal with the limited range of VAX floating point numbers when compiling for VAX. 3317 3318 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 3319 3320commit 0a48235d63639fb917c44d27c86e928e79fbac66 3321Author: Eric S. Raymond <esr@thyrsus.com> 3322Date: Thu Jun 6 16:43:56 2013 -0400 3323 3324 Remove call to undefined macro. 3325 3326commit 9e4719b9b719f2f8d255f6778e2e8c1809e32599 3327Author: Eric S. Raymond <esr@thyrsus.com> 3328Date: Thu Jun 6 16:42:20 2013 -0400 3329 3330 Remove call to undefined macro. 3331 3332commit 8496122eb00ce6cd5d2308ee54f64b68c378e455 3333Author: Alan Coopersmith <alan.coopersmith@oracle.com> 3334Date: Mon Jun 3 20:06:43 2013 -0700 3335 3336 Update README to reflect where to find the Xlib specs now 3337 3338 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 3339 3340commit 655d631e86c95b14888758b27ed2836ca3e3ce86 3341Author: Alan Coopersmith <alan.coopersmith@oracle.com> 3342Date: Mon Jun 3 19:21:06 2013 -0700 3343 3344 libX11 1.6.0 3345 3346 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 3347 3348commit 4a89b7ea908554628f374537a79931c8006a2de3 3349Author: Thomas Klausner <wiz@NetBSD.org> 3350Date: Sun Jun 2 11:49:54 2013 -0700 3351 3352 cmsMath.c: Add missing stdio header for printf(3) in DEBUG build. 3353 3354 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 3355 3356commit 96dcf747f13b26b8e4d17b1bc8605d933c3e1dc6 3357Author: Thomas Klausner <wiz@NetBSD.org> 3358Date: Sun Jun 2 20:49:48 2013 +0200 3359 3360 XCreateGC man page: Avoid .TS H and .TH macros 3361 3362 Avoid .TS H and .TH for now as it doesn't alter the output in this case, 3363 and improve the output with mandoc(1). 3364 3365 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 3366 3367commit 95a388158c9d73df7d24016d6a3d61506d7d53a4 3368Author: Alan Coopersmith <alan.coopersmith@oracle.com> 3369Date: Thu May 23 19:43:35 2013 -0700 3370 3371 libX11 1.5.99.902 (1.6 RC2) 3372 3373 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 3374 3375commit a3bdd2b090915fe0163b062f0e6576fe05dd332e 3376Author: Julien Cristau <jcristau@debian.org> 3377Date: Thu May 23 20:39:46 2013 +0200 3378 3379 xkb: fix off-by-one in _XkbReadGetNamesReply and _XkbReadVirtualModMap 3380 3381 The size of the arrays is max_key_code + 1. This makes these functions 3382 consistent with the other checks added for CVE-2013-1997. 3383 3384 Also check the XkbGetNames reply when names->keys was just allocated. 3385 3386 Signed-off-by: Julien Cristau <jcristau@debian.org> 3387 Tested-by: Colin Walters <walters@verbum.org> 3388 Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com> 3389 3390commit 7e30056e78e4b7979ff47f102e00327617266019 3391Author: Niveditha Rau <Niveditha.Rau@Oracle.COM> 3392Date: Fri May 17 15:26:21 2013 -0700 3393 3394 Make sure internal headers include required headers 3395 3396 Fixes builds with Solaris Studio 12.3 when lint is enabled, since it no 3397 longer ignores *.h files, but complains when they reference undefined 3398 typedefs or macros. 3399 3400 Signed-off-by: Niveditha Rau <Niveditha.Rau@Oracle.COM> 3401 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 3402 3403commit 2820100bf8ba130b94253f415e7fa5ac28bb2037 3404Author: Alan Coopersmith <alan.coopersmith@oracle.com> 3405Date: Thu May 16 23:05:36 2013 -0700 3406 3407 Free fs->properties in _XF86BigfontQueryFont overflow error path 3408 3409 Fixes small memory leak introduced in commit 5669a22081 3410 3411 Reported-by: Julien Cristau <jcristau@debian.org> 3412 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 3413 3414commit 3131740513133a9ff7cb12123d29ceb18584fc38 3415Author: Matthieu Herrb <matthieu.herrb@laas.fr> 3416Date: Wed May 8 19:33:09 2013 +0200 3417 3418 XListFontsWithInfo: Re-decrement flist[0] before calling free() on it. 3419 3420 Freeing a pointer that wasn't returned by malloc() is undefined 3421 behavior and produces an error with OpenBSD's implementation. 3422 3423 Signed-off-by: Matthieu Herrb <matthieu.herrb@laas.fr> 3424 Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com> 3425 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 3426 3427commit 3fe4bea086149f06a142a8f1d575f627ec1e22c7 3428Author: Alan Coopersmith <alan.coopersmith@oracle.com> 3429Date: Fri Apr 19 14:30:40 2013 -0700 3430 3431 Give GNU & Solaris Studio compilers hints about XEatData branches 3432 3433 Try to offset the cost of all the recent checks we've added by giving 3434 the compiler a hint that the branches that involve us eating data 3435 are less likely to be used than the ones that process it. 3436 3437 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 3438 3439commit e1b457beb8d4e831ef44279dada6c475cb955738 3440Author: Alan Coopersmith <alan.coopersmith@oracle.com> 3441Date: Sun Mar 31 12:22:35 2013 -0700 3442 3443 _XkbReadGetMapReply: reject maxKeyCodes smaller than the minKeyCode 3444 3445 Various other bounds checks in the code assume this is true, so 3446 enforce it when we first get the data from the X server. 3447 3448 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 3449 3450commit 12ad4c6432496897ff000eb7cfecd0fb4b290331 3451Author: Alan Coopersmith <alan.coopersmith@oracle.com> 3452Date: Sat Mar 16 10:03:13 2013 -0700 3453 3454 Use calloc in XOpenDisplay to initialize structs containing pointers 3455 3456 Prevents trying to free uninitialized pointers if we have to bail out 3457 partway through setup, such as if we receive a corrupted or incomplete 3458 connection setup block from the server. 3459 3460 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 3461 3462commit d38527e25f8b6e2f1174ecc21260c5c5416f972e 3463Author: Alan Coopersmith <alan.coopersmith@oracle.com> 3464Date: Thu Mar 7 23:46:05 2013 -0800 3465 3466 Remove more unnecessary casts from Xmalloc/calloc calls 3467 3468 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 3469 3470commit b2c86b582c58f50c7b14da01cf7ebd20ef12a6b2 3471Author: Alan Coopersmith <alan.coopersmith@oracle.com> 3472Date: Sat Mar 2 16:56:16 2013 -0800 3473 3474 Convert more _XEatData callers to _XEatDataWords 3475 3476 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 3477 Reviewed-by: Matthieu Herrb <matthieu.herrb@laas.fr> 3478 3479commit 192bbb9e2fc45df4e17b35b6d14ea0eb418dbd39 3480Author: Alan Coopersmith <alan.coopersmith@oracle.com> 3481Date: Sat Mar 9 11:04:37 2013 -0800 3482 3483 Make XGetWindowProperty() always initialize returned values 3484 3485 Avoids memory corruption and other errors when callers access them 3486 without checking to see if XGetWindowProperty() returned an error value. 3487 3488 Callers are still required to check for errors, this just reduces the 3489 damage when they don't. 3490 3491 Reported-by: Ilja Van Sprundel <ivansprundel@ioactive.com> 3492 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 3493 Reviewed-by: Matthieu Herrb <matthieu.herrb@laas.fr> 3494 3495commit db1b1c871da29aa0545182bf888df81627f165a5 3496Author: Alan Coopersmith <alan.coopersmith@oracle.com> 3497Date: Sat Mar 2 15:08:21 2013 -0800 3498 3499 Avoid overflows in XListExtensions() [CVE-2013-1997 15/15] 3500 3501 Ensure that when breaking the returned list into individual strings, 3502 we don't walk past the end of allocated memory to write the '\0' bytes 3503 3504 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 3505 Reviewed-by: Matthieu Herrb <matthieu.herrb@laas.fr> 3506 3507commit 8d5936594993921acdfec778dd8f41b555e2543a 3508Author: Alan Coopersmith <alan.coopersmith@oracle.com> 3509Date: Sat Mar 2 15:08:21 2013 -0800 3510 3511 Avoid overflows in XGetFontPath() [CVE-2013-1997 14/15] 3512 3513 Ensure that when breaking the returned list into individual strings, 3514 we don't walk past the end of allocated memory to write the '\0' bytes 3515 3516 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 3517 Reviewed-by: Matthieu Herrb <matthieu.herrb@laas.fr> 3518 3519commit 0c404db6a92dc2c198328bf586c02d8abbe02013 3520Author: Alan Coopersmith <alan.coopersmith@oracle.com> 3521Date: Sat Mar 2 15:08:21 2013 -0800 3522 3523 Avoid overflows in XListFonts() [CVE-2013-1997 13/15] 3524 3525 Ensure that when breaking the returned list into individual strings, 3526 we don't walk past the end of allocated memory to write the '\0' bytes 3527 3528 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 3529 Reviewed-by: Matthieu Herrb <matthieu.herrb@laas.fr> 3530 3531commit 0b0f5d4358c3de7563d6af03f0d2ce454702a06a 3532Author: Alan Coopersmith <alan.coopersmith@oracle.com> 3533Date: Sat Mar 2 15:08:21 2013 -0800 3534 3535 integer overflow in XGetModifierMapping() [CVE-2013-1981 13/13] 3536 3537 Ensure that we don't underallocate when the server claims a very large reply 3538 3539 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 3540 Reviewed-by: Matthieu Herrb <matthieu.herrb@laas.fr> 3541 3542commit a351b8103b2ba78882e1c309e85893ca3abe2073 3543Author: Alan Coopersmith <alan.coopersmith@oracle.com> 3544Date: Sat Mar 2 15:08:21 2013 -0800 3545 3546 integer overflow in XGetPointerMapping() & XGetKeyboardMapping() [CVE-2013-1981 12/13] 3547 3548 Ensure that we don't underallocate when the server claims a very large reply 3549 3550 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 3551 Reviewed-by: Matthieu Herrb <matthieu.herrb@laas.fr> 3552 3553commit 833f6b70bc789d33607f6dbfee9e0a4178ec4b59 3554Author: Alan Coopersmith <alan.coopersmith@oracle.com> 3555Date: Sat Mar 2 15:08:21 2013 -0800 3556 3557 integer overflow in XGetImage() [CVE-2013-1981 11/13] 3558 3559 Ensure that we don't underallocate when the server claims to have sent a 3560 very large reply. 3561 3562 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 3563 Reviewed-by: Matthieu Herrb <matthieu.herrb@laas.fr> 3564 3565commit 79d8dc08eb98842173ce239b9dd60df0e9e9ae72 3566Author: Alan Coopersmith <alan.coopersmith@oracle.com> 3567Date: Fri Mar 8 22:25:35 2013 -0800 3568 3569 integer overflow in XGetWindowProperty() [CVE-2013-1981 10/13] 3570 3571 If the reported number of properties is too large, the calculations 3572 to allocate memory for them may overflow, leaving us returning less 3573 memory to the caller than implied by the value written to *nitems. 3574 3575 Reported-by: Ilja Van Sprundel <ivansprundel@ioactive.com> 3576 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 3577 Reviewed-by: Matthieu Herrb <matthieu.herrb@laas.fr> 3578 3579commit 164bf4dfe839b1cc75cdeee378a243d04a8200e4 3580Author: Alan Coopersmith <alan.coopersmith@oracle.com> 3581Date: Sat Mar 2 13:18:48 2013 -0800 3582 3583 integer overflows in TransFileName() [CVE-2013-1981 9/13] 3584 3585 When trying to process file paths the tokens %H, %L, & %S are expanded 3586 to $HOME, the standard compose file path & the xlocaledir path. 3587 If enough of these tokens are repeated and values like $HOME are set to 3588 very large values, the calculation of the total string size required to 3589 hold the expanded path can overflow, resulting in allocating a smaller 3590 string than the amount of data we'll write to it. 3591 3592 Simply restrict all of these values, and the total path size to PATH_MAX, 3593 because really, that's all you should need for a filename path. 3594 3595 Reported-by: Ilja Van Sprundel <ivansprundel@ioactive.com> 3596 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 3597 Reviewed-by: Matthieu Herrb <matthieu.herrb@laas.fr> 3598 3599commit 460e8a223b87d4fa0ea1e97823e998a770e0f2a2 3600Author: Alan Coopersmith <alan.coopersmith@oracle.com> 3601Date: Fri Mar 1 18:37:37 2013 -0800 3602 3603 integer truncation in _XimParseStringFile() [CVE-2013-1981 8/13] 3604 3605 Called from _XimCreateDefaultTree() which uses getenv("XCOMPOSEFILE") 3606 to specify filename. 3607 3608 If the size of off_t is larger than the size of unsigned long (as in 3609 32-bit builds with large file flags), a file larger than 4 gigs could 3610 have its size truncated, leading to data from that file being written 3611 past the end of the undersized buffer allocated for it. 3612 3613 While configure.ac does not use AC_SYS_LARGEFILE to set large file mode, 3614 builders may have added the large file compilation flags to CFLAGS on 3615 their own. 3616 3617 size is left limited to an int, because if your Xim file is 3618 larger than 2gb, you're doing it wrong. 3619 3620 Reported-by: Ilja Van Sprundel <ivansprundel@ioactive.com> 3621 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 3622 Reviewed-by: Matthieu Herrb <matthieu.herrb@laas.fr> 3623 3624commit 226622349a4b1e16064649d4444a34fb4be4f464 3625Author: Alan Coopersmith <alan.coopersmith@oracle.com> 3626Date: Sat Mar 2 12:39:58 2013 -0800 3627 3628 Unbounded recursion in _XimParseStringFile() when parsing include files [CVE-2013-2004 2/2] 3629 3630 parseline() can call _XimParseStringFile() which can call parseline() 3631 which can call _XimParseStringFile() which can call parseline() .... 3632 eventually causing recursive stack overflow and crash. 3633 3634 Limit is set to a include depth of 100 files, which should be enough 3635 for all known use cases, but could be adjusted later if necessary. 3636 3637 Reported-by: Ilja Van Sprundel <ivansprundel@ioactive.com> 3638 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 3639 Reviewed-by: Matthieu Herrb <matthieu.herrb@laas.fr> 3640 3641commit 236b603d235dc264d1c6250dca09c745458a9088 3642Author: Alan Coopersmith <alan.coopersmith@oracle.com> 3643Date: Sat Mar 2 12:01:39 2013 -0800 3644 3645 Unbounded recursion in GetDatabase() when parsing include files [CVE-2013-2004 1/2] 3646 3647 GetIncludeFile() can call GetDatabase() which can call GetIncludeFile() 3648 which can call GetDatabase() which can call GetIncludeFile() .... 3649 eventually causing recursive stack overflow and crash. 3650 3651 Easily reproduced with a resource file that #includes itself. 3652 3653 Limit is set to a include depth of 100 files, which should be enough 3654 for all known use cases, but could be adjusted later if necessary. 3655 3656 Reported-by: Ilja Van Sprundel <ivansprundel@ioactive.com> 3657 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 3658 Reviewed-by: Matthieu Herrb <matthieu.herrb@laas.fr> 3659 3660commit 076428918e6c35f66b9b55c3fa097ff06496d155 3661Author: Alan Coopersmith <alan.coopersmith@oracle.com> 3662Date: Fri Mar 1 18:37:37 2013 -0800 3663 3664 integer overflow in ReadInFile() in Xrm.c [CVE-2013-1981 7/13] 3665 3666 Called from XrmGetFileDatabase() which gets called from InitDefaults() 3667 which gets the filename from getenv ("XENVIRONMENT") 3668 3669 If file is exactly 0xffffffff bytes long (or longer and truncates to 3670 0xffffffff, on implementations where off_t is larger than an int), 3671 then size may be set to a value which overflows causing less memory 3672 to be allocated than is written to by the following read() call. 3673 3674 size is left limited to an int, because if your Xresources file is 3675 larger than 2gb, you're very definitely doing it wrong. 3676 3677 Reported-by: Ilja Van Sprundel <ivansprundel@ioactive.com> 3678 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 3679 Reviewed-by: Matthieu Herrb <matthieu.herrb@laas.fr> 3680 3681commit 90fd5abac2faca86f9f100353a3c9c7b89f31484 3682Author: Alan Coopersmith <alan.coopersmith@oracle.com> 3683Date: Sat Mar 2 11:44:19 2013 -0800 3684 3685 Integer overflows in stringSectionSize() cause buffer overflow in ReadColornameDB() [CVE-2013-1981 6/13] 3686 3687 LoadColornameDB() calls stringSectionSize() to do a first pass over the 3688 file (which may be provided by the user via XCMSDB environment variable) 3689 to determine how much memory needs to be allocated to read in the file, 3690 then allocates the returned sizes and calls ReadColornameDB() to load the 3691 data from the file into that newly allocated memory. 3692 3693 If stringSectionSize() overflows the signed ints used to calculate the 3694 file size (say if you have an xcmsdb with ~4 billion lines in or a 3695 combined string length of ~4 gig - which while it may have been 3696 inconceivable when Xlib was written, is quite possible today), then 3697 LoadColornameDB() may allocate a memory buffer much smaller than the 3698 amount of data ReadColornameDB() will write to it. 3699 3700 The total size is left limited to an int, because if your xcmsdb file 3701 is larger than 2gb, you're doing it wrong. 3702 3703 Reported-by: Ilja Van Sprundel <ivansprundel@ioactive.com> 3704 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 3705 Reviewed-by: Matthieu Herrb <matthieu.herrb@laas.fr> 3706 3707commit b9ba832401734e1cbd30a930c0d11d850293f3f9 3708Author: Alan Coopersmith <alan.coopersmith@oracle.com> 3709Date: Sat Mar 2 11:25:25 2013 -0800 3710 3711 unvalidated length in _XimXGetReadData() [CVE-2013-1997 12/15] 3712 3713 Check the provided buffer size against the amount of data we're going to 3714 write into it, not against the reported length from the ClientMessage. 3715 3716 Reported-by: Ilja Van Sprundel <ivansprundel@ioactive.com> 3717 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 3718 Reviewed-by: Matthieu Herrb <matthieu.herrb@laas.fr> 3719 3720commit de2e6c322c4aca22856b380f67f8e488e7510015 3721Author: Alan Coopersmith <alan.coopersmith@oracle.com> 3722Date: Sat Mar 2 11:11:08 2013 -0800 3723 3724 unvalidated index/length in _XkbReadGetNamesReply() [CVE-2013-1997 11/15] 3725 3726 If the X server returns key name indexes outside the range of the number 3727 of keys it told us to allocate, out of bounds memory writes could occur. 3728 3729 Reported-by: Ilja Van Sprundel <ivansprundel@ioactive.com> 3730 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 3731 Reviewed-by: Matthieu Herrb <matthieu.herrb@laas.fr> 3732 3733commit 2df882eeb3a70256170127a746a9ba26376599a1 3734Author: Alan Coopersmith <alan.coopersmith@oracle.com> 3735Date: Sat Mar 2 11:01:04 2013 -0800 3736 3737 unvalidated index in _XkbReadVirtualModMap() [CVE-2013-1997 10/15] 3738 3739 If the X server returns modifier map indexes outside the range of the number 3740 of keys it told us to allocate, out of bounds memory writes could occur. 3741 3742 Reported-by: Ilja Van Sprundel <ivansprundel@ioactive.com> 3743 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 3744 Reviewed-by: Matthieu Herrb <matthieu.herrb@laas.fr> 3745 3746commit 4d7c422a37eb9617fb22f8e37527c2b34b105665 3747Author: Alan Coopersmith <alan.coopersmith@oracle.com> 3748Date: Sat Mar 2 11:04:44 2013 -0800 3749 3750 unvalidated index in _XkbReadExplicitComponents() [CVE-2013-1997 9/15] 3751 3752 If the X server returns key indexes outside the range of the number of 3753 keys it told us to allocate, out of bounds memory writes could occur. 3754 3755 Reported-by: Ilja Van Sprundel <ivansprundel@ioactive.com> 3756 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 3757 Reviewed-by: Matthieu Herrb <matthieu.herrb@laas.fr> 3758 3759commit e56a2ada719c5cfac5ed61a52a80ade86c0f5957 3760Author: Alan Coopersmith <alan.coopersmith@oracle.com> 3761Date: Sat Mar 2 10:51:51 2013 -0800 3762 3763 unvalidated index in _XkbReadModifierMap() [CVE-2013-1997 8/15] 3764 3765 If the X server returns modifier map indexes outside the range of the number 3766 of keys it told us to allocate, out of bounds memory writes could occur. 3767 3768 Reported-by: Ilja Van Sprundel <ivansprundel@ioactive.com> 3769 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 3770 Reviewed-by: Matthieu Herrb <matthieu.herrb@laas.fr> 3771 3772commit 06c086e8a1d8374ea9a95ff989f053c96bb1bdca 3773Author: Alan Coopersmith <alan.coopersmith@oracle.com> 3774Date: Sat Mar 2 10:39:21 2013 -0800 3775 3776 unvalidated index in _XkbReadKeyBehaviors() [CVE-2013-1997 7/15] 3777 3778 If the X server returns key behavior indexes outside the range of the number 3779 of keys it told us to allocate, out of bounds memory writes could occur. 3780 3781 Reported-by: Ilja Van Sprundel <ivansprundel@ioactive.com> 3782 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 3783 Reviewed-by: Matthieu Herrb <matthieu.herrb@laas.fr> 3784 3785commit 00626c3830b869259098985afa38933d77ccec72 3786Author: Alan Coopersmith <alan.coopersmith@oracle.com> 3787Date: Sat Mar 2 09:40:22 2013 -0800 3788 3789 unvalidated index in _XkbReadKeyActions() [CVE-2013-1997 6/15] 3790 3791 If the X server returns key action indexes outside the range of the number 3792 of keys it told us to allocate, out of bounds memory access could occur. 3793 3794 Reported-by: Ilja Van Sprundel <ivansprundel@ioactive.com> 3795 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 3796 Reviewed-by: Matthieu Herrb <matthieu.herrb@laas.fr> 3797 3798commit fd7d4956bc7a1c4b5c38661b12777ebee4d685d9 3799Author: Alan Coopersmith <alan.coopersmith@oracle.com> 3800Date: Sat Mar 2 09:28:33 2013 -0800 3801 3802 unvalidated index in _XkbReadKeySyms() [CVE-2013-1997 5/15] 3803 3804 If the X server returns keymap indexes outside the range of the number of 3805 keys it told us to allocate, out of bounds memory access could occur. 3806 3807 Reported-by: Ilja Van Sprundel <ivansprundel@ioactive.com> 3808 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 3809 Reviewed-by: Matthieu Herrb <matthieu.herrb@laas.fr> 3810 3811commit 59ae16a00d18588e98af57d26e442af8ea42b7aa 3812Author: Alan Coopersmith <alan.coopersmith@oracle.com> 3813Date: Sat Mar 2 09:18:26 2013 -0800 3814 3815 unvalidated indexes in _XkbReadGetGeometryReply() [CVE-2013-1997 4/15] 3816 3817 If the X server returns color indexes outside the range of the number of 3818 colors it told us to allocate, out of bounds memory access could occur. 3819 3820 Reported-by: Ilja Van Sprundel <ivansprundel@ioactive.com> 3821 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 3822 Reviewed-by: Matthieu Herrb <matthieu.herrb@laas.fr> 3823 3824commit bff938b9fe1629cbacb726509edfa2a3840b7207 3825Author: Alan Coopersmith <alan.coopersmith@oracle.com> 3826Date: Sat Mar 2 09:12:47 2013 -0800 3827 3828 unvalidated indexes in _XkbReadGeomShapes() [CVE-2013-1997 3/15] 3829 3830 If the X server returns shape indexes outside the range of the number 3831 of shapes it told us to allocate, out of bounds memory access could occur. 3832 3833 Reported-by: Ilja Van Sprundel <ivansprundel@ioactive.com> 3834 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 3835 Reviewed-by: Matthieu Herrb <matthieu.herrb@laas.fr> 3836 3837commit f293659d5a4024bda386305bb7ebeb4647c40934 3838Author: Alan Coopersmith <alan.coopersmith@oracle.com> 3839Date: Fri Mar 1 22:49:01 2013 -0800 3840 3841 unvalidated index in _XkbReadGetDeviceInfoReply() [CVE-2013-1997 2/15] 3842 3843 If the X server returns more buttons than are allocated in the XKB 3844 device info structures, out of bounds writes could occur. 3845 3846 Reported-by: Ilja Van Sprundel <ivansprundel@ioactive.com> 3847 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 3848 Reviewed-by: Matthieu Herrb <matthieu.herrb@laas.fr> 3849 3850commit cddc4e7e3cb4b9b7ad25f8591971a86901c249f2 3851Author: Alan Coopersmith <alan.coopersmith@oracle.com> 3852Date: Fri Mar 1 19:30:09 2013 -0800 3853 3854 unvalidated lengths in XAllocColorCells() [CVE-2013-1997 1/15] 3855 3856 If a broken server returned larger than requested values for nPixels or 3857 nMasks, XAllocColorCells would happily overflow the buffers provided by 3858 the caller to write the results into. 3859 3860 Reported-by: Ilja Van Sprundel <ivansprundel@ioactive.com> 3861 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 3862 Reviewed-by: Matthieu Herrb <matthieu.herrb@laas.fr> 3863 3864commit 2cd62b5eb99ffbb2fce99f3c459455e630b35bf7 3865Author: Alan Coopersmith <alan.coopersmith@oracle.com> 3866Date: Fri Mar 1 22:49:01 2013 -0800 3867 3868 integer overflow in XListHosts() [CVE-2013-1981 5/13] 3869 3870 If the reported number of host entries is too large, the calculations 3871 to allocate memory for them may overflow, leaving us writing beyond the 3872 bounds of the allocation. 3873 3874 Reported-by: Ilja Van Sprundel <ivansprundel@ioactive.com> 3875 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 3876 Reviewed-by: Matthieu Herrb <matthieu.herrb@laas.fr> 3877 3878commit 1f6a3dbf699b85c0ea715ef21de7e7095a714e12 3879Author: Alan Coopersmith <alan.coopersmith@oracle.com> 3880Date: Fri Mar 1 22:49:01 2013 -0800 3881 3882 integer overflow in XGetMotionEvents() [CVE-2013-1981 4/13] 3883 3884 If the reported number of motion events is too large, the calculations 3885 to allocate memory for them may overflow, leaving us writing beyond the 3886 bounds of the allocation. 3887 3888 v2: Ensure nEvents is set to 0 when returning NULL events pointer 3889 3890 Reported-by: Ilja Van Sprundel <ivansprundel@ioactive.com> 3891 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 3892 3893commit 39515b7c3ba8cae9021bf6695e378ae19487082f 3894Author: Alan Coopersmith <alan.coopersmith@oracle.com> 3895Date: Fri Mar 1 22:49:01 2013 -0800 3896 3897 integer overflow in XListFontsWithInfo() [CVE-2013-1981 3/13] 3898 3899 If the reported number of remaining fonts is too large, the calculations 3900 to allocate memory for them may overflow, leaving us writing beyond the 3901 bounds of the allocation. 3902 3903 v2: Fix reply_left calculations, check calculated sizes fit in reply_left 3904 v3: On error cases, also set values to be returned in pointer args to 0/NULL 3905 3906 Reported-by: Ilja Van Sprundel <ivansprundel@ioactive.com> 3907 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 3908 3909commit 5669a220816b7d58fcaf0c302ead16fbe5c87817 3910Author: Alan Coopersmith <alan.coopersmith@oracle.com> 3911Date: Fri Mar 1 21:05:27 2013 -0800 3912 3913 integer overflow in _XF86BigfontQueryFont() [CVE-2013-1981 2/13] 3914 3915 Similar to _XQueryFont, but with more ways to go wrong and overflow. 3916 Only compiled if libX11 is built with XF86BigFont support. 3917 3918 v2: Fix reply_left calculations, check calculated sizes fit in reply_left 3919 3920 Reported-by: Ilja Van Sprundel <ivansprundel@ioactive.com> 3921 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 3922 3923commit 6df8a63d34b7514077188e2062a13774f920c085 3924Author: Alan Coopersmith <alan.coopersmith@oracle.com> 3925Date: Fri Mar 1 21:05:27 2013 -0800 3926 3927 integer overflow in _XQueryFont() on 32-bit platforms [CVE-2013-1981 1/13] 3928 3929 If the CARD32 reply.nCharInfos * sizeof(XCharStruct) overflows an 3930 unsigned long, then too small of a buffer will be allocated for the 3931 data copied in from the reply. 3932 3933 v2: Fix reply_left calculations, check calculated sizes fit in reply_left 3934 3935 Reported-by: Ilja Van Sprundel <ivansprundel@ioactive.com> 3936 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 3937 3938commit 9f5d83706543696fc944c1835a403938c06f2cc5 3939Author: Alan Coopersmith <alan.coopersmith@oracle.com> 3940Date: Fri Mar 1 20:54:24 2013 -0800 3941 3942 Add _XEatDataWords to discard a given number of 32-bit words of reply data 3943 3944 Matches the units of the length field in X protocol replies, and provides 3945 a single implementation of overflow checking to avoid having to replicate 3946 those checks in every caller. 3947 3948 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 3949 Reviewed-by: Matthieu Herrb <matthieu.herrb@laas.fr> 3950 3951commit d7f04c340ade3834e603c23d543132e1ee4e0c63 3952Author: Alan Coopersmith <alan.coopersmith@oracle.com> 3953Date: Sat Mar 2 13:03:55 2013 -0800 3954 3955 Move repeated #ifdef magic to find PATH_MAX into a common header 3956 3957 Lets stop duplicating the mess all over 3958 3959 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 3960 Reviewed-by: Matthieu Herrb <matthieu.herrb@laas.fr> 3961 3962commit f3a553a4e4a55d9d19deda1ea01883e1d5d682b1 3963Author: Pander <pander@users.sourceforge.net> 3964Date: Tue May 7 18:38:14 2013 -0400 3965 3966 Add compose sequences for J́ and j́. 3967 3968 The resulting sequences are: 3969 3970 U+004A LATIN CAPITAL LETTER J U+0301 COMBINING ACUTE ACCENT 3971 U+006A LATIN SMALL LETTER J U+0301 COMBINING ACUTE ACCENT 3972 3973 Used in Dutch, per: 3974 3975 http://lists.x.org/archives/xorg-devel/2013-February/035514.html 3976 https://nl.wikipedia.org/wiki/Accenttekens_in_de_Nederlandse_spelling 3977 3978 Signed-off-by: Pander <pander@users.sourceforge.net> 3979 Signed-off-by: James Cloos <cloos@jhcloos.com> 3980 3981commit f49bb2dd6d4ea45c55bd21acc0efe2b764441020 3982Author: Alan Coopersmith <alan.coopersmith@oracle.com> 3983Date: Sat Mar 16 18:30:56 2013 -0700 3984 3985 Move big request comment in XOpenDisplay to the right place 3986 3987 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 3988 3989commit 3996543c1b2919e97d61a5d70fe1ebd7cd76fc83 3990Author: Alan Coopersmith <alan.coopersmith@oracle.com> 3991Date: Sat Mar 9 19:16:03 2013 -0800 3992 3993 libX11 1.5.99.901 (1.6 RC1) 3994 3995 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 3996 3997commit f9cd175a471116a616e681fb0ca1a61b3d84a6a0 3998Author: Alan Coopersmith <alan.coopersmith@oracle.com> 3999Date: Fri Mar 8 22:33:28 2013 -0800 4000 4001 Fix very weird indenting in src/GetFProp.c 4002 4003 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 4004 4005commit e9bd757630368afb374c5d1bcc5d4d85ad3c6c4c 4006Author: Alan Coopersmith <alan.coopersmith@oracle.com> 4007Date: Fri Mar 8 15:37:33 2013 -0800 4008 4009 XAllocClassHint: Assume calloc sets pointers in allocated memory to NULL 4010 4011 While the C standard technically allows for the compiler to translate 4012 pointer = 0 or pointer = NULL into something other than filling the 4013 pointer address with 0 bytes, the rest of the Xlib code already assumes 4014 that calloc initializes any pointers in the struct to NULL, and there 4015 are no known systems supported by X.Org where this is not true. 4016 4017 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 4018 4019commit 39547d600a13713e15429f49768e54c3173c828d 4020Author: Karl Tomlinson <xmail@karlt.net> 4021Date: Mon Feb 18 01:25:34 2013 +0000 4022 4023 MakeBigReq: don't move the last word, already handled by Data32 4024 4025 MakeBigReq inserts a length field after the first 4 bytes of the request 4026 (after req->length), pushing everything else back by 4 bytes. 4027 4028 The current memmove moves everything but the first 4 bytes back. 4029 If a request aligns to the end of the buffer pointer when MakeBigReq is 4030 invoked for that request, this runs over the buffer. 4031 Instead, we need to memmove minus the first 4 bytes (which aren't moved), 4032 minus the last 4 bytes (so we still align to the previous tail). 4033 4034 The 4 bytes that fell out are already handled with Data32, which will 4035 handle the buffermax correctly. 4036 4037 The case where req->length = 1 was already not functional. 4038 4039 Reported by Abhishek Arya <inferno@chromium.org>. 4040 4041 https://bugzilla.mozilla.org/show_bug.cgi?id=803762 4042 4043 Reviewed-by: Jeff Muizelaar <jmuizelaar@mozilla.com> 4044 Reviewed-by: Peter Hutterer <peter.hutterer@who-t.net> 4045 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 4046 4047commit 3cdb6c3a1646f670afa03d424ec12ac418181d1e 4048Author: Quentin Glidic <sardemff7+git@sardemff7.net> 4049Date: Tue Jan 15 21:07:17 2013 +0000 4050 4051 nls/Makefile.am: Use LOG_COMPILER 4052 4053 TESTS_ENVIRONMENT is deprecated 4054 4055 Signed-off-by: Quentin Glidic <sardemff7+git@sardemff7.net> 4056 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 4057 4058commit df66d7a98e2bc7f44fb5583b645df87d525f07f1 4059Author: Quentin Glidic <sardemff7+git@sardemff7.net> 4060Date: Tue Jan 15 21:07:16 2013 +0000 4061 4062 nls/Makefile.am: Remove unneeded $(srcdir) 4063 4064 Signed-off-by: Quentin Glidic <sardemff7+git@sardemff7.net> 4065 Reviewed-by: Gaetan Nadon <memsize@videotron.ca> 4066 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 4067 4068commit 3facbe5c0df1b5597571b7b00d5f7bdbc92fb278 4069Author: Alan Coopersmith <alan.coopersmith@oracle.com> 4070Date: Sat Mar 2 12:01:39 2013 -0800 4071 4072 Add <X11/Xresource.h> hint to all Xrm* man pages 4073 4074 Help users figure out which header file they need to #include 4075 4076 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 4077 4078commit 466404007f2c8f7166e4faddfea1454c5bfe1e9a 4079Author: Alan Coopersmith <alan.coopersmith@oracle.com> 4080Date: Fri Mar 8 17:13:09 2013 -0800 4081 4082 _xudc_code_to_glyph: check for NULL pointer *before* writing to it, not after 4083 4084 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 4085 4086commit 47d2eff64d167b3245d346d7f38ca703be645e26 4087Author: Ken Moffat <ken@linuxfromscratch.org> 4088Date: Thu Mar 7 18:27:54 2013 -0500 4089 4090 dead_double_grave and dead_inverted_breve should only have one underscore. 4091 4092 Correct instances of dead_double_grave and dead_inverted_breve to 4093 dead_doublegrave and dead_invertedbreve. 4094 4095 Signed-off-by: Ken Moffat <ken@linuxfromscratch.org> 4096 Signed-off-by: James Cloos <cloos@jhcloos.com> 4097 4098commit c23d61d1b84dca3740bf4786978c7908d0065fb9 4099Author: Alan Coopersmith <alan.coopersmith@oracle.com> 4100Date: Fri Mar 1 18:10:27 2013 -0800 4101 4102 Assume size_t is always available, since it was defined in C89 4103 4104 Don't provide a fallback definition #ifdef X_NOT_POSIX anymore. 4105 We already use size_t throughout the rest of Xlib, just had this 4106 one instance left in XKBGAlloc.c of a fallback definition. 4107 4108 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 4109 4110commit 9bcfd84aa1410387bc8cf002a5f90f44705aa0d1 4111Author: Alan Coopersmith <alan.coopersmith@oracle.com> 4112Date: Fri Mar 1 18:09:07 2013 -0800 4113 4114 unifdef XKB_IN_SERVER 4115 4116 Leftovers from XKB files that were previously shared between the client 4117 and server code, but aren't any more. 4118 4119 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 4120 Reviewed-by: Peter Hutterer <peter.hutterer@who-t.net> 4121 4122commit 769a0efa2298040fe8316a89fc9e75fb61e288e5 4123Author: Alan Coopersmith <alan.coopersmith@oracle.com> 4124Date: Thu Feb 28 20:04:25 2013 -0800 4125 4126 unifdef CRAY & _CRAY 4127 4128 (mostly performed with unifdef, followed by some manual cleanup of 4129 the remaining code) 4130 4131 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 4132 Reviewed-by: Peter Hutterer <peter.hutterer@who-t.net> 4133 4134commit ca106eb03e5f5468df8033300c5caae3d3c6936b 4135Author: Alan Coopersmith <alan.coopersmith@oracle.com> 4136Date: Thu Feb 28 20:04:25 2013 -0800 4137 4138 unifdef WORD64 4139 4140 WORD64 seems to have only been defined in <X11/Xmd.h> when building for 4141 CRAY, to handle int being a 64-bit value (ILP64, not LP64) and having 4142 64-bit alignment requirements. 4143 4144 It hadn't been fully supported even before autotooling, as can be 4145 seen by removed code such as: 4146 4147 #ifdef WORD64 4148 _XkbWriteCopyData32 Not Implemented Yet for sizeof(int)==8 4149 #endif 4150 4151 (mostly performed with unifdef, followed by some manual cleanup of 4152 the remaining code) 4153 4154 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 4155 Reviewed-by: Peter Hutterer <peter.hutterer@who-t.net> 4156 4157commit 9399caf2c12cbe1ed56f4f6b368c5811cb5d0458 4158Author: Alan Coopersmith <alan.coopersmith@oracle.com> 4159Date: Thu Feb 28 20:04:25 2013 -0800 4160 4161 unifdef MUSTCOPY 4162 4163 MUSTCOPY seems to have only been defined in <X11/Xmd.h> when building for 4164 CRAY, to handle missing some sizes of integer type. 4165 4166 (mostly performed with unifdef, followed by some manual cleanup of 4167 spacing/indenting in the remaining code) 4168 4169 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 4170 Reviewed-by: Peter Hutterer <peter.hutterer@who-t.net> 4171 4172commit b687440c28c7da6ee0ae44514d20248db5161606 4173Author: Alan Coopersmith <alan.coopersmith@oracle.com> 4174Date: Sat Feb 16 10:42:23 2013 -0800 4175 4176 Convert more sprintf calls to snprintf 4177 4178 You could analyze most of these and quickly recognize that there was no 4179 chance of buffer overflow already, but why make everyone spend time doing 4180 that when we can just make it obviously safe? 4181 4182 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 4183 4184commit b092dabbd712d7b656abcf572d253b9b206c0237 4185Author: Alan Coopersmith <alan.coopersmith@oracle.com> 4186Date: Fri Feb 15 23:43:12 2013 -0800 4187 4188 XKeysymToString: move variable declarations to the scope of their usage 4189 4190 Makes it easier for readers to understand scope of variable usage, and 4191 clears up gcc warning: 4192 4193 KeysymStr.c: In function 'XKeysymToString': 4194 KeysymStr.c:128:13: warning: declaration of 'i' shadows a previous local [-Wshadow] 4195 KeysymStr.c:73:18: warning: shadowed declaration is here [-Wshadow] 4196 4197 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 4198 4199commit f0b171c8ea7b055ba520272ea9a2604e18841ac7 4200Author: Alan Coopersmith <alan.coopersmith@oracle.com> 4201Date: Fri Feb 15 23:34:40 2013 -0800 4202 4203 Preserve constness in casting arguments through the Data*() routines 4204 4205 Casts were annoying gcc by dropping constness when changing types, 4206 when routines simply either copy data into the request buffer or 4207 send it directly to the X server, and never modify the input. 4208 4209 Fixes gcc warnings including: 4210 ChProp.c: In function 'XChangeProperty': 4211 ChProp.c:65:6: warning: cast discards '__attribute__((const))' qualifier from pointer target type [-Wcast-qual] 4212 ChProp.c:65:6: warning: cast discards '__attribute__((const))' qualifier from pointer target type [-Wcast-qual] 4213 ChProp.c:74:6: warning: cast discards '__attribute__((const))' qualifier from pointer target type [-Wcast-qual] 4214 ChProp.c:74:6: warning: cast discards '__attribute__((const))' qualifier from pointer target type [-Wcast-qual] 4215 ChProp.c:83:6: warning: cast discards '__attribute__((const))' qualifier from pointer target type [-Wcast-qual] 4216 SetHints.c: In function 'XSetStandardProperties': 4217 SetHints.c:262:20: warning: cast discards '__attribute__((const))' qualifier from pointer target type [-Wcast-qual] 4218 SetPntMap.c: In function 'XSetPointerMapping': 4219 SetPntMap.c:46:5: warning: cast discards '__attribute__((const))' qualifier from pointer target type [-Wcast-qual] 4220 SetPntMap.c:46:5: warning: cast discards '__attribute__((const))' qualifier from pointer target type [-Wcast-qual] 4221 StBytes.c: In function 'XStoreBuffer': 4222 StBytes.c:97:33: warning: cast discards '__attribute__((const))' qualifier from pointer target type [-Wcast-qual] 4223 StName.c: In function 'XStoreName': 4224 StName.c:40:27: warning: cast discards '__attribute__((const))' qualifier from pointer target type [-Wcast-qual] 4225 StName.c: In function 'XSetIconName': 4226 StName.c:51:27: warning: cast discards '__attribute__((const))' qualifier from pointer target type [-Wcast-qual] 4227 4228 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 4229 4230commit 6c558ee357292dd9dfc6d9006f4525f625327c52 4231Author: Alan Coopersmith <alan.coopersmith@oracle.com> 4232Date: Fri Feb 15 22:58:54 2013 -0800 4233 4234 Fix comment typo & confusing indentation levels in Data() macro definition 4235 4236 The final } matches the one on the #define line, not one that doesn't 4237 appear after the else statement it was lined up with 4238 4239 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 4240 4241commit afd6593da90e51234d59f8921c411317f91ab48b 4242Author: Alan Coopersmith <alan.coopersmith@oracle.com> 4243Date: Fri Feb 15 23:25:38 2013 -0800 4244 4245 XStringToKeysym: preserve constness when casting off unsignedness for strcmp 4246 4247 Fixes gcc warning: 4248 StrKeysym.c:97:17: warning: cast discards '__attribute__((const))' qualifier from pointer target type [-Wcast-qual] 4249 4250 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 4251 4252commit 7e3bf4dd83fec22bd568146de75e6d59eff74e21 4253Author: Alan Coopersmith <alan.coopersmith@oracle.com> 4254Date: Fri Feb 15 23:14:40 2013 -0800 4255 4256 XRebindKeysym: Drop unnecessary const-removing cast 4257 4258 C89 defines memcpy as taking a const void *, so casting from 4259 const unsigned char * to char * simply angers gcc for no benefit: 4260 4261 KeyBind.c:1017:24: warning: cast discards '__attribute__((const))' qualifier from pointer target type [-Wcast-qual] 4262 4263 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 4264 4265commit 54527eab93d46055cf11eb6c18abb353a03ae544 4266Author: Alan Coopersmith <alan.coopersmith@oracle.com> 4267Date: Fri Feb 15 22:45:19 2013 -0800 4268 4269 cmsColNm.c: maintain constness of arguments to qsort helper function 4270 4271 Fixes gcc warning: 4272 4273 cmsColNm.c: In function 'FirstCmp': 4274 cmsColNm.c:257:20: warning: cast discards '__attribute__((const))' qualifier from pointer target type [-Wcast-qual] 4275 cmsColNm.c:257:45: warning: cast discards '__attribute__((const))' qualifier from pointer target type [-Wcast-qual] 4276 4277 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 4278 4279commit deedeada53676ee529d700bf96fde0b29a3a1def 4280Author: Nickolai Zeldovich <nickolai@csail.mit.edu> 4281Date: Tue Jan 22 10:03:00 2013 -0500 4282 4283 XListFontsWithInfo: avoid accessing realloc'ed memory 4284 4285 If exactly one of the two reallocs in XListFontsWithInfo() fails, the 4286 subsequent code accesses memory freed by the other realloc. 4287 4288 Signed-off-by: Nickolai Zeldovich <nickolai@csail.mit.edu> 4289 Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com> 4290 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 4291 4292commit f57fd760cba92ad846917f21e94e73e9c846185f 4293Author: Colin Walters <walters@verbum.org> 4294Date: Wed Jan 4 17:37:06 2012 -0500 4295 4296 autogen.sh: Implement GNOME Build API 4297 4298 http://people.gnome.org/~walters/docs/build-api.txt 4299 4300 Signed-off-by: Adam Jackson <ajax@redhat.com> 4301 4302commit 51c102d39e855cf1704d9eb3afba76a2e73c6b81 4303Author: Adam Jackson <ajax@redhat.com> 4304Date: Tue Jan 15 14:28:48 2013 -0500 4305 4306 configure: Remove AM_MAINTAINER_MODE 4307 4308 Signed-off-by: Adam Jackson <ajax@redhat.com> 4309 4310commit 3cd974b1d4d1fa6389d3695fa9fcc0c22a51d50c 4311Author: Alan Coopersmith <alan.coopersmith@oracle.com> 4312Date: Wed Dec 26 22:57:39 2012 -0800 4313 4314 Remove unused DECnet ("DNETCONN") code from Xlib 4315 4316 Has never been converted to build in modular builds, so has been unusable 4317 since X11R7.0 release in 2005. DNETCONN support was removed from xtrans 4318 back in 2008. 4319 4320 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 4321 4322commit a6e5b36a3e6d4a7a9fb4bad905ed127e67b1957e 4323Author: Alan Coopersmith <alan.coopersmith@oracle.com> 4324Date: Wed Dec 26 22:56:38 2012 -0800 4325 4326 Remove unused TLI ("STREAMSCONN") code from Xlib 4327 4328 Has never been converted to build in modular builds, so has been unusable 4329 since X11R7.0 release in 2005. All known platforms with TLI/XTI support 4330 that X11R7 & later releases run on also have (and mostly prefer) BSD 4331 socket support for their networking API. 4332 4333 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 4334 4335commit 59c9ee8cd58857c5769b643611cbe526005a9e45 4336Author: Alan Coopersmith <alan.coopersmith@oracle.com> 4337Date: Sun Dec 16 17:44:42 2012 -0800 4338 4339 Tell clang not to report -Wpadded warnings on public headers we can't fix 4340 4341 Better to silence the compiler warning than break ABI. 4342 4343 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 4344 4345commit 0b148750027fd0557c5ed93afda861ddf4b92e0f 4346Author: Jon TURNEY <jon.turney@dronecode.org.uk> 4347Date: Mon Nov 12 17:27:52 2012 +0000 4348 4349 Fix config check for loadable modules 4350 4351 The config check of the results of testing for dlfcn.h or dl.h just tests the 4352 value of the ac_cv_ variables, which will be 'yes' or 'no', rather than checking 4353 it is 'yes', so loadable module support would always be detected. 4354 4355 This is necessary for successful compilation for the MinGW target without the 4356 optional dlfcn-win32 library. 4357 4358 v2: Also, fixed typoed name of ac_cv_header_dlfcn_h, so check still works 4359 correctly when dlfcn.h is available 4360 4361 Signed-off-by: Jon TURNEY <jon.turney@dronecode.org.uk> 4362 Reviewed-by: Dan Nicholson <dbn.lists@gmail.com> 4363 4364commit cd25cab4b5b957641183ce72dd1ae0424aff1663 4365Author: Egbert Eich <eich@freedesktop.org> 4366Date: Fri May 20 18:27:02 2011 +0200 4367 4368 Install Xcms.txt in $(datadir) rather than $(libdir). 4369 4370 This file is an architecture independent data and should be where 4371 other databases are. 4372 This is the Xlib provided sample file, applications are free to 4373 use a different one specifying its location in the XCMSDB env 4374 variable. 4375 4376 Signed-off-by: Egbert Eich <eich@freedesktop.org> 4377 Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com> 4378 4379commit 51fef7e273b5c6256e4c9604e3e1afe5dc8f6a1a 4380Author: Egbert Eich <eich@freedesktop.org> 4381Date: Fri May 20 18:25:24 2011 +0200 4382 4383 Don't hard code path to Xcms.txt file. 4384 4385 The path to this file is configurable at build time. The source 4386 however contains a hard coded path. 4387 4388 Signed-off-by: Egbert Eich <eich@freedesktop.org> 4389 Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com> 4390 4391commit 9833489e6c3829a1e835bc0a11f028fc180809e4 4392Author: Colin Walters <walters@verbum.org> 4393Date: Fri Dec 7 08:51:21 2012 -0500 4394 4395 Fix build after dropping locales 4396 4397 They also needed to be removed from configure.ac 4398 4399 Signed-off-by: Colin Walters <walters@verbum.org> 4400 Signed-off-by: Julien Cristau <jcristau@debian.org> 4401 4402commit 0a740a574aaf0c0eec78859b773a532cff3b74c3 4403Author: Egbert Eich <eich@freedesktop.org> 4404Date: Fri May 20 13:04:11 2011 +0200 4405 4406 i18n: Uppercased all occurances if 'iso8859' in the full locale name. 4407 4408 Making all occurances of iso8859 upper case in the full local name 4409 makes the alias entries more consistent and match the entries on 4410 locale.dir. 4411 4412 Signed-off-by: Egbert Eich <eich@freedesktop.org> 4413 Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com> 4414 4415commit 5e7d589697755a70fb22d85c6a1ae82b39843e53 4416Author: Egbert Eich <eich@freedesktop.org> 4417Date: Fri May 20 17:55:49 2011 +0200 4418 4419 i18n: Remove ja.S90 and ja.U90 locales. 4420 4421 Both locales carry a copyright notice and a prorietary statement: 4422 4423 Copyright 1995 by FUJITSU LIMITED 4424 This is source code modified by FUJITSU LIMITED under the Joint 4425 Development Agreement for the CDEnext PST. 4426 This is unpublished proprietary source code of FUJITSU LIMITED 4427 4428 Signed-off-by: Egbert Eich <eich@freedesktop.org> 4429 Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com> 4430 4431commit 99eae3dcb7bf6764e3b243d2a2934a4d1ecce90e 4432Author: Egbert Eich <eich@freedesktop.org> 4433Date: Fri May 20 16:46:15 2011 +0200 4434 4435 i18n: Bring locale.dir and compose.dir in sync. 4436 4437 Some entries for locale/encoding combinations were missing from 4438 either file or just misspelled, some entries were wrong or just 4439 aliases. 4440 4441 Signed-off-by: Egbert Eich <eich@freedesktop.org> 4442 Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com> 4443 4444commit d1e6baa4e290b758e430077cb74e7c03ad850771 4445Author: Egbert Eich <eich@freedesktop.org> 4446Date: Fri May 20 14:02:39 2011 +0200 4447 4448 i18n: Treat 'a3_AZ' as an alias for 'az_AZ'. 4449 4450 locale.alias contains a comment: 4451 XCOMM a3 is not an ISO 639 language code, but in Cyrillic, "Z" looks like "3". 4452 Thus lets treat 'a3' as an alias for 'az'. 4453 4454 Signed-off-by: Egbert Eich <eich@freedesktop.org> 4455 Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com> 4456 Reviewed-by: Magnus Kessler <Magnus.Kessler@gmx.net> 4457 4458commit fa2aab0bea18efa26a56977d3166277582ab7b07 4459Author: Egbert Eich <eich@freedesktop.org> 4460Date: Fri May 20 13:09:38 2011 +0200 4461 4462 i18n: Fixed typos in full locale names. 4463 4464 Fixing those typos those names actually match entries in 4465 locale.dir. 4466 4467 Signed-off-by: Egbert Eich <eich@freedesktop.org> 4468 Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com> 4469 4470commit b88dd95005dce4c40f9b4d5f938f945e7955fd04 4471Author: Egbert Eich <eich@freedesktop.org> 4472Date: Sat May 21 07:29:38 2011 +0200 4473 4474 i18n: Remove duplicates and aliases to oneself. 4475 4476 Aliases to itself don't make much sense. 4477 This changes occurances of: 4478 xy_UV.UTF-8: xy_UV.UTF-8 4479 to 4480 xy_UV: xy_UV.UTF-8 4481 where applicable. 4482 4483 Signed-off-by: Egbert Eich <eich@freedesktop.org> 4484 Reviewed-by: James Cloos <cloos@jhcloos.com> 4485 4486commit f198c6aa98f88ff285d903175a3c4c0fd33a4575 4487Author: Jens Herden <jens.herden@email.de> 4488Date: Fri May 20 17:29:03 2011 +0200 4489 4490 i18n: Add support for Khmer locale and compose table. 4491 4492 Signed-off-by: Egbert Eich <eich@freedesktop.org> 4493 Reviewed-by: James Cloos <cloos@jhcloos.com> 4494 4495commit 40761898692e5063957bfa2518cca3d35b2e354a 4496Author: Kalman Kemenczy <kkemenczy@novell.com> 4497Date: Fri May 20 17:03:24 2011 +0200 4498 4499 i18n: Add support for Serbian specific compose table entries. 4500 4501 Signed-off-by: Egbert Eich <eich@freedesktop.org> 4502 Reviewed-by: James Cloos <cloos@jhcloos.com> 4503 4504commit 7c14aacc9f01d7a975f8d9d033b9b13cbd777a61 4505Author: Egbert Eich <eich@freedesktop.org> 4506Date: Fri May 20 14:00:35 2011 +0200 4507 4508 i18n: Adding and removing comments. 4509 4510 Signed-off-by: Egbert Eich <eich@freedesktop.org> 4511 Reviewed-by: James Cloos <cloos@jhcloos.com> 4512 4513commit 7754d68976106183751243c2c35a84134be17b34 4514Author: Egbert Eich <eich@freedesktop.org> 4515Date: Fri May 20 13:45:31 2011 +0200 4516 4517 i18n: Add missing locales which existed in locale.alias. 4518 4519 Signed-off-by: Egbert Eich <eich@freedesktop.org> 4520 Reviewed-by: James Cloos <cloos@jhcloos.com> 4521 4522commit 952eccd0d25ba66023acfd31873eee2e71c38c42 4523Author: Egbert Eich <eich@freedesktop.org> 4524Date: Fri May 20 10:57:57 2011 +0200 4525 4526 i18n: Consolidate compose handling for locales with UTF-8 encoding. 4527 4528 - add an entry to include the default en_US compose file 4529 for the ja_JP, ko_KR, th_TH, zh_CN, zh_HK and zh_TW locales. 4530 - add missing entries for zh_CN. and zh_HK and am_ET. 4531 - change entries for the UTF-8 encoding for ru_RU, ja_JP, 4532 ko_KR, th_TH and zh_TW to point to their native directory 4533 entries. 4534 4535 Signed-off-by: Egbert Eich <eich@freedesktop.org> 4536 Reviewed-by: James Cloos <cloos@jhcloos.com> 4537 4538commit d14b6a250f004fa405179db7020f6953001d17b9 4539Author: Yaakov Selkowitz <yselkowitz@users.sourceforge.net> 4540Date: Mon Oct 22 13:54:11 2012 -0500 4541 4542 XIM: remove Private and Public macros 4543 4544 Private is a struct member name in mingw-w64 <winioctl.h>, causing this 4545 useless define in a private header to break the build. 4546 4547 Signed-off-by: Yaakov Selkowitz <yselkowitz@users.sourceforge.net> 4548 Reviewed-by: Jon TURNEY <jon.turney@dronecode.org.uk> 4549 4550commit f2a8def423a46d52e834cf7ea49fa0079427663a 4551Author: Adam Jackson <ajax@redhat.com> 4552Date: Wed Oct 17 14:40:43 2012 -0400 4553 4554 XErrorDB: Add GLXBadProfileARB 4555 4556 Signed-off-by: Adam Jackson <ajax@redhat.com> 4557 4558commit d45b3fc19fbe95c41afc4e51d768df6d42332010 4559Author: Ross Burton <ross.burton@intel.com> 4560Date: Wed Sep 12 14:39:40 2012 +0100 4561 4562 Allow overriding location of keysymdef.h 4563 4564 Currently keysymdef.h is found by using the includedir of xproto. This doesn't 4565 work when cross-compiling with a sysroot as that ends up being /usr/include/X11, 4566 not a path into the cross-build environment. 4567 4568 So, add an option to allow explicitly specifying the location of keysymdef.h, 4569 and verify that the specified or found path exists. 4570 4571 (original patch by Martin Jansa <martin.jansa@gmail.com>, revised by myself) 4572 4573 Signed-off-by: Ross Burton <ross.burton@intel.com> 4574 Reviewed-by: Dan Nicholson <dbn.lists@gmail.com> 4575 Reviewed-by: Daniel Stone <daniel@fooishbar.org> 4576 4577commit 44cdc0dc2c68d67654023ec707b807145d3a38c0 4578Author: Eric S. Raymond <esr@thyrsus.com> 4579Date: Thu Aug 23 19:15:07 2012 -0400 4580 4581 Renove some unnecessary low-level markup. 4582 4583 Also, SYNTAX -> SYNOPSIS so function prototypes get parsed by doclifter. 4584 This appears to have been somebody's thinko, it's only in a few of the files. 4585 4586 Signed-off-by: Eric S. Raymond <esr@thyrsus.com> 4587 4588commit b686600ab5ca93b5750f827786e79c329ab2db4d 4589Author: Eric S. Raymond <esr@thyrsus.com> 4590Date: Thu Aug 23 10:53:33 2012 -0400 4591 4592 The .NT/.NE macro pair is no longer used. Remove it. 4593 4594 Signed-off-by: Eric S. Raymond <esr@thyrsus.com> 4595 4596commit b83f2898528c5dd683acd2a2143879a760a8dad5 4597Author: Eric S. Raymond <esr@thyrsus.com> 4598Date: Thu Aug 23 10:42:46 2012 -0400 4599 4600 Remove the one and only use of the .NT/.NE pair. 4601 4602 The problem with these macros is that they rely on being able to 4603 center the note label. That doesn't play well with modern HTML, 4604 not anyway without coomplications like CSS. This use was just a cute 4605 trick, not adding enough value to be kept. 4606 4607commit e9509fa6745d25eee01ec6f1c34edf8a806d66b3 4608Author: Eric S. Raymond <esr@thyrsus.com> 4609Date: Thu Aug 23 10:23:45 2012 -0400 4610 4611 The .C{ and .C} macros are never used. Remove them. 4612 4613 Signed-off-by: Eric S. Raymond <esr@thyrsus.com> 4614 4615commit 6b2f7ddeea6c87dbec4ddfc19b1fed33f1bb8575 4616Author: Eric S. Raymond <esr@thyrsus.com> 4617Date: Thu Aug 23 10:08:08 2012 -0400 4618 4619 The .FN macro, paired with .FD, is also never used. Remove it. 4620 4621 Signed-off-by: Eric S. Raymond <esr@thyrsus.com> 4622 4623commit cac6572701c976542da562b2b277b07ffb892a6f 4624Author: Eric S. Raymond <esr@thyrsus.com> 4625Date: Thu Aug 23 10:03:00 2012 -0400 4626 4627 The ".FD" macro is never used. Remove it. 4628 4629 It was a temptation to presentation-level klugery and is best gone. 4630 4631 Signed-off-by: Eric S. Raymond <esr@thyrsus.com> 4632 4633commit 6e27a828f39f7028bc7f4a8736e7262fca250632 4634Author: Eric S. Raymond <esr@thyrsus.com> 4635Date: Thu Aug 23 09:54:25 2012 -0400 4636 4637 Clean up, my last commit missed four cases. 4638 4639 Signed-off-by: Eric S. Raymond <esr@thyrsus.com> 4640 4641commit a7fb575957ff4d9dd3671994a005ac3be8bb10fe 4642Author: Eric S. Raymond <esr@thyrsus.com> 4643Date: Thu Aug 23 08:24:17 2012 -0400 4644 4645 Eliminate all uses of tab stops in the libX11 man pages. 4646 4647 Two steps: First, expand tabs to 8 spaces in code and structure 4648 listings. Second, make the .Ds used to wrap code listings switch to 4649 constant-width font (CW) rather than numeric font position 1, which 4650 maps to R on most systems. 4651 4652 It is possible some archaic systems won't know what CW is, but the 4653 only risk is that code listings won't look quite right on troff 4654 devices; the PostScript and DVI drivers definitely grok it, so those 4655 important cases are OK. 4656 4657 The purpose of these changes is to get rid of presentation-level 4658 markup so these pages will lift clean to DocBook. 4659 4660 Signed-off-by: Eric S. Raymond <esr@thyrsus.com> 4661 4662commit 8042f88ace33573f9d0dfaa21ed54ac7cef266d5 4663Author: Will Thompson <will@willthompson.co.uk> 4664Date: Mon Jul 9 18:00:27 2012 +0100 4665 4666 Add compose sequences for "therefore" and "because". 4667 4668 These sequences look sensible to me. I added them to the APL-related 4669 section of Mathematical Operators—they're in that section of Unicode 4670 anyway. 4671 4672 https://bugs.freedesktop.org/show_bug.cgi?id=51922 4673 4674 Signed-off-by: Will Thompson <will@willthompson.co.uk> 4675 Reviewed-by: Daniel Stone <daniel@fooishbar.org> 4676 4677commit 65358ea5079236b2508f787ac2fb2024a477e36d 4678Author: Alan Coopersmith <alan.coopersmith@oracle.com> 4679Date: Fri Jun 29 23:08:04 2012 -0700 4680 4681 Convert XCreate{Pix,Bit}map...Data to use C99 designated initializers 4682 4683 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 4684 4685commit 0dc93f7e43deb102b1f8fb7c4c4844cdce7ffd1e 4686Author: Alan Coopersmith <alan.coopersmith@oracle.com> 4687Date: Fri Jun 29 22:57:13 2012 -0700 4688 4689 XCreate{Pix,Bit}map...Data: Free pixmap in error path if XCreateGC fails 4690 4691 Fixes leaks in error paths found by Parfait 1.0.0: 4692 4693 Error: X Resource Leak 4694 Leaked X Resource pix 4695 at line 62 of CrBFData.c in function 'XCreateBitmapFromData'. 4696 pix initialized at line 60 with XCreatePixmap 4697 Error: X Resource Leak 4698 Leaked X Resource pix 4699 at line 70 of CrPFBData.c in function 'XCreatePixmapFromBitmapData'. 4700 pix initialized at line 66 with XCreatePixmap 4701 4702 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 4703 Reviewed-by: Aaron Plattner <aplattner@nvidia.com> 4704 4705commit dce84b8c39ad5a8908c29bb6de25b6c3004c1ab7 4706Author: Alan Coopersmith <alan.coopersmith@oracle.com> 4707Date: Wed Jun 6 13:31:16 2012 -0700 4708 4709 libX11 spec: Correct prototype for XConvertSelection 4710 4711 selection & target parameters were accidentally run together 4712 4713 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 4714 4715commit 6c5cb2a90a6479f56855e5167039c37c234cdfe7 4716Author: Alan Coopersmith <alan.coopersmith@oracle.com> 4717Date: Fri Jun 1 23:37:09 2012 -0700 4718 4719 libX11 1.5.0 4720 4721 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 4722 4723commit 05c587ec3be880721131a17c1dd4366e458fdd8b 4724Author: Alan Coopersmith <alan.coopersmith@oracle.com> 4725Date: Sat May 26 14:37:28 2012 -0700 4726 4727 libX11 1.4.99.902 (1.5 RC2) 4728 4729 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 4730 4731commit d817834d9772e3500d5102e2eae868b04a33c31f 4732Author: Pander <pander@users.sourceforge.net> 4733Date: Sat May 5 19:02:10 2012 +0200 4734 4735 Compose: Reassigned squences with minus and a or o 4736 4737 Reassigned squences with minus and a or o (vice versa and lower and 4738 upper case) to conform existing series and not resulting in tilde. 4739 Also added noe missing underscore sequence. 4740 4741 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 4742 4743commit 6bfd1dca6e7cb2046ee6bf9dbbddc0af5ef7cc00 4744Author: Pander <pander@users.sourceforge.net> 4745Date: Sat May 5 16:56:05 2012 +0200 4746 4747 Compose: Removed <slash> <U> and vice versa 4748 4749 Combination with lower case u suffices 4750 4751 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 4752 4753commit 3a8b1637132d1e36eb5e11f52dfb284081772d14 4754Author: Pander <pander@users.sourceforge.net> 4755Date: Sat May 5 16:44:31 2012 +0200 4756 4757 Compose: Removed <n> <minus> for n with tilde, also vice versa & for upper case 4758 4759 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 4760 4761commit fd514d7a35119dd4413b51c84f2a536f2ca501a6 4762Author: Pander <pander@users.sourceforge.net> 4763Date: Sat May 5 16:40:20 2012 +0200 4764 4765 Compose: Removed <S> in combination with a numeral for superscript 4766 4767 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 4768 4769commit 1b5cad3ca54410c4edbca79c23c463e9e088bc0d 4770Author: Pander <pander@users.sourceforge.net> 4771Date: Sat May 5 16:28:01 2012 +0200 4772 4773 Compose: Reassigned <o> <apostrophe> to oacute, also for upper case. 4774 4775 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 4776 4777commit 0bbc0d5e605e2a4a3eb00a229b651d4546e8aef4 4778Author: James Cloos <cloos@jhcloos.com> 4779Date: Thu May 10 12:27:28 2012 -0400 4780 4781 Remove duplicate compose sequences from commit e51e37c118ae. 4782 4783 The compose-check script only handles compiled Compose files, not 4784 the Compose.pre files. One must remember to use: 4785 4786 ./autogen.sh; make; make check 4787 4788 when reviewing patches to the Compose.pre files.... 4789 4790 Signed-off-by: James Cloos <cloos@jhcloos.com> 4791 4792commit e51e37c118ae6cb9ced8244ce1c410677e0279ce 4793Author: Geoff Streeter <geoff@dyalog.com> 4794Date: Thu Mar 22 15:02:00 2012 +0000 4795 4796 Add APL support to compose 4797 4798 Signed-off-by: Geoff Streeter <geoff@dyalog.com> 4799 Signed-off-by: James Cloos <cloos@jhcloos.com> 4800 4801commit dac90324cee224df977a428afe80d960dceca769 4802Author: Julien Cristau <jcristau@debian.org> 4803Date: Sat May 5 16:05:07 2012 +0200 4804 4805 configure: make previous change work with older autoconf 4806 4807 autoconf 2.63 doesn't seem to like the nested AC_CHECK_DECL/FUNC. So do 4808 the tests separately. 4809 4810 Reported-by: Dave Airlie 4811 Signed-off-by: Julien Cristau <jcristau@debian.org> 4812 4813commit f5b50af4324186962e258ffe9be78d5ee4681982 4814Author: Julien Cristau <jcristau@debian.org> 4815Date: Sun Apr 29 16:43:09 2012 +0200 4816 4817 configure: check if issetugid is declared 4818 4819 GNU/kFreeBSD has issetugid in libc (for legacy apps?), but doesn't 4820 declare it anywhere, causing gcc to error out with 4821 -Werror=implicit-function-declaration. Use AC_CHECK_DECL in addition to 4822 AC_CHECK_FUNC so we disable this code instead of failing to build it. 4823 4824 Debian bug#669670 <http://bugs.debian.org/669670> 4825 4826 Signed-off-by: Julien Cristau <jcristau@debian.org> 4827 Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com> 4828 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 4829 4830commit 52e1b5cc3b6de76ccf4285b55652474a522ed9a8 4831Author: Peter Hutterer <peter.hutterer@who-t.net> 4832Date: Mon Apr 30 16:36:47 2012 +1000 4833 4834 Typo fix 4835 4836 Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net> 4837 4838commit b64969f0e510d5d3300cf968741a3726a6409577 4839Author: Alan Coopersmith <alan.coopersmith@oracle.com> 4840Date: Tue Apr 17 18:12:02 2012 -0700 4841 4842 Add X11R7 sections to the libX11 & XKBlib credits to cover Docbook conversion 4843 4844 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 4845 4846commit 9ea611696f317ac3b3fb67893f1d6d87d49e3b5e 4847Author: Alan Coopersmith <alan.coopersmith@oracle.com> 4848Date: Tue Apr 17 18:01:36 2012 -0700 4849 4850 Add olinks from libX11 & localedb specs to ICCCM spec 4851 4852 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 4853 4854commit b3c1b8cdab7d14220426c9b997ac362dc16318fc 4855Author: Alan Coopersmith <alan.coopersmith@oracle.com> 4856Date: Tue Apr 17 17:49:44 2012 -0700 4857 4858 Add olinks from libX11 spec to ICCCM spec 4859 4860 Also convert ICCCM title mentions from <emphasis> to <citetitle> 4861 4862 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 4863 4864commit ebebb65e753007ad01966dccc90bd6ca9a826488 4865Author: Alan Coopersmith <alan.coopersmith@oracle.com> 4866Date: Sat Apr 14 23:40:01 2012 -0700 4867 4868 libX11 AppC: Fix section headers that didn't translate from nroff properly 4869 4870 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 4871 Acked-by: Peter Hutterer <peter.hutterer@who-t.net> 4872 4873commit d5ab4ae0e74ae1fb30fb72add0751effe2759bf2 4874Author: Alan Coopersmith <alan.coopersmith@oracle.com> 4875Date: Sat Apr 14 23:13:05 2012 -0700 4876 4877 Add olinks from libX11 spec to x11protocol spec 4878 4879 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 4880 Acked-by: Peter Hutterer <peter.hutterer@who-t.net> 4881 4882commit 83878a0e34fffd255597300dd3e6cd43fcd645b0 4883Author: Alan Coopersmith <alan.coopersmith@oracle.com> 4884Date: Sat Apr 14 22:28:53 2012 -0700 4885 4886 libX11 spec: Remove .br nroff macro left behind in XGetWindowProperty prototype 4887 4888 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 4889 4890commit abc523fce31fcf2687229697a8eb656e343ecb0c 4891Author: Alan Coopersmith <alan.coopersmith@oracle.com> 4892Date: Thu Mar 15 22:14:45 2012 -0700 4893 4894 libX11 1.4.99.901 (1.5 RC1) 4895 4896 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 4897 4898commit b2cc5905a4a6d519957223e8ba2caef71520040c 4899Author: Alan Coopersmith <alan.coopersmith@oracle.com> 4900Date: Thu Mar 15 22:03:21 2012 -0700 4901 4902 Remove "register" qualifier that annoys Solaris Studio compiler 4903 4904 Fixes warning: 4905 "Xrm.c", line 1094: warning: storage class after type is obsolescent 4906 4907 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 4908 4909commit 62d42953893f93a98db0504eaf06d650ceaf5811 4910Author: James Cloos <cloos@jhcloos.com> 4911Date: Wed Mar 14 17:25:46 2012 -0400 4912 4913 Fix the gtk+ additions 4914 4915 (Some of) the Dstroke and dstroke entries already were present as U011[01], 4916 even though XK_Dstroke and XK_dstroke are part of the latin2 set in keysymdef.h. 4917 4918 The addition of <Multi_key> <o> <apostrophe> as a postfix version of 4919 <Multi_key> <apostrophe> <o> blocks the existing entries for ǻ and Ǻ. 4920 That prevents its and <Multi_key> <O> <apostrophe>’s addition. 4921 4922 Signed-off-by: James Cloos <cloos@jhcloos.com> 4923 4924commit 91bcce48d94792f78333d2aea73961cc2e739d2e 4925Author: Pander <pander@users.sourceforge.net> 4926Date: Wed Mar 14 12:54:53 2012 -0400 4927 4928 Complete compose key sequences for musical symbols 4929 4930 Signed-off-by: Pander <pander@users.sourceforge.net> 4931 Signed-off-by: James Cloos <cloos@jhcloos.com> 4932 4933commit cf040016d455bc37f7665d6714337c5eafd8ea94 4934Author: Pander <pander@users.sourceforge.net> 4935Date: Wed Mar 14 12:46:25 2012 -0400 4936 4937 Add compose sequences from gtk+ to X.Org 4938 4939 Signed-off-by: Pander <pander@users.sourceforge.net> 4940 Signed-off-by: James Cloos <cloos@jhcloos.com> 4941 4942commit a4c591ced5cac9301b9abfa0e521be2d0b267882 4943Author: Keith Packard <keithp@keithp.com> 4944Date: Sun Mar 4 02:00:13 2012 -0800 4945 4946 Block for other threads in _XUserLockDisplay 4947 4948 Wait for all other threads to release the user-level lock when 4949 acquiring it. This ensures that only one thread at a time holds the 4950 user-level lock, necessary as it is a nesting lock and a single 4951 variable is used to determine when the lock is nesting and when it is 4952 contended. 4953 4954 Signed-off-by: Keith Packard <keithp@keithp.com> 4955 Reviewed-by: Jamey Sharp <jamey@minilop.net> 4956 4957commit ed00b460acb08787b695f27b864e96102dfd4867 4958Author: Jon TURNEY <jon.turney@dronecode.org.uk> 4959Date: Fri Oct 28 11:09:20 2011 -0500 4960 4961 Don't use caddr_t casts 4962 4963 (caddr_t) isn't used anywhere else in xcb or libX11. 4964 Cast to (char *) for consistency. 4965 4966 Removing this cast allows building for MinGW without patching. 4967 4968 v2: Cast to (char *) rather than just dropping the cast 4969 4970 Signed-off-by: Jon TURNEY <jon.turney@dronecode.org.uk> 4971 Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com> 4972 4973commit 20adca02c2a1d0b7c95ecbe387d68f881fd57754 4974Author: Julien Cristau <jcristau@debian.org> 4975Date: Sun Feb 19 13:27:38 2012 +0100 4976 4977 Revert "xcb: Add TCP fallback" 4978 4979 This reverts commit f09c5299a381e2729e800a0ac43f1c0e371f65f6. 4980 4981 The TCP fallback ended up falling back to UNIX socket connection if 4982 $DISPLAY was set to e.g. some.host:0 and the initial attempt failed. 4983 4984 Debian bug#659558 <http://bugs.debian.org/659558> 4985 4986 Signed-off-by: Julien Cristau <jcristau@debian.org> 4987 4988 Conflicts: 4989 4990 src/OpenDis.c 4991 4992commit f4378193619baa9bb973c1b5b718721bbcbe92c7 4993Author: James Cloos <cloos@jhcloos.com> 4994Date: Wed Feb 22 14:13:20 2012 -0500 4995 4996 Make the compose sequence for ẞ work. 4997 4998 There is no XK_Ssharp symbol for U+1E9E LATIN CAPITAL LETTER SHARP S, 4999 so use the U1e9e symbol in the Compose sequence. 5000 5001 (Compose sequences do not work when the target symbol is unknown.) 5002 5003 Signed-off-by: James Cloos <cloos@jhcloos.com> 5004 5005commit 2ca641c3a506dcbee97e279b67990d5387389f36 5006Author: Marko Myllynen <myllynen@redhat.com> 5007Date: Mon Feb 20 17:04:59 2012 +0200 5008 5009 Use ezh/EZH in compose maps 5010 5011 Related: https://bugs.freedesktop.org/show_bug.cgi?id=19687 5012 5013 Signed-off-by: Marko Myllynen <myllynen@redhat.com> 5014 Reviewed-by: Matt Dew <marcoz@osource.org> 5015 Signed-off-by: James Cloos <cloos@jhcloos.com> 5016 5017commit 61725822f20f47684a545c1797183ee7075243ac 5018Author: Marko Myllynen <myllynen@redhat.com> 5019Date: Sun Feb 20 17:09:43 2011 +0200 5020 5021 Provide translation from XK_permille (ad5) to Unicode (U2030) 5022 5023 https://bugs.freedesktop.org/show_bug.cgi?id=19687 5024 5025 Signed-off-by: Marko Myllynen <myllynen@redhat.com> 5026 Reviewed-by: Matt Dew <marcoz@osource.org> 5027 Signed-off-by: James Cloos <cloos@jhcloos.com> 5028 5029commit d2cce0abba0fa0143f49026442c8cab5ed721625 5030Author: Jeremy Huddleston <jeremyhu@apple.com> 5031Date: Sun Feb 12 19:01:43 2012 -0800 5032 5033 nls: Use LC_CTYPE=C for sed magic 5034 5035 Stricter versions of sed can trip up if the input does not match 5036 LC_CTYPE 5037 5038 Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com> 5039 5040commit f180e043f55531933bedfa6e0ff36a00a9ec07f3 5041Author: Frédéric Boiteux <fboiteux@calistel.com> 5042Date: Wed Nov 30 12:47:31 2011 +0000 5043 5044 Compositions with the dead greek symbol 5045 5046 FreeDesktop Bug 21475 <https://bugs.freedesktop.org/show_bug.cgi?id=21475> 5047 5048 Signed-off-by: Frédéric Boiteux <fboiteux@calistel.com> 5049 Signed-off-by: James Cloos <cloos@jhcloos.com> 5050 5051commit d58e8f8e27790017fcfdeca0843b7318d541c189 5052Author: Ryan Pavlik <rpavlik@iastate.edu> 5053Date: Sun Jan 1 21:04:52 2012 +0000 5054 5055 Use pthreads on MinGW also 5056 5057 Use pthreads (provided by the pthreads-win32 compatability library which implements 5058 them using native Win32 threading) on MinGW 5059 5060 Reviewed-by: Jon TURNEY <jon.turney@dronecode.org.uk> 5061 5062commit bf15ccb6821664746ec23d769d757edf8059007e 5063Author: Ryan Pavlik <rpavlik@iastate.edu> 5064Date: Mon Jan 23 14:18:02 2012 +0000 5065 5066 Add XWindows.h include to Xxcbint.h 5067 5068 This avoids some conflicting type re-definition errors which occur if 5069 we attempt to include Windows headers after Xmd.h 5070 5071 Reviewed-by: Jon TURNEY <jon.turney@dronecode.org.uk> 5072 5073commit cadcbd376f0a5d17a71a2fe2f8ced5d93232921a 5074Author: Matt Dew <marcoz@osource.org> 5075Date: Sat Jan 21 17:59:51 2012 -0700 5076 5077 informaltable & table cleanup 5078 5079 On certain tables, add top and bottom borders to table header 5080 and a bottom border to the table. This matches what those 5081 tables in the old pdfs looked like. 5082 5083 the <?dbfo keep-together='always'> prevents tables from 5084 splitting across pages. Useful for tiny tables. 5085 5086 Converting the colwidth to a floating point, IE, 1* -> 1.0* 5087 cleans up these build errors: 5088 WARNING: table-layout="fixed" and column-width unspecified => 5089 falling back to proportional-column-width(1) 5090 5091 Signed-off-by: Matt Dew <marcoz@osource.org> 5092 5093commit bb551f654df8f647c867f79252241964521e689e 5094Author: Alan Coopersmith <alan.coopersmith@oracle.com> 5095Date: Wed Dec 28 21:22:41 2011 -0800 5096 5097 Add more Xkb man pages to the See Also lists for core keyboard functions 5098 5099 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 5100 Reviewed-by: Peter Hutterer <peter.hutterer@who-t.net> 5101 5102commit b7bb23fe7c8b8a17128e5bc98a05f68595190438 5103Author: Gaetan Nadon <nadon@memsize.(none)> 5104Date: Fri Dec 30 17:08:14 2011 -0500 5105 5106 docbook.am: embed css styles inside the HTML HEAD element 5107 5108 Rather than referring to the external xorg.css stylesheet, embed the content 5109 of the file in the html output produced. This is accomplished by using 5110 version 1.10 of xorg-xhtml.xsl. 5111 5112 This makes the whole html docs tree much more relocatable. 5113 In addition, it eliminates xorg.css as a runtime file which makes 5114 xorg-sgml-doctools a build time only package. 5115 5116 Signed-off-by: Gaetan Nadon <nadon@memsize.(none)> 5117 5118commit 70505468b7c4a7068cc39be42e421dcee34ec595 5119Author: Alan Coopersmith <alan.coopersmith@oracle.com> 5120Date: Tue Dec 13 19:58:30 2011 -0800 5121 5122 makekeys: move buf declaration from global to main to silence gcc -Wshadow 5123 5124 The global was only referenced in the main() function, which passes it 5125 as an argument of the same name to the parse_line() function, leading 5126 to gcc -Wshadow warnings: 5127 5128 makekeys.c: In function ‘parse_line’: 5129 makekeys.c:58:24: warning: declaration of ‘buf’ shadows a global declaration 5130 makekeys.c:54:13: warning: shadowed declaration is here 5131 5132 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 5133 5134commit 87e10a7b9a97c951ab4d477f61177779ac0a6a66 5135Author: Kusanagi Kouichi <slash@ac.auone-net.jp> 5136Date: Wed Dec 14 02:17:55 2011 -0500 5137 5138 XQueryColors: Split a request into multiple requests if necessary 5139 5140 https://bugs.freedesktop.org/show_bug.cgi?id=9160 5141 5142 Signed-off-by: Kusanagi Kouichi <slash@ac.auone-net.jp> 5143 Signed-off-by: James Cloos <cloos@jhcloos.com> 5144 5145commit d3b3570592e9b9e57f270a0bd86762fd205a2833 5146Author: Andreas Wettstein <wettstein509@solnet.ch> 5147Date: Tue Nov 8 20:18:09 2011 +0000 5148 5149 XIM: Allow modifier releases in compose sequences (#26705) 5150 5151 Currently, only non-modifier keys (actually, keysyms) can be part of a compose 5152 sequence, and they are matched against the defined compose sequences at the 5153 time the key is pressed. The patch allows to use modifier keys an well, but 5154 matches them on key release, and only if no other key has been pressed after 5155 the modifier. 5156 5157 Releasing a non-matched modifier during an ongoing compose sequence only aborts 5158 the sequence if any modifier release would have matched. In particular, if no 5159 compose sequences with modifiers are specified, the compose mechanism works 5160 exactly as without this patch. 5161 5162 Even if modifiers are part of a compose sequence, they are not filtered. This 5163 is because modifiers affect the keyboard state no matter what we do here and, 5164 therefore, filtering them only could confuse clients. 5165 5166 The purpose is this extension to the compose mechanism is to allow to make 5167 better use of keys in convenient reach for touch typing. 5168 5169 Signed-off-by: Andreas Wettstein <wettstein509@solnet.ch> 5170 Signed-off-by: James Cloos <cloos@jhcloos.com> 5171 5172commit 56448a626fc90bcf75a1fa2f4c294b0eb1f23bd6 5173Author: Alan Coopersmith <alan.coopersmith@oracle.com> 5174Date: Tue Nov 29 23:56:57 2011 -0800 5175 5176 Reject negative string counts in copy_string_list 5177 5178 Silences parfait warning of a potential memory leak: 5179 Memory leak of pointer 'dst' allocated with malloc(length) 5180 at line 160 of FSWrap.c in function 'copy_string_list'. 5181 'dst' allocated at line 145 with malloc(length). 5182 dst leaks when count <= 0 at line 154. 5183 5184 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 5185 5186commit bf2d7c8c6d70539c72560b1921e18df2610acf29 5187Author: Peter Hutterer <peter.hutterer@who-t.net> 5188Date: Fri Nov 11 14:56:36 2011 +1000 5189 5190 libX11 1.4.99.1 5191 5192 Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net> 5193 5194commit 24283d40b1e4314c6647dda49d2a159833341a8b 5195Author: Derek Buitenhuis <derek.buitenhuis@gmail.com> 5196Date: Thu Sep 22 18:44:13 2011 -0400 5197 5198 makekeys: Fix build/target word size mismatch when cross-compiling 5199 5200 Since makekeys is built using build environment's gcc and 5201 runs natively, we have to make sure that the size of the 5202 Signature type is the same on both the native environment 5203 and the target, otherwise we get mismatches upon running X, 5204 and some LSB test failures (xts5). 5205 5206 Use an unsigned 32-bit integer on all platforms. Also, 5207 eliminate the redundant multiple typedefs for the 5208 Signature type. 5209 5210 Signed-off-by: Derek Buitenhuis <derek.buitenhuis@gmail.com> 5211 Reviewed-by: Daniel Stone <daniel@fooishbar.org> 5212 5213commit 1c41f3b9b86b5eeedfa3bff92e519d45aa097587 5214Author: Alan Coopersmith <alan.coopersmith@oracle.com> 5215Date: Wed Nov 9 21:00:36 2011 -0800 5216 5217 XlcSL.c: convert old-style function definitions to ANSI C89 style 5218 5219 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 5220 5221commit f6dad6aaa384bf836baa28ccb72b476a85c40eff 5222Author: Peter Hutterer <peter.hutterer@who-t.net> 5223Date: Thu Oct 27 13:53:22 2011 +1000 5224 5225 Use GetReqSized for GetReq and GetReqExtra 5226 5227 GetEmptyReq and GetResReq cannot do this due to the final typecast - 5228 typically requests that need either of those do not have their own typedef 5229 in the protocol headers. 5230 5231 Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net> 5232 Reviewed-by: Jamey Sharp <jamey@minilop.net> 5233 5234commit c9c99058b9d98789c0b2d7e78a23443c2b57a047 5235Author: Peter Hutterer <peter.hutterer@who-t.net> 5236Date: Fri Oct 14 14:51:06 2011 +1000 5237 5238 include: Add GetReqSized() for request buffers of specific size 5239 5240 Some XI2 requests change in size over different versions and libXi would 5241 need to hack around GetReq and GetReqExtra. Add a new GetReqSized so the 5242 library can explicitly specify the size of the request in 4-byte units. 5243 5244 Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net> 5245 Reviewed-by: Jamey Sharp <jamey@minilop.net> 5246 5247commit ba8a7a19165e30d14bc165f43f67c19b6a115585 5248Author: Peter Hutterer <peter.hutterer@who-t.net> 5249Date: Thu Oct 27 13:24:10 2011 +1000 5250 5251 Switch GetEmptyReq and GetResReq to call _XGetRequest 5252 5253 Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net> 5254 Reviewed-by: Jamey Sharp <jamey@minilop.net> 5255 5256commit 4a060f993bf676cf21ad9784e010f54134da7b40 5257Author: Peter Hutterer <peter.hutterer@who-t.net> 5258Date: Mon Oct 17 09:45:15 2011 +1000 5259 5260 Add _XGetRequest as substitute for GetReq/GetReqExtra 5261 5262 Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net> 5263 Reviewed-by: Jamey Sharp <jamey@minilop.net> 5264 5265commit d8956520deb79c1cbb5e974c175bf8493859b22b 5266Author: Alan Coopersmith <alan.coopersmith@oracle.com> 5267Date: Fri Oct 14 17:53:00 2011 -0700 5268 5269 Fix "nomal" -> "normal" typo in several comments 5270 5271 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 5272 5273commit 002b36e308a26a152504f9b40aa08a0dce9a7991 5274Author: Xue Wei <Wei.Xue@Sun.COM> 5275Date: Fri Oct 14 17:39:21 2011 -0700 5276 5277 mbtocs should not truncate input 5278 5279 Fixes pasting more than 1024 bytes into xterm, as described in 5280 https://bugs.freedesktop.org/show_bug.cgi?id=25209 5281 5282 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 5283 5284commit 9b8d8c9e5b27273e8856a3851ba9b68022bed3cd 5285Author: Marko Myllynen <myllynen@redhat.com> 5286Date: Mon Oct 10 09:41:13 2011 +0300 5287 5288 Add new compose sequences 5289 5290 This patch adds few new compose sequences to the en_US map, ligatures 5291 common in typesetting and sequences already in use in the fi_FI map. 5292 5293 https://bugs.freedesktop.org/show_bug.cgi?id=30621 5294 https://bugs.freedesktop.org/show_bug.cgi?id=34523 5295 5296 Reviewed-by: Jeremy Huddleston <jeremyhu@apple.com> 5297 5298commit 738f7b867341c1da87ee667d48815822715c3e75 5299Author: Choe Hwanjin <choe.hwanjin@gmail.com> 5300Date: Thu Oct 13 07:58:02 2011 +0900 5301 5302 XIM: Make Xim handle NEED_SYNC_REPLY flag 5303 5304 NEED_SYNC_REPLY flag should be in Xim not in Xic. 5305 Because the focused Xic can be changed before sending sync reply. 5306 After focused Xic changed, the new Xic doesn't have NEED_SYNC_REPLY 5307 flag enabled, so libX11 doesn't send XIM_SYNC_REPLY packet. 5308 5309 This patch adds sync reply flag to Xim and removes sync reply 5310 from Xic. 5311 5312 Fixes: https://bugs.freedesktop.org/show_bug.cgi?id=7869 5313 5314 Signed-off-by: Choe Hwanjin <choe.hwanjin@gmail.com> 5315 Reviewed-by: Jeremy Huddleston <jeremyhu@apple.com> 5316 5317commit 50e15379331c436851abb194251cde96999e67b3 5318Author: Bodo Graumann <mail@bodograumann.de> 5319Date: Mon Oct 10 16:40:52 2011 +0200 5320 5321 libX11: Fixing modifier key range in Xutil.h (Bug #21910) 5322 5323 IsModifierKey, defined in include/X11/Xutil.h, is a macro determining, 5324 which keys are regarded as modifiers. The constants ISO_Level5_Shift, 5325 ISO_Level5_Latch and ISO_Level5_Lock where excluded previously, leaving 5326 some Neo2 modifiers functionless in combination with compose. 5327 This patch adjusts the range to include the correct, full range of 5328 modifier constants. 5329 5330 Neo2 Bug 277 <http://wiki.neo-layout.org/ticket/277> 5331 5332 X.Org Bug 21910 <http://bugs.freedesktop.org/show_bug.cgi?id=21910> 5333 5334 Signed-off-by: Bodo Graumann <mail@bodograumann.de> 5335 Reviewed-by: Daniel Stone <daniel@fooishbar.org> 5336 5337commit b5a108624331fabf393223c0891914cc54d4caf4 5338Author: Yann Droneaud <yann@droneaud.fr> 5339Date: Tue Oct 11 17:27:59 2011 +0200 5340 5341 Return name instead of False in XSetICValues() 5342 5343 In case of error, XSetICValues() must return the first argument 5344 that failed to be set. 5345 5346 But in some error paths, it returns False, which is converted to NULL, 5347 so the function returns OK in case of error. 5348 5349 Signed-off-by: Yann Droneaud <yann@droneaud.fr> 5350 Reviewed-by: Jeremy Huddleston <jeremyhu@apple.com> 5351 5352commit 10992cb8dc5e4d938e7e5a633b68a81b5875f3ba 5353Author: Yann Droneaud <yann@droneaud.fr> 5354Date: Sun Oct 9 17:56:45 2011 +0200 5355 5356 Return name instead of value in XGetIMValues() and XSetIMValues() 5357 5358 As stated in man page (XOpenIM) and Xlib documentation (chapter 13.5.3), 5359 XGetIMValues() and XSetImValues() "returns the name of the first argument 5360 that could not be obtained." 5361 5362 But currently, 5363 5364 err = XGetIMValues(im, "invalid", &arg, NULL); 5365 5366 returns &arg instead of "invalid". 5367 5368 This patch fixes https://bugs.freedesktop.org/show_bug.cgi?id=12897 5369 5370 Signed-off-by: Yann Droneaud <yann@droneaud.fr> 5371 Reviewed-by: Jeremy Huddleston <jeremyhu@apple.com> 5372 5373commit f2651e03f3295a453a2965c3749bc8b6e66f1c09 5374Author: Jeremy Huddleston <jeremyhu@apple.com> 5375Date: Mon Oct 10 14:09:17 2011 -0700 5376 5377 Mark XKeycodeToKeysym as _X_DEPRECATED 5378 5379 Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com> 5380 5381commit 25d7bb9c705623ebbb3afba3b86d0ded5b6bb4fb 5382Author: Jeremy Huddleston <jeremyhu@apple.com> 5383Date: Sun Oct 9 02:38:28 2011 -0700 5384 5385 Fix nobreakspace for pt_BR.UTF-8 5386 5387 https://bugs.freedesktop.org/show_bug.cgi?id=31334 5388 5389 Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com> 5390 5391commit 913603660c17ec59a4d39d3e3b9d60469ee5c060 5392Author: Jeremy Huddleston <jeremyhu@apple.com> 5393Date: Sun Oct 9 02:26:45 2011 -0700 5394 5395 Fix potential uninitialized variable access in _XimMakeICAttrIDList 5396 5397 Found by clang static analysis 5398 5399 Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com> 5400 5401commit 566ceaf5a92c721ac7155528e4d0d2e5cbef023f 5402Author: Jeremy Huddleston <jeremyhu@apple.com> 5403Date: Sun Oct 9 02:25:50 2011 -0700 5404 5405 Remove self-resolving aliases 5406 5407 https://bugs.freedesktop.org/show_bug.cgi?id=30112 5408 5409 Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com> 5410 5411commit 22ba43d198dcca86c88eb15a56fc7d8fc47c422e 5412Author: Matt Dew <marcoz@osource.org> 5413Date: Fri Oct 7 22:52:30 2011 -0600 5414 5415 Cleanup IDs and links in doc 5416 5417 1 - fix the capitalization of the ID attributes to match either the 5418 <title> or <funcdef> string it goes with. 5419 2 - fix any <linkend>'s that were affected by 1. 5420 3 - any <function> in the docs that has an actual funcdef, 5421 will become an olink. 5422 5423 Signed-off-by: Matt Dew <marcoz@osource.org> 5424 5425commit f858f3326adbc0c5711669b92a64a84a9083a055 5426Author: James Cloos <cloos@jhcloos.com> 5427Date: Tue Oct 4 17:11:11 2011 -0400 5428 5429 [nls] Fix typo/synco. 5430 5431 The iso8859-1 Compose table includes an optional section which uses 5432 Ctrl<T> as a substitute for <Multi_key>. In that section the sequence 5433 to generate an @ (at) either was incorrectly copied from the Multi_key 5434 section or was not kept in sync with the Multi_key section. 5435 5436 Fixing this eliminates the warning from compose-check.pl: 5437 5438 ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 5439 ┃ Clash with existing sequence in iso8859-1/Compose.pre 5440 ┃ on line 661: Ctrl<T> <A> <A> 5441 ┃ line #661: Ctrl<T> <A> <A> : "\305" Aring 5442 ┃ line #480: Ctrl<T> <A> <A> : "@" at 5443 ┗━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 5444 5445 Signed-off-by: James Cloos <cloos@jhcloos.com> 5446 5447commit 7f35f7efc23234b3f8529fee31a802c21846d9ab 5448Author: Jeremy Huddleston <jeremyhu@apple.com> 5449Date: Mon Sep 26 11:32:56 2011 -0700 5450 5451 Remove conflicting compose sequences for cent and colon 5452 5453 Regression from 4d78ad4bf6dcabca9bb5f84c770abfbb02d3f7a4 5454 Found by tinderbox 5455 5456 Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com> 5457 5458commit 4d78ad4bf6dcabca9bb5f84c770abfbb02d3f7a4 5459Author: Jeremy Huddleston <jeremyhu@apple.com> 5460Date: Sun Sep 25 16:29:17 2011 -0700 5461 5462 Add additional compose sequences for pound sterling, yen, and cent (mixed case) 5463 5464 https://bugs.freedesktop.org/show_bug.cgi?id=1013 5465 5466 Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com> 5467 Reviewed-by: Gaetan Nadon <memsize@videotron.ca> 5468 5469commit 0ca4153a373e2af7a9eb3cef003393ab332bc79e 5470Author: Jeremy Huddleston <jeremyhu@apple.com> 5471Date: Sat Sep 24 16:44:04 2011 -0700 5472 5473 Use a configure check for seteuid 5474 5475 HP-UX doesn't have seteuid 5476 5477 https://bugs.freedesktop.org/show_bug.cgi?id=1497 5478 5479 Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com> 5480 5481commit 79594b4d66344f248eb4314ecb78eb81f632c3ab 5482Author: Gaetan Nadon <memsize@videotron.ca> 5483Date: Tue Sep 20 16:06:10 2011 -0400 5484 5485 localedb specs: use <copyright> for first holder of multi license 5486 5487 Signed-off-by: Gaetan Nadon <memsize@videotron.ca> 5488 5489commit 154430268cf004b06920edde2f1812dc16d71fae 5490Author: Gaetan Nadon <memsize@videotron.ca> 5491Date: Tue Sep 20 16:01:52 2011 -0400 5492 5493 libX11 specs: use <copyright> for first holder of multi license 5494 5495 Signed-off-by: Gaetan Nadon <memsize@videotron.ca> 5496 5497commit 66e621f58dee804acb795ff2c79ce6dd38b34a3f 5498Author: Tollef Fog Heen <tfheen@err.no> 5499Date: Tue Sep 20 13:07:37 2011 -0400 5500 5501 NLS: Add more vulgar fractions 5502 5503 Add 1/7, 1/9, 1/10 and 0/3 vulgar fractions. 5504 5505 Signed-off-by: Tollef Fog Heen <tfheen@err.no> 5506 Signed-off-by: James Cloos <cloos@jhcloos.com> 5507 5508commit e37a6da814b5653be46000a9a76902729660a2e6 5509Author: Alexander Polakov <polachok@gmail.com> 5510Date: Sat Sep 17 20:54:58 2011 +0400 5511 5512 XGrabKey manual page: change XAllowAccess to XAllowEvents in See Also 5513 5514 There is no XAllowAccess man page to see. 5515 5516 Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com> 5517 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 5518 5519commit a23f3323f269b33a43d16dce01395cd28bc41b45 5520Author: Gaetan Nadon <memsize@videotron.ca> 5521Date: Mon Sep 19 15:27:44 2011 -0400 5522 5523 XKB: provide adequate quotes for the license text 5524 5525 Signed-off-by: Gaetan Nadon <memsize@videotron.ca> 5526 5527commit a9c7a5cad91d968f5536ef8fc735036e921832a3 5528Author: Gaetan Nadon <memsize@videotron.ca> 5529Date: Mon Sep 19 15:18:53 2011 -0400 5530 5531 XIM: refactor the multi licensing legal text 5532 5533 Signed-off-by: Gaetan Nadon <memsize@videotron.ca> 5534 5535commit c46f934ed89e7de79746a0387c9f998d91994ea6 5536Author: Gaetan Nadon <memsize@videotron.ca> 5537Date: Mon Sep 19 10:33:30 2011 -0400 5538 5539 xim trans: restore Fujitsu copyright legal text 5540 5541 Somehow lost during docbook conversion. text from x.org ftp R7.5. 5542 5543 Signed-off-by: Gaetan Nadon <memsize@videotron.ca> 5544 5545commit 3d75f993382bfdc89d31668d7dfc71c91222e0d7 5546Author: Gaetan Nadon <memsize@videotron.ca> 5547Date: Mon Sep 19 10:11:46 2011 -0400 5548 5549 xtrans: restore X Consortium original legal text 5550 5551 Asking X Consortium permission to use The Open Group name makes no sense. 5552 Even more so in 1994 before X Window System was passed on to the Open Group. 5553 5554 Using original text from xorg-docs/general/License 5555 5556 Signed-off-by: Gaetan Nadon <memsize@videotron.ca> 5557 5558commit 136a381585a4a9686c11bad1a6130837978e677f 5559Author: Gaetan Nadon <memsize@videotron.ca> 5560Date: Mon Sep 19 10:03:21 2011 -0400 5561 5562 Framework: restore X Consortium copyright 5563 5564 Somewhat dammaged during docbook conversion. 5565 Also restore pasrt of the original license text 5566 5567 Signed-off-by: Gaetan Nadon <memsize@videotron.ca> 5568 5569commit 33f346878406762704a0c13cdc018111c666f3c1 5570Author: Gaetan Nadon <memsize@videotron.ca> 5571Date: Mon Sep 19 09:50:00 2011 -0400 5572 5573 localedb: restore X Consortium original legal text 5574 5575 Asking X Consortium permission to use The Open Group name makes no sense. 5576 Even more so in 1994 before X Window System was passed on to the Open Group. 5577 5578 Using original text from xorg-docs/general/License 5579 5580 Signed-off-by: Gaetan Nadon <memsize@videotron.ca> 5581 5582commit e99c9338e413efca026210b9d830efb5c74d34e5 5583Author: Gaetan Nadon <memsize@videotron.ca> 5584Date: Mon Sep 19 08:23:18 2011 -0400 5585 5586 specs: support multi licensed copyright notice and license text 5587 5588 For documentation having multiple licenses, the copyright and legalnotice 5589 elements sequence cannot instantiated multiple times. 5590 The copyright notice and license text are therefore coded inside a 5591 legalnotice element. The role attribute on the paragraph is used to allow 5592 styling of the copyright notice text which should not be italicized. 5593 5594 Signed-off-by: Gaetan Nadon <memsize@videotron.ca> 5595 5596commit b9dedc757e667333ce899115d618f25cdaa4dd5e 5597Author: Gaetan Nadon <memsize@videotron.ca> 5598Date: Mon Sep 19 08:17:50 2011 -0400 5599 5600 localedb: add release info to spec 5601 5602 Signed-off-by: Gaetan Nadon <memsize@videotron.ca> 5603 5604commit 4519c89a87ddce01e599542737a27c26030fe4ff 5605Author: Gaetan Nadon <memsize@videotron.ca> 5606Date: Mon Sep 19 08:05:32 2011 -0400 5607 5608 specs: fix The Open Group license text 5609 5610 The warranty referred to the X Consortium 5611 5612 Signed-off-by: Gaetan Nadon <memsize@videotron.ca> 5613 5614commit 08ac378423e7be72e340197ba5559a1a36f1783c 5615Author: Gaetan Nadon <memsize@videotron.ca> 5616Date: Mon Sep 19 08:03:39 2011 -0400 5617 5618 specs: The strandard name is still "X Consortium Standard" 5619 5620 This spec, and fsproto spec, are the only two docs with a different 5621 standard name. 5622 5623 Signed-off-by: Gaetan Nadon <memsize@videotron.ca> 5624 5625commit 8dfbeb1b1b1e8aa17f69d0a373155419a5f6a172 5626Author: Gaetan Nadon <memsize@videotron.ca> 5627Date: Sun Sep 18 13:22:34 2011 -0400 5628 5629 specs: support multi licensed copyright notice and license text 5630 5631 For documentation having multiple licenses, the copyright and legalnotice 5632 elements sequence cannot instantiated multiple times. 5633 The copyright notice and license text are therefore coded inside a legalnotice 5634 element. The role attribute on the paragraph is used to allow styling of the 5635 copyright notice text which should not be italicized. 5636 5637 Signed-off-by: Gaetan Nadon <memsize@videotron.ca> 5638 5639commit 278ca8947c1dabb2b819527dca0fa6190c034f67 5640Author: Gaetan Nadon <memsize@videotron.ca> 5641Date: Fri Sep 16 11:45:56 2011 -0400 5642 5643 docs: merge copyright holder under the same copyright notice 5644 5645 As per the docbook markup dtd. 5646 5647 Signed-off-by: Gaetan Nadon <memsize@videotron.ca> 5648 5649commit 7ff012bb433109a622ac122ade71669e842ebdcf 5650Author: Gaetan Nadon <memsize@videotron.ca> 5651Date: Fri Sep 16 10:09:57 2011 -0400 5652 5653 specs: handle multiple sets of copyright notice/license/warranty 5654 5655 Docbook groups all the <copyright> elements together and all the 5656 <legalnotice> elements together. 5657 5658 We cannot have a sequence: 5659 <copyright> <legalnotice> <copyright> <legalnotice> [...] 5660 5661 A workaround, which was done in some documents, is to put the copyright 5662 notice inside the legalnotice in plain text without the <copyright> element. 5663 A formal paragraph title is added here which makes the copyright notice bold, 5664 and makes it much easier to locate. 5665 5666 Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com> 5667 Signed-off-by: Gaetan Nadon <memsize@videotron.ca> 5668 5669commit 4a550c71b8221c37b1a9378d5a170da9eaa03405 5670Author: Gaetan Nadon <memsize@videotron.ca> 5671Date: Wed Sep 14 15:55:42 2011 -0400 5672 5673 specs: remove orphan affiliation. 5674 5675 Authors affiliation are correct. 5676 5677 Signed-off-by: Gaetan Nadon <memsize@videotron.ca> 5678 5679commit 0cc02a6df65214560b7575e89cebee741d6d2469 5680Author: Gaetan Nadon <memsize@videotron.ca> 5681Date: Tue Sep 13 17:39:02 2011 -0400 5682 5683 specs: use appropriate markup for Copyright statements 5684 5685 Also move <releaseinfo> to match order of appearance 5686 5687 Signed-off-by: Gaetan Nadon <memsize@videotron.ca> 5688 5689commit afe13e19ebf0fc4e3460644164433af016f0add7 5690Author: Gaetan Nadon <memsize@videotron.ca> 5691Date: Mon Sep 12 16:54:45 2011 -0400 5692 5693 docs: use the &fullrelvers; entity to set X11 release information 5694 5695 Signed-off-by: Gaetan Nadon <memsize@videotron.ca> 5696 5697commit 22a2153282db13e9d94881022b8c979539841a2c 5698Author: Gaetan Nadon <memsize@videotron.ca> 5699Date: Sun Sep 11 19:49:53 2011 -0400 5700 5701 docs: remove <productnumber> which is not used by default 5702 5703 This element is not rendered by default on the title. A template 5704 customization is required to display it. 5705 X Window System does not have a product number. 5706 5707 Signed-off-by: Gaetan Nadon <memsize@videotron.ca> 5708 5709commit 719f16570d9fcfd15247813ee51fa51ac8a6ff4c 5710Author: Gaetan Nadon <memsize@videotron.ca> 5711Date: Sun Sep 11 17:40:21 2011 -0400 5712 5713 docs: use the &fullrelvers; entity to set X11 release information 5714 5715 Signed-off-by: Gaetan Nadon <memsize@videotron.ca> 5716 5717commit a6b2992f50b571d612ea9ade631c432c3099bc12 5718Author: Gaetan Nadon <memsize@videotron.ca> 5719Date: Sun Sep 11 17:38:42 2011 -0400 5720 5721 docs: remove orphan <affiliation> 5722 5723 Somehow created during the conversion from roff. Unable to locate 5724 the author to which it belongs. 5725 5726 Signed-off-by: Gaetan Nadon <memsize@videotron.ca> 5727 5728commit c7420060b6e47b8467ba50c796ec3c1bab090bc7 5729Author: Gaetan Nadon <memsize@videotron.ca> 5730Date: Sun Sep 11 17:38:05 2011 -0400 5731 5732 docs: remove <productnumber> which is not used by default 5733 5734 This element is not rendered by default on the title. A template 5735 customization is required to display it. 5736 X Window System does not have a product number. 5737 5738 Signed-off-by: Gaetan Nadon <memsize@videotron.ca> 5739 5740commit 7d5b718c1edbc43c54b7001be548e515a49540ea 5741Author: Gaetan Nadon <memsize@videotron.ca> 5742Date: Fri Sep 9 14:46:39 2011 -0400 5743 5744 docbook.am: embed css styles inside the HTML HEAD element 5745 5746 Rather than referring to the external xorg.css stylesheet, embed the content 5747 of the file in the html output produced. This is accomplished by using 5748 version 1.10 of xorg-xhtml.xsl. 5749 5750 This makes the whole html docs tree much more relocatable. 5751 In addition, it eliminates xorg.css as a runtime file which makes 5752 xorg-sgml-doctools a build time only package. 5753 5754 Signed-off-by: Gaetan Nadon <memsize@videotron.ca> 5755 5756commit 24632d280491c465dfe208ef788815890892e326 5757Author: Gaetan Nadon <memsize@videotron.ca> 5758Date: Mon Sep 5 12:53:12 2011 -0400 5759 5760 compose: upgrade makefile to support olinking on chunked html 5761 5762 The essential differences over the regular docbook.am are: 5763 Adding root.filename parameter for naming of chapters html files. 5764 Using xhtml xmlto format and xorg-chunk.xsl stylesheet 5765 Set olink.base.uri for pdf but not for chunked html 5766 Olink is not applicable to ps and txt formats. 5767 5768 Html chapters are added to shelf_DATA as they are also installed. 5769 The xml is generated from a perl script and not distributed. 5770 5771 Requires version 1.10 of xorg-sgml-doctools. 5772 5773 Signed-off-by: Gaetan Nadon <memsize@videotron.ca> 5774 5775commit 93ab0a1c9a4f9094cf0c8e1c686130673e681798 5776Author: Gaetan Nadon <memsize@videotron.ca> 5777Date: Wed Aug 31 19:46:20 2011 -0400 5778 5779 docbook.am: refactor common flags for xmlto and xsltproc 5780 5781 Maximize reuse and reduce risk of setting the wrong flag 5782 at the wrong place. 5783 5784 Signed-off-by: Gaetan Nadon <memsize@videotron.ca> 5785 5786commit 85b725aa9ef76aeb5e94d42e0cd60f896da7ab97 5787Author: Gaetan Nadon <memsize@videotron.ca> 5788Date: Wed Aug 31 10:46:59 2011 -0400 5789 5790 docbook.am: add search path for local entities 5791 5792 Currently, only $(XORG_SGML_PATH)/X11 is searched for xml entities. 5793 A module may want to add entities that apply only to itself and 5794 not to all modules, like the xserver does. 5795 5796 This feature may or may not be used in this module, but all modules 5797 share a copy of docbook.am. 5798 5799 Signed-off-by: Gaetan Nadon <memsize@videotron.ca> 5800 5801commit b5ed2d368d47f244d43d2513329fa2758bc4ef54 5802Author: Gaetan Nadon <memsize@videotron.ca> 5803Date: Thu Aug 25 14:39:20 2011 -0400 5804 5805 docbook.am: explicitly list xmlto flags for each target 5806 5807 Normal evolution of make targets make it impractical to factor out 5808 common command flags for xmlto. 5809 5810 The targets now list each command option as its presence or absence 5811 needs to be justified. 5812 5813 xorg.ss is only needed by xmlto for html. 5814 masterdb is only needed by xmlto. 5815 img.src.path must not be used by html. 5816 xsltproc need to use customization layer xorg-*.xsl. 5817 txt format is not required to search masterdb. 5818 5819 Signed-off-by: Gaetan Nadon <memsize@videotron.ca> 5820 5821commit d5b3605f3b0639452e892e9ff3afb18bb7442069 5822Author: Gaetan Nadon <memsize@videotron.ca> 5823Date: Thu Aug 25 13:12:49 2011 -0400 5824 5825 docbook.am: do not generate docs if docbook customization layer is missing 5826 5827 The stylesheets used to be only about style, fonts or colors. 5828 Complex features are now used like olink and chunked html which 5829 may cause a build break when stylesheets are missing or lead to hard 5830 to find problem. 5831 5832 Some modules may be built when stylesheets are present while others 5833 are built without. There is no requirement to build crippled docs. 5834 5835 Signed-off-by: Gaetan Nadon <memsize@videotron.ca> 5836 5837commit 7f23c72c94d9d14122426b0d8c66054f1402769a 5838Author: Gaetan Nadon <memsize@videotron.ca> 5839Date: Fri Aug 5 14:33:32 2011 -0400 5840 5841 libX11 specs: review doclifter generated tables 5842 5843 Many tables had a questionnable layout and some had information dropped. 5844 Each table was cross-referenced with a pre-docbook version 5845 to ensure semantic integrity. 5846 5847 Signed-off-by: Gaetan Nadon <memsize@videotron.ca> 5848 5849commit 1efdbeb8cd08f443188ac783cbab6ba0654a66d6 5850Author: Gaetan Nadon <memsize@videotron.ca> 5851Date: Wed Jul 20 15:28:47 2011 -0400 5852 5853 credits.xml: remove toc from Acknowledgments 5854 5855 There should be no toc for a simple preface with only one 5856 Acknowledgments section. 5857 5858 Use <simplesect> markup rather than sect1. 5859 5860 Signed-off-by: Gaetan Nadon <memsize@videotron.ca> 5861 5862commit 77cc17ed0817c1df3ac5feb9dc83a5ba5d021a4b 5863Author: Gaetan Nadon <memsize@videotron.ca> 5864Date: Thu Aug 4 19:59:37 2011 -0400 5865 5866 libX11 specs: move </para> above <varaiablelist> 5867 5868 Many, but not all, function synopsis have a paragraph that 5869 nests the variable list. The code was generated by doclifter 5870 and there is no apprent reasons as to why it was done this way. 5871 Found while investigating a spacing issue. 5872 5873 Before the patch: 5874 <para>Some blurb about the function 5875 <funcsynopsis> 5876 </funcsynopsis> 5877 <variablelist> 5878 </variablelist> 5879 </para> 5880 5881 After the patch: 5882 <para>Some blurb about the function</para> 5883 <funcsynopsis> 5884 </funcsynopsis> 5885 <variablelist> 5886 </variablelist> 5887 5888 There are no noticable differences when reading the doc 5889 other than than the removed few pixels of spacing between 5890 the function sysnopsis and the variable list block. 5891 5892 In some cases, there are no "blurb about the fucntion" 5893 and the empty paragraph is removed. 5894 5895 Signed-off-by: Gaetan Nadon <memsize@videotron.ca> 5896 5897commit 18595f0d8f95ff1c12e7b9f73bd4b30dda5c7168 5898Author: Gaetan Nadon <memsize@videotron.ca> 5899Date: Thu Jul 28 19:46:14 2011 -0400 5900 5901 compose specs: generate chunked html 5902 5903 For large 600 page documents such as this one, chunked html 5904 provide faster browser load time and better navigation. 5905 5906 Simply click on the locale of your choice in the toc and 5907 the browser loads just that one file. Being a DocBook, 5908 it benefits from all of the usual features and can be 5909 integrated with the rest of the documentation. 5910 5911 Acked-by: Alan Coopersmith <alan.coopersmith@oracle.com> 5912 Signed-off-by: Gaetan Nadon <memsize@videotron.ca> 5913 5914commit 5cc8815b8a117cf0b6af37e7d55c5a420d9fff57 5915Author: Gaetan Nadon <memsize@videotron.ca> 5916Date: Thu Jun 23 15:16:47 2011 -0400 5917 5918 specs: build compose keys tables in specs/i18n/compose 5919 5920 Build the tables article together with the rest of the specs. 5921 Make it transparent that the source in generated in nls. 5922 Reuse docbook.am and get all the features such as olink. 5923 5924 The docbook article file stem and id must be the same. The new name 5925 for the main article is libX11-keys. The new installation location 5926 is $docdir/libX11/i18n/compose. 5927 5928 The nls dir retains the role of generating the DocBook/XML source 5929 but does not build neither installs output formats or generated source. 5930 5931 The tables article now has to specify that each included locale 5932 section is a dependency. It did not matter before as they were web links. 5933 5934 The xorg-sgml-doctools masterdb shall be updated to include this new doc. 5935 Install location moved from doc/libX11/Compose to doc/libX11/i18n/compose. 5936 5937 Acked-by: Alan Coopersmith <alan.coopersmith@oracle.com> 5938 Signed-off-by: Gaetan Nadon <memsize@videotron.ca> 5939 5940commit adebbe3856b4aee39c0c7af902c1dea847dd6d7c 5941Author: Gaetan Nadon <memsize@videotron.ca> 5942Date: Thu Jun 23 14:43:31 2011 -0400 5943 5944 nls: restructure charts as a single article with sections 5945 5946 Looks more like a real article with a toc rather than individual 5947 web pages. Looks nicer in pdf. 5948 5949 Each locale is a "section" rather than an "article". 5950 Using XInclude to aggregate xml source files gets you the toc for free. 5951 5952 The single document is over 600 pages while there were 62 separate 5953 documents previously. FOP version 1.0 is required to handle missing 5954 character like capital sharp s. 5955 5956 Acked-by: Alan Coopersmith <alan.coopersmith@oracle.com> 5957 Signed-off-by: Gaetan Nadon <memsize@videotron.ca> 5958 5959commit fc74dc12b1ff3c43e240e1a713316ce1bf525d61 5960Author: Alan Coopersmith <alan.coopersmith@oracle.com> 5961Date: Thu Jul 28 19:32:40 2011 -0700 5962 5963 libX11 1.4.4 5964 5965 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 5966 5967commit ab1f30231755d99ed123af6873b981834640f01d 5968Author: Matt Dew <marcoz@osource.org> 5969Date: Wed Jul 13 12:33:40 2011 -0600 5970 5971 Add id attributes to error codes to allow linking from other docs. 5972 5973 Signed-off-by: Matt Dew <marcoz@osource.org> 5974 Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com> 5975 Acked-by: Gaetan Nadon <memsize@videotron.ca> 5976 5977commit 5c831fef402914ccf2ec14005c25be48852f119b 5978Author: David Coppa <dcoppa@gmail.com> 5979Date: Tue Jul 12 10:05:47 2011 +0200 5980 5981 Fix libpthread linkage on OpenBSD. 5982 5983 OpenBSD prefers to use the -pthread to fetch pthread libs when needed. 5984 5985 Signed-off-by: Matthieu Herrb <matthieu.herrb@laas.fr> 5986 Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com> 5987 5988commit 445b0b3efc04a74fc77cd3e483b25cfb5da82f12 5989Author: Gaetan Nadon <memsize@videotron.ca> 5990Date: Wed Jun 22 20:46:26 2011 -0400 5991 5992 config: use XORG_WITH_PERL macro to replace custom program check 5993 5994 New in version util-macros 1.15, the macro does the usual checking 5995 for program path and provides an interface for makefile variables. 5996 5997 Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com> 5998 Signed-off-by: Gaetan Nadon <memsize@videotron.ca> 5999 6000commit 47d99a324db9232029a22dd523e3bc3ed0936aca 6001Author: Gaetan Nadon <memsize@videotron.ca> 6002Date: Wed Jun 22 20:41:18 2011 -0400 6003 6004 config: update XORG_WITH_FOP macro usage 6005 6006 A new feature to test for a minimum version has been added. 6007 6008 The parameter position changed. Due to limited usage 6009 and requiring 1.15, it turns out to be backward compatible. 6010 6011 There is no functional change to how docs are build. 6012 6013 Signed-off-by: Gaetan Nadon <memsize@videotron.ca> 6014 6015commit e659683ad51ecc26c989fbdefdfe20f83af2c5a5 6016Author: Gaetan Nadon <memsize@videotron.ca> 6017Date: Wed Jun 22 11:48:49 2011 -0400 6018 6019 Remove unused xmlrules.in in specs, now in /nls 6020 6021 The specs dir has been converted to docbook.am 6022 6023 Signed-off-by: Gaetan Nadon <memsize@videotron.ca> 6024 6025commit 9992092609bd83a0db778e9a9ac1e879d445e637 6026Author: Gaetan Nadon <memsize@videotron.ca> 6027Date: Thu Mar 31 10:23:22 2011 -0400 6028 6029 nls: move xmlrules.in from specs to nls 6030 6031 It is no longer used in the specs dir. 6032 Remove html from CLEANFILES as it breaks. Make do not clean directories 6033 Remove SUFFIXES as pattern rules are used rather than suffix rules. 6034 6035 Other improvements are possible, the first priority is to move it out 6036 of the specs dir. 6037 6038 Acked-by: Peter Hutterer <peter.hutterer@who-t.net> 6039 Signed-off-by: Gaetan Nadon <memsize@videotron.ca> 6040 6041commit b370eeb0191b0e2a8bde2f03a442a8ca62e35d58 6042Author: Gaetan Nadon <memsize@videotron.ca> 6043Date: Sun Jun 5 16:27:36 2011 -0400 6044 6045 Install target dbs alongside generated documents 6046 6047 This matches a change in xorg-sgml-docs whereby the masterdb will look for 6048 the target dbs into the same location as the generated documents. 6049 6050 The target dbs are now installed alongside the generated documents. 6051 Previously they are installed in $prefix/sgml/X11/dbs alongside masterdb which 6052 has the potential of installing outside the package prefix and cause 6053 distcheck to fail when user does not have write permission in this package. 6054 6055 Requires XORG_CHECK_SGML_DOCTOOLS(1.8) which was released 2011-06-11 6056 6057commit 4e741654b7e0a283779b8b4af5bb32e05b7fc678 6058Author: Alan Coopersmith <alan.coopersmith@oracle.com> 6059Date: Tue Jun 7 18:41:30 2011 -0700 6060 6061 specs/libX11: Turn appendix references into links 6062 6063 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 6064 6065commit a3d1152bc4b300f59ea2f08925739aab1ebfbc4e 6066Author: Alan Coopersmith <alan.coopersmith@oracle.com> 6067Date: Tue Jun 7 18:37:41 2011 -0700 6068 6069 specs/libX11: Turn chapter references into links 6070 6071 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 6072 6073commit d0cc949dfe44a41a71f19e4fe6c7547bb3d9bdbe 6074Author: Alan Coopersmith <alan.coopersmith@oracle.com> 6075Date: Tue Jun 7 00:52:32 2011 -0700 6076 6077 specs/libX11: Turn many "see section ..." into links 6078 6079 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 6080 6081commit 02d4c08dead2f266809b3f93ec72377783423ac7 6082Author: Alan Coopersmith <alan.coopersmith@oracle.com> 6083Date: Sun Jun 5 22:50:37 2011 -0700 6084 6085 specs/libX11: Convert some header filenames to filename tags 6086 6087 perl -i -p -e 's{^<(.*\.h)>\ *}{<filename class="headerfile"><\1></filename>}' *.xml 6088 6089 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 6090 6091commit c51a011329afa6e5b9d2b285349c132683ecf9fb 6092Author: Matt Dew <marcoz@osource.org> 6093Date: Tue May 31 20:03:23 2011 -0600 6094 6095 Add id attributes to funcsynopsis to allow other docs to olink to them. 6096 6097 Signed-off-by: Matt Dew <marcoz@osource.org> 6098 Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com> 6099 Reviewed-by: Gaetan Nadon <memsize@videotron.ca> 6100 6101commit 6841260c8bb15404a0b4805bee3b0bdfec7176b3 6102Author: Alan Coopersmith <alan.coopersmith@oracle.com> 6103Date: Fri May 27 20:14:36 2011 -0700 6104 6105 Bug 37624 - parameter x is missing from synopsis of XDrawString in libX11.html 6106 6107 https://bugs.freedesktop.org/show_bug.cgi?id=37624 6108 6109 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 6110 6111commit 205af6a4e557c62a6395feadc1c89f4a9fe1713b 6112Author: Matt Dew <marcoz@osource.org> 6113Date: Sat May 21 00:23:06 2011 -0600 6114 6115 Add id's to functions, to make clickable links. 6116 6117 Signed-off-by: Matt Dew <marcoz@osource.org> 6118 Reviewed-by: Gaetan Nadon <memsize@videotron.ca> 6119 6120commit 5c06bc594473f6ab234724cd90db32e7b57fe811 6121Author: Alan Coopersmith <alan.coopersmith@oracle.com> 6122Date: Fri May 20 15:38:08 2011 -0700 6123 6124 libX11 spec: fix monospaced column alignment after deligaturization 6125 6126 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 6127 6128commit ef0019c714c273cb9b4ad3eba52d0b905109826b 6129Author: James Cloos <cloos@jhcloos.com> 6130Date: Fri May 20 15:51:46 2011 -0400 6131 6132 Expand latin ligatures out to their NFKC equivalents. 6133 6134 Ligatures should be done by the typesetting system. 6135 Manuscripts should not bother with them. 6136 6137 Signed-off-by: James Cloos <cloos@jhcloos.com> 6138 Reviewed-by: Keith Packard <keithp@keithp.com> 6139 6140commit 761b8aa0c9b3c58c478ac5ea1b3aaafadcfc1325 6141Author: Daniel Stone <daniel@fooishbar.org> 6142Date: Thu May 12 16:21:50 2011 +0200 6143 6144 XCB: Add more friendly error messages for common asserts 6145 6146 This patch adds more friendly error messages for three common classes of 6147 assertion: 6148 - missed sequence numbers due to being griefed by another thread 6149 - unknown requests in queue due to being griefed by another thread 6150 - extensions dequeuing too much or too little reply data 6151 6152 It adds error messages offering advice (e.g. call XInitThreads() first) 6153 on stderr, but still generates actual assertions. Hopefully this means 6154 it's a little more Googleable and a little less frightening. 6155 6156 Signed-off-by: Daniel Stone <daniel@fooishbar.org> 6157 Reviewed-by: Peter Hutterer <peter.hutterer@who-t.net> 6158 6159commit 159bf292477048b9a2f074735afc516f52c93d80 6160Author: Gaetan Nadon <memsize@videotron.ca> 6161Date: Thu May 19 20:22:11 2011 -0400 6162 6163 Remove misplaced hyphens in libX11 DocBook/XML #37364 6164 6165 Reported-by: Christopher Yeleighton <giecrilj@stegny.2a.pl> 6166 Reviewed-by: Peter Hutterer <peter.hutterer@who-t.net> 6167 Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com> 6168 Signed-off-by: Gaetan Nadon <memsize@videotron.ca> 6169 6170commit 0ee6d8247d397500ae183ef180b6ff21bceefa1c 6171Author: Alan Coopersmith <alan.coopersmith@oracle.com> 6172Date: Tue May 17 20:49:59 2011 -0700 6173 6174 Fix man page and comment references to use XFreeModifiermap (lowercase map) 6175 6176 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 6177 6178commit 3275ec4ca8790d571b6a1902367ca5f68a2dc5fd 6179Author: Alan Coopersmith <alan.coopersmith@oracle.com> 6180Date: Tue May 17 20:30:54 2011 -0700 6181 6182 XKB man pages: Fix coordinantes typo in multiple pages 6183 6184 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 6185 6186commit ca33a80606cd68e4572fa49ed6aaa1d1fc31a47f 6187Author: Alan Coopersmith <alan.coopersmith@oracle.com> 6188Date: Tue May 17 16:27:32 2011 -0700 6189 6190 DisplayOfCCC.man: Fix typo "ClientWhitePointOfCC" -> "ClientWhitePointOfCCC" 6191 6192 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 6193 6194commit ae39d82b01359b07dd1fe092d867f79ea95a5438 6195Author: Jeremy Huddleston <jeremyhu@apple.com> 6196Date: Sun May 8 09:08:07 2011 -0700 6197 6198 Silence clang static analysis warnings for SetReqLen 6199 6200 This provides a simplified version of the SetReqLen macro when using clang for 6201 static analysis. Prior to this change, we would see many Idempotent operation 6202 warnings inside this macro due to the common case of calling with arg2 and 6203 arg3 being the same variable. This has no effect on code produced during 6204 compilation, but it silences a number of false positives in static analysis. 6205 6206 XIPassiveGrab.c:170:5: warning: Assigned value is always the same as the existing value 6207 SetReqLen(req, num_modifiers, num_modifiers); 6208 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 6209 In file included from XIPassiveGrab.c:26: 6210 .../include/X11/Xlibint.h:580:8: note: instantiated from: 6211 n = badlen; \ 6212 ^ 6213 6214 Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com> 6215 6216commit 130af2bc02090ee2526adb2f9803fc07019b8f1f 6217Author: Jeremy Huddleston <jeremyhu@apple.com> 6218Date: Wed May 4 15:34:31 2011 -0700 6219 6220 XKB: XkbComputeSectionBounds: Check correct bounds in default switch-case 6221 6222 XKBGeom.c:191:25: warning: Access to field 'x1' results in a dereference of a null pointer (loaded from variable 'rbounds') 6223 _XkbCheckBounds(bounds,rbounds->x1,rbounds->y1); 6224 ^~~~~~~ 6225 6226 Found-by: clang static analyzer 6227 Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com> 6228 Reviewed-by: Peter Hutterer <peter.hutterer@who-t.net> 6229 6230commit c987ef04bea345d5810e60cf6c53b747ddbe910e 6231Author: Jeremy Huddleston <jeremyhu@apple.com> 6232Date: Wed May 4 15:31:17 2011 -0700 6233 6234 Revert "XKB: Avoid a possible NULL dereference" 6235 6236 Sorry for the noise. I accidentally pushed and didn't mean to. =( 6237 6238 This reverts commit 4024091678ea07e0d898b798df9b29f3bf68eb08. 6239 6240commit 46d04bc4e7ff6c86385002c929d8eb0310f737a8 6241Author: Jeremy Huddleston <jeremyhu@apple.com> 6242Date: Wed May 4 11:35:31 2011 -0700 6243 6244 Dead code removal 6245 6246 XKBGeom.c:118:27: warning: Assigned value is always the same as the existing value 6247 for (key=row->keys,pos=k=0;k<row->num_keys;k++,key++) { 6248 ~~~^~~~ 6249 XKBGeom.c:115:5: warning: Value stored to 'pos' is never read 6250 pos= 0; 6251 ^ ~ 6252 6253 Found-by: clang static analyzer 6254 Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com> 6255 6256commit 4024091678ea07e0d898b798df9b29f3bf68eb08 6257Author: Jeremy Huddleston <jeremyhu@apple.com> 6258Date: Wed May 4 11:34:53 2011 -0700 6259 6260 XKB: Avoid a possible NULL dereference 6261 6262 XKBGeom.c:191:25: warning: Access to field 'x1' results in a dereference of a null pointer (loaded from variable 'rbounds') 6263 _XkbCheckBounds(bounds,rbounds->x1,rbounds->y1); 6264 ^~~~~~~ 6265 6266 Found-by: clang static analyzer 6267 Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com> 6268 6269commit 626e5e34be55b7cf734d745bd40a7ee3359029f8 6270Author: Jeremy Huddleston <jeremyhu@apple.com> 6271Date: Wed May 4 11:21:41 2011 -0700 6272 6273 Annotate _XIOError as _X_NORETURN 6274 6275 Found-by: clang static analyzer 6276 Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com> 6277 6278commit d3d7896408b435ab42656398839ff4351a37724d 6279Author: Jeremy Huddleston <jeremyhu@apple.com> 6280Date: Tue May 3 09:32:53 2011 -0700 6281 6282 clang analyzer: Don't warn about Xmalloc(0) 6283 6284 This will prevent a number of false positives in where clang's 6285 static analysis reports about calls to malloc(0). 6286 6287 Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com> 6288 6289commit 393921cf2188b2b0713cc157effaf17d0abab783 6290Author: Alan Coopersmith <alan.coopersmith@oracle.com> 6291Date: Thu Apr 21 16:21:04 2011 -0700 6292 6293 Delete special case code to append "/sparcv9" to i18n module path 6294 6295 Was triggered by defined(__sparcv9) so only built on Solaris SPARC 64-bit. 6296 Inconsistent with all other platforms, and a bit overcomplicated. 6297 6298 Should anyone need to continue using that path, simply build with 6299 a #define POSTLOCALELIBDIR "sparcv9" to get the same result. 6300 6301 Fixes Solaris bug 7038737: 6302 sparcv9 Xlib looking in wrong path for i18n loadable modules 6303 6304 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 6305 Reviewed-by: Daniel Stone <daniel@fooishbar.org> 6306 6307commit b9ff9cfd5c56ae6d52c6503f7019756d9de29557 6308Author: Alan Coopersmith <alan.coopersmith@oracle.com> 6309Date: Thu Apr 14 13:47:12 2011 -0700 6310 6311 specs/libX11: Fix XOpenDisplay() prototype in chapter 2 [bug 36244] 6312 6313 Was incorrectly showing AllPlanes() instead when describing XOpenDisplay() 6314 6315 https://bugs.freedesktop.org/show_bug.cgi?id=36244 6316 6317 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 6318 6319commit b850adbdebcf500c659f85285d4d7374e15857f5 6320Author: Alan Coopersmith <alan.coopersmith@oracle.com> 6321Date: Tue Apr 12 22:30:45 2011 -0700 6322 6323 Convert malloc(strlen()); strcpy() sets to strdup 6324 6325 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 6326 Reviewed-by: Jeremy Huddleston <jeremyhu@apple.com> 6327 6328commit 09194042d3dc44a463add1f7c122a68ffd5ef0bf 6329Author: Alan Coopersmith <alan.coopersmith@oracle.com> 6330Date: Tue Apr 12 21:27:45 2011 -0700 6331 6332 Replace Xmalloc+bzero pairs with Xcalloc calls 6333 6334 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 6335 Reviewed-by: Jeremy Huddleston <jeremyhu@apple.com> 6336 6337commit ac1e2bff7121987fd768500a11d428d9fb9447c5 6338Author: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com> 6339Date: Fri Mar 25 14:47:35 2011 +0200 6340 6341 om: Fix memory leaks on get_font_name error paths. 6342 6343 While at it, remove unneeded check for NULL before Xfree. 6344 6345 Signed-off-by: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com> 6346 Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com> 6347 6348commit 7c362e275c93c92b4e68fe862e73ee36665de703 6349Author: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com> 6350Date: Wed Mar 30 15:06:10 2011 +0300 6351 6352 xcms: Fix memory leaks on LINEAR_RGB_InitSCCData error path. 6353 6354 pScreenData is replaced when building per visual intensity tables. If 6355 malloc failed the old value of pScreenData (stored also in 6356 pScreenDefaultData) was being leaked. Also, property_return wasn't 6357 free'd in that case. 6358 6359 Signed-off-by: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com> 6360 Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com> 6361 6362commit 5c810e2ac233e00f361549bafb9b59e8a9e05eff 6363Author: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com> 6364Date: Wed Mar 30 15:19:28 2011 +0300 6365 6366 xcms: Fix error on LINEAR_RGB_InitSCCData error path. 6367 6368 Due to what looks like a copy & paste error, pScreenData->pBlueTbl would 6369 be accessed after being free'd. 6370 6371 Signed-off-by: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com> 6372 Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com> 6373 6374commit d749948f9492fd9b61c74655a08e32c595e0e3a5 6375Author: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com> 6376Date: Fri Mar 25 16:06:15 2011 +0200 6377 6378 om: Fix potential memory leak in init_om. 6379 6380 Signed-off-by: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com> 6381 Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com> 6382 6383commit d0749d6abdf0fd4d8b4e59b02dad8ccda3f10995 6384Author: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com> 6385Date: Thu Mar 24 20:40:41 2011 +0200 6386 6387 om: Fix memory leak on read_EncodingInfo error path. 6388 6389 Signed-off-by: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com> 6390 Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com> 6391 6392commit 4b2e8d00f5b6969c14003ee8eb258b9f0e4dd7c3 6393Author: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com> 6394Date: Thu Mar 24 19:55:33 2011 +0200 6395 6396 Fix memory leaks on _XimCbDispatch error path. 6397 6398 Signed-off-by: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com> 6399 Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com> 6400 6401commit 46e6c78b1a89e4774e0f7e0f4d6d0fd060c3897e 6402Author: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com> 6403Date: Thu Mar 24 19:52:05 2011 +0200 6404 6405 Fix memory leak on _XimCommitRecv error path. 6406 6407 Signed-off-by: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com> 6408 Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com> 6409 6410commit 0ace642a2d47265f01450bfa2b2fd48eb6956a83 6411Author: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com> 6412Date: Thu Mar 24 19:48:44 2011 +0200 6413 6414 Fix memory leaks on _XimWriteCachedDefaultTree error paths. 6415 6416 Signed-off-by: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com> 6417 Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com> 6418 6419commit e29be94edbb58b3b8dab545377a710d1f73b61e0 6420Author: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com> 6421Date: Thu Mar 24 19:42:36 2011 +0200 6422 6423 Fix memory leaks on _XimGetAttributeID error paths. 6424 6425 Signed-off-by: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com> 6426 Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com> 6427 6428commit d144a50512466766f55ce61e3884925334b08f0d 6429Author: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com> 6430Date: Thu Mar 24 19:36:56 2011 +0200 6431 6432 Fix memory leaks on _XimProtoCreateIC error paths. 6433 6434 Signed-off-by: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com> 6435 Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com> 6436 6437commit 6a452f7a98499508f753cb8a7c3f08bcbec736b9 6438Author: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com> 6439Date: Thu Mar 24 16:24:29 2011 +0200 6440 6441 Fix leaks in _XimEncodingNegotiation error paths. 6442 6443 name_ptr and detail_ptr weren't free'd in some cases before returning 6444 False. 6445 6446 Signed-off-by: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com> 6447 Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com> 6448 6449commit 396e5a452a59c1f121220ba72167b720a863b30f 6450Author: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com> 6451Date: Thu Mar 24 14:17:44 2011 +0200 6452 6453 FSWrap: fix potential leak in copy_string_list 6454 6455 If list_count is 0, dst would be allocated and leaked. 6456 6457 Signed-off-by: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com> 6458 Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com> 6459 6460commit 1a944260182bb552b954d69f6355c2760d4415df 6461Author: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com> 6462Date: Wed Mar 23 14:36:22 2011 +0200 6463 6464 Fix memory leak with broken bitmap files in XReadBitmapFileData 6465 6466 Bitmap file data is read looping through the lines in the input file. If 6467 there is extra data after the bitmap, these lines will be processed and 6468 if this data represents another bitmap it will replace the one read 6469 before causing the memory allocated for bits to leak. 6470 6471 This changes the code to stop processing the file once a bitmap was 6472 read. 6473 6474 Signed-off-by: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com> 6475 Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com> 6476 6477commit c1c91e9a221a0e762d96cc12a3f189d6e59f4865 6478Author: Alan Coopersmith <alan.coopersmith@oracle.com> 6479Date: Tue Apr 12 20:50:42 2011 -0700 6480 6481 Fix "attrinute" typo in comments in ximcp 6482 6483 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 6484 6485commit 7103b83a88edb9c93acfa68f3b556595b087baff 6486Author: Alan Coopersmith <alan.coopersmith@oracle.com> 6487Date: Fri Apr 8 21:36:11 2011 -0700 6488 6489 Make doc install subdirectories more like the pre-docbook.am paths 6490 6491 Haven't restored the "specs" path in the install path, but have restored 6492 libX11 & i18n subdirectories in the path for better logical grouping. 6493 6494 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 6495 Reviewed-by: Gaetan Nadon <memsize@videotron.ca> 6496 6497commit 9a1ae7a90f815a737a942e42d5eb1ffff400977b 6498Author: Alan Coopersmith <alan.coopersmith@oracle.com> 6499Date: Fri Apr 8 13:24:28 2011 -0700 6500 6501 Install xml versions of specs even if HAVE_XMLTO is false 6502 6503 Moves HAVE_XMLTO check into docbook.am, more closely matches behaviour 6504 from before docbook.am changes (commit e8c76407d2f6e3) 6505 6506 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 6507 Reviewed-by: Gaetan Nadon <memsize@videotron.ca> 6508 6509commit a0ad0d5c99023bb9a8ce3944dbc3267f5265721e 6510Author: Alan Coopersmith <alan.coopersmith@oracle.com> 6511Date: Tue Apr 5 13:29:04 2011 -0700 6512 6513 libX11 1.4.3 6514 6515 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 6516 6517commit e8c76407d2f6e3b11babdb84426e43e780c859c3 6518Author: Gaetan Nadon <memsize@videotron.ca> 6519Date: Fri Feb 25 09:23:54 2011 -0500 6520 6521 Documentation: add Docbook external references support 6522 6523 When writing technical documentation, it is often necessary to cross 6524 reference to other information. When that other information is not in the 6525 current document, additional support is needed, namely <olink>. 6526 6527 A new feature with version 1.7 of xorg-sgml-doctools adds references to 6528 other documents within or outside this package. 6529 6530 This patch adds technical support for this feature but does not change 6531 the content of the documentation as seen by the end user. 6532 6533 Each book or article must generate a database containing the href 6534 of sections that can be referred to from another document. This database 6535 is installed in DATAROOTDIR/sgml/X11/dbs. There is a requirement that 6536 the value of DATAROOTDIR for xorg-sgml-doctools and for the package 6537 documentation is the same. This forms a virtual document tree. 6538 6539 This database is consulted by other documents while they are being generated 6540 in order to fulfill the missing information for linking. 6541 Refer to the xorg-sgml-doctools for further technical information. 6542 6543 Co-authored-by: Matt Dew <marcoz@osource.org> 6544 6545 Signed-off-by: Gaetan Nadon <memsize@videotron.ca> 6546 6547commit 25eb76b3d2726f2f1de759901971ae53b2539dc4 6548Author: Harshula Jayasuriya <harshula@gmail.com> 6549Date: Mon Mar 21 14:49:37 2011 +0000 6550 6551 Add #define XK_SINHALA 6552 6553 Add #define XK_SINHALA so that the Sinhala keysyms can be used by 6554 the lk xkb keymap. 6555 6556 Signed-off-by: Harshula Jayasuriya <harshula@gmail.com> 6557 Reviewed-by: Daniel Stone <daniel@fooishbar.org> 6558 6559commit db8b20b789112717ac0590b40f0b4dc2171797d0 6560Author: Jeremy Huddleston <jeremyhu@apple.com> 6561Date: Thu Mar 17 16:15:00 2011 -0700 6562 6563 configure.ac: Bump version to 1.4.2 6564 6565 Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com> 6566 6567commit 83e1ba59c48c79f8b0a7e7aa0b9c9cfd84fa403d 6568Author: Jamey Sharp <jamey@minilop.net> 6569Date: Tue Mar 15 16:48:07 2011 -0700 6570 6571 Call _XErrorFunction without holding the Display lock. 6572 6573 Historically, Xlib dropped the Display lock around the upcall to any 6574 user-supplied _XErrorFunction, but somewhere along the way I quit doing 6575 that if you built with XCB. The reasons are lost somewhere in the 6576 pre-git history of Xlib/XCB, and I can't now see any reason to hold the 6577 lock. 6578 6579 The documentation for XSetErrorHandler still applies though: 6580 6581 Because this condition is not assumed to be fatal, it is acceptable 6582 for your error handler to return; the returned value is ignored. 6583 However, the error handler should not call any functions (directly 6584 or indirectly) on the display that will generate protocol requests 6585 or that will look for input events. 6586 6587 So while you are now once again permitted to re-enter Xlib from the 6588 error handler, you're only allowed to call non-protocol functions. 6589 6590 Signed-off-by: Jamey Sharp <jamey@minilop.net> 6591 6592commit fd85aca7a616c595fc17b2520f84316a11e8906f 6593Author: Jamey Sharp <jamey@minilop.net> 6594Date: Mon Mar 14 14:45:35 2011 -0700 6595 6596 Ignore user locks after sleeping in _XReply and _XReadEvents. 6597 6598 This bug appears as a hang in applications that wait for replies from 6599 multiple threads, where one such thread has taken a user lock using 6600 XLockDisplay. 6601 6602 Prior to this fix, the code could deadlock in this way: If thread 1 goes 6603 to sleep waiting for a reply, and then thread 2 takes a user lock and 6604 waits for a reply, then thread 2 will wait for thread 1 to process its 6605 reply (because responses must be processed in order), but thread 1 will 6606 wait for thread 2 to drop its user lock. 6607 6608 Fixed by making thread 1 not wait for thread 2 to drop its user lock. 6609 This makes the semantics of user locks hard to define, but they were 6610 already hard to define. The new behavior appears to be consistent with 6611 the way Xlib worked historically, anyway. 6612 6613 Fixes: http://lists.freedesktop.org/archives/xcb/2011-March/006802.html 6614 6615 There was a similar potential for deadlock in _XReadEvents, fixed the 6616 same way, with the same caveats about user-lock semantics. 6617 6618 Signed-off-by: Jamey Sharp <jamey@minilop.net> 6619 6620commit 690f8bffd48a4e7e74298360ddd0431dc95dcd3f 6621Author: Erkki Seppälä <erkki.seppala@vincit.fi> 6622Date: Tue Jan 18 15:58:20 2011 +0200 6623 6624 xkb: XkbPropertyPtr determined allocation success from wrong variables 6625 6626 Cannot reach dead statement "return NULL;" 6627 6628 Check for the NULLness of prop->name and prop->value instead of 6629 name and value, which was checked earlier anyway. Decided against 6630 using strdup due to curious memory allocation functions and the 6631 rest of the xkb not using it either. 6632 6633 Signed-off-by: Erkki Seppälä <erkki.seppala@vincit.fi> 6634 Reviewed-by: Alan Coopersmith <alan.coopersmith at oracle.com> 6635 6636commit 6a4d027284e7bb5dd458157947bbb1ff580ad071 6637Author: Erkki Seppälä <erkki.seppala@vincit.fi> 6638Date: Mon Jan 10 16:37:22 2011 +0200 6639 6640 keyBind: Use Xcalloc to initialize allocated _XKeytrans 6641 6642 Using uninitialized value "p->modifiers" 6643 6644 Small fix by using Xcalloc instead of Xmalloc 6645 6646 Signed-off-by: Erkki Seppälä <erkki.seppala@vincit.fi> 6647 Reviewed-by: Alan Coopersmith <alan.coopersmith at oracle.com> 6648 6649commit b993d73bb3214ecc24646f5427c8003b816c6921 6650Author: Erkki Seppälä <erkki.seppala@vincit.fi> 6651Date: Mon Jan 10 16:22:45 2011 +0200 6652 6653 im/ximcp: release modifiermap before returning 6654 6655 Variable "map" goes out of scope 6656 6657 Release modifiermap before returning. Reordered code to call 6658 XGetModifierMapping after the first return from the function. 6659 6660 Signed-off-by: Erkki Seppälä <erkki.seppala@vincit.fi> 6661 Reviewed-by: Dirk Wallenstein <halsmit@t-online.de> 6662 6663commit 807a7fc0354f2212dfa5ff1f9e4ede56d8e69ef4 6664Author: Gaetan Nadon <memsize@videotron.ca> 6665Date: Fri Feb 25 09:23:54 2011 -0500 6666 6667 Docbook: change the book id to match the xml file basename 6668 6669 This is required for the up-coming external references support. 6670 6671 Signed-off-by: Gaetan Nadon <memsize@videotron.ca> 6672 6673commit 40812b53ff5fe548f6eaf43ba4c8781cb43dab43 6674Author: Samuel Thibault <samuel.thibault@ens-lyon.org> 6675Date: Mon Feb 21 21:54:17 2011 +0100 6676 6677 Make the Local XIM request key releases for braille 6678 6679 Braille chords management needs key release events. We need to explicitly 6680 request then, else GTK would not pass them throught XFilterEvent and braille 6681 wouldn't work. 6682 6683 Signed-off-by: Samuel Thibault <samuel.thibault@ens-lyon.org> 6684 6685commit c97c42c49cd5095462abecdf908b416fb0b540b6 6686Author: Samuel Thibault <samuel.thibault@ens-lyon.org> 6687Date: Mon Feb 21 17:27:38 2011 +0100 6688 6689 Match braille patterns with compose tree 6690 6691 Braille patterns should also be usable in Compose. This combines the 6692 implementation of braille chords and compose tree: only emit the braille 6693 pattern if it can not be found in the compose tree, if any. 6694 6695 Signed-off-by: Samuel Thibault <samuel.thibault@ens-lyon.org> 6696 6697commit 0c6ca565d7c8a47ef3ea823569a9ca5298a5307d 6698Author: Samuel Thibault <samuel.thibault@ens-lyon.org> 6699Date: Mon Feb 21 15:56:54 2011 +0100 6700 6701 Fix status reporting for braille patterns 6702 6703 _XimLocalMbLookupString can return a braille keysym even if _Xlcwctomb can't 6704 convert to the current MB charset. 6705 _XimLocalUtf8LookupString needs to set the braille keysym and status too. 6706 6707 Signed-off-by: Samuel Thibault <samuel.thibault@ens-lyon.org> 6708 6709commit 993abe751f4141f54d8d28b8b73588a1c9085970 6710Author: Alan Coopersmith <alan.coopersmith@oracle.com> 6711Date: Fri Feb 11 14:49:17 2011 -0800 6712 6713 Clean up memory when first XCreateRegion succeeds and second fails 6714 6715 Error: Memory leak (CWE 401) 6716 Memory leak of pointer 's' allocated with XCreateRegion() 6717 at line 387 of /export/alanc/X.Org/sx86-gcc/lib/libX11/src/Region.c in function 'XShrinkRegion'. 6718 's' allocated at line 387 with XCreateRegion(). 6719 s leaks when s != 0 at line 387. 6720 Error: Memory leak (CWE 401) 6721 Memory leak of pointer 'tra' allocated with XCreateRegion() 6722 at line 1452 of /export/alanc/X.Org/sx86-gcc/lib/libX11/src/Region.c in function 'XXorRegion'. 6723 'tra' allocated at line 1451 with XCreateRegion(). 6724 tra leaks when tra != 0 at line 1451. 6725 6726 [ This bug was found by the Parfait 0.3.6 bug checking tool. 6727 For more information see http://labs.oracle.com/projects/parfait/ ] 6728 6729 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 6730 6731commit 6ac417cea1136a3617f5e40f4b106aaa3f48d6c2 6732Author: Alan Coopersmith <alan.coopersmith@oracle.com> 6733Date: Fri Feb 11 14:20:24 2011 -0800 6734 6735 ximcp: Prevent memory leak & double free if multiple %L in string 6736 6737 In the highly unlikely event that TransFileName was passed a path 6738 containing multiple %L entries, for each entry it would call 6739 _XlcFileName, leaking the previous results, and then for each entry it 6740 would copy from that pointer and free it, resulting in invalid pointers 6741 & possible double frees for each use after the first one freed it. 6742 6743 Error: Use after free (CWE 416) 6744 Use after free of pointer 'lcCompose' 6745 at line 358 of modules/im/ximcp/imLcPrs.c in function 'TransFileName'. 6746 Previously freed at line 360 with free. 6747 Error: Use after free (CWE 416) 6748 Use after free of pointer 'lcCompose' 6749 at line 359 of modules/im/ximcp/imLcPrs.c in function 'TransFileName'. 6750 Previously freed at line 360 with free. 6751 Error: Double free (CWE 415) 6752 Double free of pointer 'lcCompose' 6753 at line 360 of modules/im/ximcp/imLcPrs.c in function 'TransFileName'. 6754 Previously freed at line 360 with free. 6755 6756 [ This bug was found by the Parfait 0.3.6 bug checking tool. 6757 For more information see http://labs.oracle.com/projects/parfait/ ] 6758 6759 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 6760 6761commit 502d414118c97d35a44f8e295709682022876331 6762Author: Erkki Seppälä <erkki.seppala@vincit.fi> 6763Date: Thu Feb 3 17:08:57 2011 +0200 6764 6765 xcms/cmsProp: don't deal with uninitialized values, fail instead 6766 6767 Properly handle the return value of XGetWindowProperty by considering 6768 if after the loop as well. 6769 6770 Using freed pointer "prop_ret" 6771 6772 There were numerous things wrong in how this function interacted with 6773 XGetWindowProperty. 6774 6775 None of the local variables were initialized and remained that way if 6776 the call to XGetWindowProperty returned 1 (not Succeed). That doesn't 6777 result in after_ret being initialized in which case if it happens to 6778 be 0, the loop was exited. In that case format_ret and nitems_ret were 6779 uninitialized and the function might return with success (but with 6780 uninitialized pointer in prop_ret) or XcmsFailure. 6781 6782 As the buffer enlarging code was called only when XGetWindowProperty 6783 failed (returned not Success), after_ret would not have been 6784 initialized. It would have been initialized only if the 6785 XGetWindowProperty has returned Success earlier, but in that case the 6786 code fragment would not have been reached. 6787 6788 This patch alters the function to return XcmsFailure if the call to 6789 XGetWindowProperty fails. 6790 6791 Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com> 6792 Reviewed-by: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com> 6793 Reviewed-by: Rami Ylimäki <rami.ylimaki@vincit.fi> 6794 Signed-off-by: Erkki Seppälä <erkki.seppala@vincit.fi> 6795 6796commit c37e278993b9e5b3d7025ef4c434373a011996ec 6797Author: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com> 6798Date: Mon Jan 31 14:02:07 2011 +0200 6799 6800 xcms/LRGB: don't double-free property_return 6801 6802 property_return was free'd before and in the case the conditional is true, 6803 the call to XcmsGetProperty failed which means that property_return wasn't 6804 set so there is no need to free it again. 6805 6806 Double free of pointer "property_return" in call to "free" 6807 6808 Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com> 6809 Reviewed-by: Erkki Seppälä <erkki.seppala@vincit.fi> 6810 Signed-off-by: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com> 6811 6812commit 50f4107811249806718a100f9d34f996c58e5e25 6813Author: Alan Coopersmith <alan.coopersmith@oracle.com> 6814Date: Wed Feb 2 08:58:45 2011 -0800 6815 6816 Xrm.c: ReadInFile: refactor fstat error handling 6817 6818 We can simplify the fstat failure case now that the GetFileSize macro 6819 has been expanded inline. 6820 6821 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 6822 Reviewed-by: Julien Cristau <jcristau@debian.org> 6823 6824commit 5e9c40fcb5da43c9fdacf12967d090bf202daf2a 6825Author: Alan Coopersmith <alan.coopersmith@oracle.com> 6826Date: Wed Feb 2 08:56:00 2011 -0800 6827 6828 Expand GetSizeOfFile() macro at the one place it's called 6829 6830 Removes XrmI.h header that only contained this single macro 6831 6832 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 6833 Reviewed-by: Julien Cristau <jcristau@debian.org> 6834 6835commit 450e17422c0e374d25c643f343ea268cec68da38 6836Author: Erkki Seppälä <erkki.seppala@vincit.fi> 6837Date: Mon Jan 31 14:01:57 2011 +0200 6838 6839 XlibInt: Use strncpy+zero termination instead of strcpy to enforce buffer size 6840 6841 Possible overrun of 8192 byte fixed size buffer "buffer" by copying 6842 "ext->name" without length checking 6843 6844 Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com> 6845 Reviewed-by: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com> 6846 Signed-off-by: Erkki Seppälä <erkki.seppala@vincit.fi> 6847 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 6848 6849commit e2566e43b02d2d7b7c1c3bb7db7c5ae81c1245fa 6850Author: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com> 6851Date: Mon Jan 31 14:02:13 2011 +0200 6852 6853 lc/def/lcDefConv: Use Xcalloc to avoid use of uninitialized memory 6854 6855 Fixed by zero'ing conv on allocation with Xcalloc. Then 6856 close_converter works properly. 6857 6858 Using uninitialized value "conv->state" in call to function "close_converter" 6859 6860 Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com> 6861 Reviewed-by: Erkki Seppälä <erkki.seppala@vincit.fi> 6862 Signed-off-by: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com> 6863 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 6864 6865commit 03f81ad8fb9783986cf9b17661dd31e95c396681 6866Author: Erkki Seppälä <erkki.seppala@vincit.fi> 6867Date: Mon Jan 31 14:02:16 2011 +0200 6868 6869 xlibi18n/lcFile: Removed superfluous check for NULL target_dir 6870 6871 The situation is already handled before this code. 6872 6873 Cannot reach dead expression "0U" inside statement "if (1U + (target_dir ? strl..." 6874 6875 Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com> 6876 Reviewed-by: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com> 6877 Signed-off-by: Erkki Seppälä <erkki.seppala@vincit.fi> 6878 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 6879 6880commit 1346b9ea3b3882201ff8c3ee462ff4b0d4edf639 6881Author: Erkki Seppälä <erkki.seppala@vincit.fi> 6882Date: Mon Jan 31 14:02:15 2011 +0200 6883 6884 ximcp/imLckup: Handle negative return value from _Xlcwctomb 6885 6886 Fixed by negative value to memcpy by checking for the negative return 6887 value of _Xlcwctomb and returning 0/XLookupNone in that case. 6888 6889 a negative value was passed to memcpy 6890 6891 Unfortunately the other return values for *status don't fit into the 6892 error (which appears to indicate some internal error or running out of 6893 memory). The other valid status codes are XBufferOverflow, 6894 XLookupNone, XLookupChars, XLookupKeySym, and XLookupBoth. Each of 6895 these has a specific meaning attached. 6896 6897 Reviewed-by: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com> 6898 Signed-off-by: Erkki Seppälä <erkki.seppala@vincit.fi> 6899 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 6900 6901commit 79a5c86e020f08cc108184298a72e2777036de39 6902Author: Erkki Seppälä <erkki.seppala@vincit.fi> 6903Date: Mon Jan 31 14:02:14 2011 +0200 6904 6905 ximcp/imTrX: Handle failing XGetWindowProperty 6906 6907 Checked return value of XGetWindowProperty and return false if it fails. 6908 6909 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 6910 6911 Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com> 6912 Signed-off-by: Erkki Seppälä <erkki.seppala@vincit.fi> 6913 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 6914 6915commit 2ace8d5c89c8f6d9f42b4068f4b508ca28f0ced1 6916Author: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com> 6917Date: Mon Jan 31 14:02:12 2011 +0200 6918 6919 XlibInt: info_list->watch_data was reallocated, but result was discarded 6920 6921 info_list->watch_data was being reallocated, but the return value of 6922 the reallocation was stored only into a local variable. This might 6923 cause some funky behavior and crashes. 6924 6925 Variable "wd_array" goes out of scope 6926 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)))" 6927 6928 Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com> 6929 Reviewed-by: Erkki Seppälä <erkki.seppala@vincit.fi> 6930 Signed-off-by: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com> 6931 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 6932 6933commit 2b16a7e683e355c9746290b2cee2fd0dd2bf342a 6934Author: Erkki Seppälä <erkki.seppala@vincit.fi> 6935Date: Mon Jan 31 14:02:10 2011 +0200 6936 6937 GetProp: Zero-initialized error so its resourceID field is initialized 6938 6939 Using uninitialized value "error.resourceID" in call to function "_XError" 6940 6941 Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com> 6942 Reviewed-by: Erkki Seppälä <erkki.seppala@vincit.fi> 6943 Signed-off-by: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com> 6944 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 6945 6946commit 85e9f38e016137f0ff2791eb0d092ab027382d2c 6947Author: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com> 6948Date: Tue Feb 1 11:07:25 2011 +0200 6949 6950 xcms/LRGB: Add a label for freeing property_return. 6951 6952 The rest of the code uses goto's to free memory allocated later 6953 and prevent memory leaks, but there were several paths were 6954 property_return was free'd just before a goto. 6955 6956 Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com> 6957 Signed-off-by: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com> 6958 Signed-off-by: Erkki Seppälä <erkki.seppala@vincit.fi> 6959 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 6960 6961commit 3161dc57d4e9b70f852f05e5e474455e121b06ab 6962Author: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com> 6963Date: Mon Jan 31 14:02:08 2011 +0200 6964 6965 xcms/LRGB: Fix potential resource leak. 6966 6967 property_return was not free'd if the allocation of pRedTbl failed. 6968 6969 Reviewed-by: Erkki Seppälä <erkki.seppala@vincit.fi> 6970 Signed-off-by: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com> 6971 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 6972 6973commit be3e6c205d94dedc1cdebf5d17b987f0f828377a 6974Author: Erkki Seppälä <erkki.seppala@vincit.fi> 6975Date: Mon Jan 31 14:02:06 2011 +0200 6976 6977 Xrm: Handle the extremely unlikely situation of fstat failing 6978 6979 Tracked variable "size" was passed to a negative sink. 6980 6981 Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com> 6982 Reviewed-by: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com> 6983 Signed-off-by: Erkki Seppälä <erkki.seppala@vincit.fi> 6984 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 6985 6986commit 3fae16c64d6ef76fd4a25a54c7f7de76596457db 6987Author: Erkki Seppälä <erkki.seppala@vincit.fi> 6988Date: Mon Jan 31 14:02:05 2011 +0200 6989 6990 Xrm: NEWTABLE had a memory leak after a memory allocation error 6991 6992 The NEWTABLE macro missed freeing its allocated memory on subsequent 6993 memory allocation errors. Added call to Xfree. 6994 6995 Variable "table" goes out of scope 6996 6997 Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com> 6998 Reviewed-by: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com> 6999 Signed-off-by: Erkki Seppälä <erkki.seppala@vincit.fi> 7000 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 7001 7002commit 7110ac653349a23c80c365f11f6270dc27c8975a 7003Author: Erkki Seppälä <erkki.seppala@vincit.fi> 7004Date: Mon Jan 31 14:02:03 2011 +0200 7005 7006 ImUtil: Handle a memory leak in one early return branch 7007 7008 Fixed memory leak by adding Xfree for image 7009 7010 Variable "image" goes out of scope 7011 7012 Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com> 7013 Reviewed-by: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com> 7014 Signed-off-by: Erkki Seppälä <erkki.seppala@vincit.fi> 7015 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 7016 7017commit d695f5da9f5b778e54b6987d9177048e32818c4d 7018Author: Erkki Seppälä <erkki.seppala@vincit.fi> 7019Date: Mon Jan 31 14:02:01 2011 +0200 7020 7021 ximcp/imRm: Handle leaking colormap_ret 7022 7023 Fixed memory leak by adding Xfree for colormap_ret 7024 7025 Variable "colormap_ret" goes out of scope 7026 7027 Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com> 7028 Reviewed-by: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com> 7029 Signed-off-by: Erkki Seppälä <erkki.seppala@vincit.fi> 7030 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 7031 7032commit f9eda19d08c1ea0973dfe0bc10a2519d6fd26cc7 7033Author: Erkki Seppälä <erkki.seppala@vincit.fi> 7034Date: Mon Jan 31 14:01:59 2011 +0200 7035 7036 ximcp/imRmAttr: Handle leaking missing_list 7037 7038 Fixed memory leak by adding Xfree and initializing missing_list with NULL 7039 7040 Variable "missing_list" goes out of scope 7041 7042 Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com> 7043 Reviewed-by: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com> 7044 Signed-off-by: Erkki Seppälä <erkki.seppala@vincit.fi> 7045 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 7046 7047commit 3183269e0979c9dbce9d55d9e03937897dc9fb3b 7048Author: Erkki Seppälä <erkki.seppala@vincit.fi> 7049Date: Mon Jan 31 14:01:58 2011 +0200 7050 7051 ximcp/imRmAttr: Handle leaking colormap_ret 7052 7053 XFree colormap_ret and initialize it when appropriate. 7054 7055 Variable "colormap_ret" goes out of scope 7056 7057 Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com> 7058 Signed-off-by: Erkki Seppälä <erkki.seppala@vincit.fi> 7059 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 7060 7061commit f66a032a937030f2d9baa81744d36dc585bb085c 7062Author: Erkki Seppälä <erkki.seppala@vincit.fi> 7063Date: Mon Jan 31 14:01:56 2011 +0200 7064 7065 xlibi18n/lcGeneric: Initialize uninitialized local variable 7066 7067 Using uninitialized value "new" 7068 7069 Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com> 7070 Reviewed-by: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com> 7071 Signed-off-by: Erkki Seppälä <erkki.seppala@vincit.fi> 7072 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 7073 7074commit d0266e06d38110ec908ca28379014eff743630b7 7075Author: Erkki Seppälä <erkki.seppala@vincit.fi> 7076Date: Mon Jan 31 14:01:54 2011 +0200 7077 7078 xcmx/cmxColNm: Removed unused assignments to pBuf (in two functions) 7079 7080 Pointer "pBuf" returned from "fgets(buf, 256, stream)" is never used 7081 7082 Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com> 7083 Reviewed-by: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com> 7084 Signed-off-by: Erkki Seppälä <erkki.seppala@vincit.fi> 7085 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 7086 7087commit cc686655d7bfdeab8b67e01a24bd452a2e9e3fcf 7088Author: Alan Coopersmith <alan.coopersmith@oracle.com> 7089Date: Tue Feb 1 12:30:56 2011 +0200 7090 7091 XDefaultOMIF.c: Fix memory leaks in get_font_name 7092 7093 Instead of copying the value returned by get_prop_name and then releasing it, 7094 directly use the return value of get_prop_name, which allocates memory for the 7095 name. 7096 7097 If get_prop_name returns NULL, continue on to XFreeFont to release the font 7098 before returning the NULL via the normal function return. 7099 7100 Reviewed-by: Erkki Seppälä <erkki.seppala@vincit.fi> 7101 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 7102 7103commit 95796351435d81eaef8166d49ba3a6e7b633d70a 7104Author: Gaetan Nadon <memsize@videotron.ca> 7105Date: Mon Jan 31 14:50:19 2011 -0500 7106 7107 config: comment, minor upgrade, quote and layout configure.ac 7108 7109 Group statements per section as per Autoconf standard layout 7110 Quote statements where appropriate. 7111 Autoconf recommends not using dnl instead of # for comments 7112 7113 Use AC_CONFIG_FILES to replace the deprecated AC_OUTPUT with parameters. 7114 Remove redundant AC_CANONICAL_HOST included in XORG_DEFAULT_OPTIONS 7115 7116 This helps automated maintenance and release activities. 7117 Details can be found in http://wiki.x.org/wiki/NewModuleGuidelines 7118 7119 Signed-off-by: Gaetan Nadon <memsize@videotron.ca> 7120 7121commit e994ab227ed28655565c3193e63733630105e7f9 7122Author: Erkki Seppälä <erkki.seppala@vincit.fi> 7123Date: Tue Jan 18 12:49:48 2011 +0200 7124 7125 Comparing array against NULL is not useful "&xkb->server->vmods != NULL" 7126 7127 Removed superfluous comparison. 7128 7129 Reviewed-by: Dirk Wallenstein <halsmit@t-online.de> 7130 Signed-off-by: Erkki Seppälä <erkki.seppala@vincit.fi> 7131 7132commit 4115f051e62f9b098efce691e070d44f09f30f1c 7133Author: Erkki Seppälä <erkki.seppala@vincit.fi> 7134Date: Wed Jan 12 15:51:11 2011 +0200 7135 7136 Variable "entry" tracked as NULL was dereferenced. 7137 7138 Check entry for non-nullness before dereferencing it 7139 7140 Reviewed-by: Dirk Wallenstein <halsmit@t-online.de> 7141 Reviewed-by: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com> 7142 Signed-off-by: Erkki Seppälä <erkki.seppala@vincit.fi> 7143 7144commit 0edb76d1d5fdca5a2543332699be2e72386dab24 7145Author: Erkki Seppälä <erkki.seppala@vincit.fi> 7146Date: Thu Jan 27 09:54:00 2011 +0200 7147 7148 Dereferencing possibly NULL "str" in call to function "memcpy" (Deref assumed on the basis of 'nonnull' parameter attribute.) 7149 7150 If _XkbGetReadBufferPtr returns NULL, goto BAILOUT 7151 7152 Reviewed-by: Dirk Wallenstein <halsmit@t-online.de> 7153 Reviewed-by: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com> 7154 Signed-off-by: Erkki Seppälä <erkki.seppala@vincit.fi> 7155 7156commit 59da8a211ef723909d0530c0331d541db8e63378 7157Author: Erkki Seppälä <erkki.seppala@vincit.fi> 7158Date: Mon Jan 10 16:17:47 2011 +0200 7159 7160 Using freed pointer "e" 7161 7162 Reordered code to first to do the comparison and then to release data 7163 7164 Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com> 7165 Reviewed-by: Ander Conselvan de Oliveira <ander.conselvan-de-oliveira@nokia.com> 7166 Signed-off-by: Erkki Seppälä <erkki.seppala@vincit.fi> 7167 7168commit 0f11c229f7099f7c5aeed4691b358dca151dac7d 7169Author: Matt Dew <marcoz@osource.org> 7170Date: Thu Jan 27 00:31:23 2011 -0700 7171 7172 Remove <literal> tags from compose-chart.pl so pdf building doesn't die on soft-hyphens. 7173 7174 Signed-off-by: Matt Dew <marcoz@osource.org> 7175 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 7176 7177commit ca00bb202f3afcdbbcb8c4cb50308c5dd03f2322 7178Author: Gaetan Nadon <memsize@videotron.ca> 7179Date: Fri Jan 28 16:07:07 2011 -0500 7180 7181 config: replace deprecated AC_HELP_STRING with AS_HELP_STRING 7182 7183 This silences an Automake warning. 7184 7185 Signed-off-by: Gaetan Nadon <memsize@videotron.ca> 7186 7187commit 8dac08c7515cb6f8a8f4d0a721713697eae755d8 7188Author: Gaetan Nadon <memsize@videotron.ca> 7189Date: Fri Jan 28 14:59:04 2011 -0500 7190 7191 config: remove unrequired AC_HEADER_STDC 7192 7193 Autoconf says: 7194 "This macro is obsolescent, as current systems have conforming 7195 header files. New programs need not use this macro". 7196 7197commit d4483375e37a72631d5821413cb75a423e990ffe 7198Author: Alan Coopersmith <alan.coopersmith@oracle.com> 7199Date: Tue Jan 18 19:37:02 2011 -0800 7200 7201 config: Use correct AC_CONFIG_HEADERS macro 7202 7203 Replaces obsolete AM_CONFIG_HEADER and undocumented AC_CONFIG_HEADER 7204 7205 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 7206 Reviewed-by: Gaetan Nadon <memsize@videotron.ca> 7207 Reviewed-by: Dan Nicholson <dbn.lists@gmail.com> 7208 7209commit c6405fe931f313a0d159bdad00244fc8aae12468 7210Author: Alan Coopersmith <alan.coopersmith@oracle.com> 7211Date: Sun Jan 16 11:55:23 2011 -0800 7212 7213 config: remove AC_PROG_CC as it overrides AC_PROG_C_C99 7214 7215 XORG_STRICT_OPTION from XORG_DEFAULT_OPTIONS calls 7216 AC_PROG_C_C99. This sets gcc with -std=gnu99. 7217 If AC_PROG_CC macro is called afterwards, it resets CC to gcc. 7218 7219 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 7220 Reviewed-by: Gaetan Nadon <memsize@videotron.ca> 7221 7222commit 17aa1f2305da0952ad594c7329d08aba21f13ac8 7223Author: Alan Coopersmith <alan.coopersmith@oracle.com> 7224Date: Sun Jan 16 11:40:59 2011 -0800 7225 7226 Update to xf86bigfontproto >= 1.2.0 header name 7227 7228 Clears compile-time warning of: 7229 "X11/extensions/xf86bigfstr.h", line 1: #warning: "xf86bigfstr.h is obsolete and may be removed in the future." 7230 "X11/extensions/xf86bigfstr.h", line 2: #warning: "include <X11/extensions/xf86bigfproto.h> for the protocol defines." 7231 7232 Requires xf86bigfontproto >= 1.2.0 if --disable-xf86bigfont is not 7233 passed to configure. 7234 7235 Also removes unnecessary AC_SUBST of BIGFONT_CFLAGS & BIGFONT_LIBS 7236 that PKG_CHECK_MODULES does automatically 7237 7238 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 7239 Reviewed-by: Julien Cristau <jcristau@debian.org> 7240 7241commit a9228fcc676aacf9a760dd94891c89f9bc82b20d 7242Author: Alan Coopersmith <alan.coopersmith@oracle.com> 7243Date: Tue Jan 11 17:55:22 2011 -0800 7244 7245 libX11 1.4.1 7246 7247 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 7248 7249commit 92fa96451af37a7a0f2592de07643fdaed7a9efd 7250Author: Pauli Nieminen <ext-pauli.nieminen@nokia.com> 7251Date: Mon Jan 3 12:25:28 2011 -0500 7252 7253 Initialize event type 7254 7255 If we receive unsupported event closing connection triggers valgrind 7256 error. 7257 7258 ==12017== Conditional jump or move depends on uninitialised value(s) 7259 ==12017== at 0x487D454: _XFreeDisplayStructure (OpenDis.c:607) 7260 ==12017== by 0x486857B: XCloseDisplay (ClDisplay.c:72) 7261 *snip* 7262 ==12017== Uninitialised value was created by a heap allocation 7263 ==12017== at 0x4834C48: malloc (vg_replace_malloc.c:236) 7264 ==12017== by 0x4894147: _XEnq (XlibInt.c:877) 7265 ==12017== by 0x4891BF3: handle_response (xcb_io.c:335) 7266 ==12017== by 0x4892263: _XReply (xcb_io.c:626) 7267 *snip* 7268 7269 Problem is that XFreeDisplaySturture is checking for qelt->event.type == 7270 GenericEvent while _XUnknownWireEvent doesn't store the type. 7271 7272 Reviewed-by: Adam Jackson <ajax@redhat.com> 7273 Reviewed-by: Peter Hutterer <peter.hutterer@who-t.net> 7274 Signed-off-by: Pauli Nieminen <ext-pauli.nieminen@nokia.com> 7275 7276commit fa9747b9d4443eef9b1687b8b1208801f5c585da 7277Author: Fernando Carrijo <fcarrijo.lists@gmail.com> 7278Date: Tue Dec 28 16:18:57 2010 -0500 7279 7280 specs: convert images from gif to svg format. 7281 7282 Signed-off-by: Gaetan Nadon <memsize@videotron.ca> 7283 7284commit 0012e2a4eaddc0840617b4758931ad976ca2eb7c 7285Author: Philipp Reh <sefi@s-e-f-i.de> 7286Date: Wed Dec 22 15:14:05 2010 +0000 7287 7288 Events: Store event cookie when dequeuing event 7289 7290 When we dequeue an event in XCheckTypedEvent or XCheckTypedWindowEvent, 7291 make sure to store the corresponding cookie too. 7292 7293 Signed-off-by: Philipp Reh <sefi@s-e-f-i.de> 7294 Reviewed-by: Daniel Stone <daniel@fooishbar.org> 7295 7296commit d2714d65e85b44abedf5f82e1a31506dba397ef2 7297Author: Alan Coopersmith <alan.coopersmith@oracle.com> 7298Date: Tue Dec 21 18:47:16 2010 -0800 7299 7300 Revert "Mark atom names argument to XInternAtoms as const" 7301 7302 This reverts commit c8701115462b482d99ecff24d9de0f2806084ba5. 7303 7304 The constification of a pointer to a pointer caused unexpected issues, 7305 and xorg-devel was unable to come up with a clean, safe, reasonable way 7306 to handle them, so we're chalking this up for now as yet another mistake 7307 in the Xlib API definition we'll be living with. 7308 7309 See https://bugs.freedesktop.org/show_bug.cgi?id=32098 for details. 7310 7311 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 7312 7313commit 6459f9a48a82de3bc0235bd36acab2df11e436d5 7314Author: Alan Coopersmith <alan.coopersmith@oracle.com> 7315Date: Mon Dec 20 20:54:07 2010 -0800 7316 7317 specs/XKB: make acknowlegement section <preface> instead of <chapter> 7318 7319 Fixes numbering of actual chapters to match their filenames and to 7320 make the table/figure numbering match the references in the text. 7321 7322 Reported-by: jelmd on freenode irc 7323 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 7324 7325commit 42c653d5413fc5870486a9cf51dd28d1e88f7c69 7326Author: Alan Coopersmith <alan.coopersmith@oracle.com> 7327Date: Sun Dec 19 23:53:02 2010 -0800 7328 7329 Add XKBlib spec images to dist_spec_DATA for distribution & installation 7330 7331 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 7332 Reviewed-by: Gaetan Nadon <memsize@videotron.ca> 7333 7334commit 8f8a3c8c42af82976d261ac2447cfbb0f90fa77d 7335Author: Matt Dew <matt@osource.org> 7336Date: Tue Nov 30 10:52:07 2010 -0500 7337 7338 specs: convert XKBlib spec from Framemaker to DocBook.xml 7339 7340 Signed-off-by: Gaetan Nadon <memsize@videotron.ca> 7341 7342commit c8701115462b482d99ecff24d9de0f2806084ba5 7343Author: Alan Coopersmith <alan.coopersmith@oracle.com> 7344Date: Sun Nov 21 20:49:05 2010 -0800 7345 7346 Mark atom names argument to XInternAtoms as const 7347 7348 Updates code & docs for XInternAtoms. 7349 7350 The single atom name argument to XInternAtom was already const char * 7351 in the code, but not the docs, so updated it in the docs too. 7352 7353 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 7354 Reviewed-by: Peter Hutterer <peter.hutterer@who-t.net> 7355 7356commit 24db5b5ff0d51b0ed9d9701a792c5f14f23b638d 7357Author: Alan Coopersmith <alan.coopersmith@oracle.com> 7358Date: Sun Nov 21 14:04:32 2010 -0800 7359 7360 libX11 1.4.0 7361 7362 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 7363 7364commit 18d3c3e9de19e936281b111d5a82acfb3a3f552e 7365Author: Dan Nicholson <dbn.lists@gmail.com> 7366Date: Sat Nov 6 21:58:10 2010 +0000 7367 7368 config: Check host string when deciding architecture to build for 7369 7370 When checking for the OS/2 platform, $target_os is used. However, unless 7371 building a cross compiler, the $host* strings contain the platform 7372 details for the build system. See: 7373 7374 http://www.gnu.org/software/automake/manual/automake.html#Cross_002dCompilation 7375 7376 $host_os is already being used to determine the transport and threading 7377 options. 7378 7379 Signed-off-by: Dan Nicholson <dbn.lists@gmail.com> 7380 Reviewed-by: Julien Cristau <jcristau@debian.org> 7381 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 7382 7383commit affc2488a7f2660a74dc8354fc3e0bff2c4f879c 7384Author: Dan Nicholson <dbn.lists@gmail.com> 7385Date: Sat Nov 6 21:58:09 2010 +0000 7386 7387 config: Fix architecture check for OS/2 to skip nios2 cpu 7388 7389 The OS/2 platform requires some utility functions as well as having a 7390 non-32 bit wchar_t. Fix the configure check so that it doesn't also 7391 affect the nios2 cpu, which wouldn't influence these operating system 7392 issues. 7393 7394 Signed-off-by: Dan Nicholson <dbn.lists@gmail.com> 7395 Tested-by: Frans Meulenbroeks <fransmeulenbroeks@gmail.com> 7396 Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com> 7397 Reviewed-by: Julien Cristau <jcristau@debian.org> 7398 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 7399 7400commit 8cbca8a10761d1ea75a75bafa647632d6c0dac71 7401Author: Gaetan Nadon <memsize@videotron.ca> 7402Date: Tue Nov 9 13:04:44 2010 -0500 7403 7404 config: HTML file generation: use the installed copy of xorg.css 7405 7406 Currenlty the xorg.css file is copied in each location 7407 where a DocBook/XML file resides. This produces about 7408 70 copies in the $(docdir) install tree. 7409 7410 Signed-off-by: Gaetan Nadon <memsize@videotron.ca> 7411 7412commit 3e8907305e1818369aef5a5c0da61f09e20de4f8 7413Author: Alan Coopersmith <alan.coopersmith@oracle.com> 7414Date: Fri Oct 29 22:02:10 2010 -0700 7415 7416 libX11 1.3.99.903 (1.4.0 RC3) 7417 7418 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 7419 7420commit 5d245d8013289b13e0c42100951b26166c7fada4 7421Author: Alan Coopersmith <alan.coopersmith@oracle.com> 7422Date: Fri Oct 29 22:01:39 2010 -0700 7423 7424 Require xorg-macros 1.11 now that it is released 7425 7426 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 7427 7428commit 1ec89689fc771f116a6165226b9e076f54254a40 7429Author: Dan Nicholson <dbn.lists@gmail.com> 7430Date: Fri Oct 22 19:09:07 2010 -0700 7431 7432 docs: Disable fop documentation by default 7433 7434 fop is used to generate the pdf and ps formats of the documentation. 7435 This can significantly slow down the build, especially when creating all 7436 the compose key charts. Since few people probably want the full set of 7437 doc formats, set the default to 'no'. 7438 7439 The default parameter for XORG_WITH_FOP is only available in recent 7440 macros. Users generating configure from older macros will just get 7441 'auto' as the default. 7442 7443 Signed-off-by: Dan Nicholson <dbn.lists@gmail.com> 7444 Reviewed-by: Gaetan Nadon <memsize@videotron.ca> 7445 Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com> 7446 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 7447 7448commit 03877bda911b72ac60a7144d6eced7d5be4b4d72 7449Author: Jon TURNEY <jon.turney@dronecode.org.uk> 7450Date: Wed Apr 14 13:38:18 2010 +0100 7451 7452 Add C.UTF-8 and C.ASCII locale aliases 7453 7454 Add C.UTF-8 locale as an alias for en_US.UTF-8 7455 Add C.ASCII locale as an alias for C 7456 7457 (C.UTF-8 is the default locale for cygwin. It also exists in debian, 7458 although I don't think it's intended for use by humans.) 7459 7460 Signed-off-by: Jon TURNEY <jon.turney@dronecode.org.uk> 7461 Acked-by: Julien Cristau <jcristau@debian.org> 7462 Reviewed-by: James Cloos <cloos@jhcloos.com> 7463 7464commit 81d1d9a6bdca779a44f931730b866eea75777c00 7465Author: Dan Nicholson <dbn.lists@gmail.com> 7466Date: Sat Oct 9 16:00:47 2010 -0700 7467 7468 docs: Remove directory prerequisites from make rules 7469 7470 Make expects prerequisites to be files with valid timestamps, and 7471 directories are treated as always being out of date. Thus, any targets 7472 depending on directories will always be rebuilt. 7473 7474 Instead, the doc rules are changed to always create the target's leading 7475 directory. This should prevent the documentation from being rebuilt when 7476 "make install" is run. 7477 7478 Signed-off-by: Dan Nicholson <dbn.lists@gmail.com> 7479 Reviewed-by: Jeremy Huddleston <jeremyhu@apple.com> 7480 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 7481 7482commit d0cbf388919364fe6b5b9127f36426eb744090a0 7483Author: Jeremy Huddleston <jeremyhu@apple.com> 7484Date: Sun Sep 26 21:21:16 2010 -0700 7485 7486 Add an "X11_" string to header guards to avoid possible collision 7487 7488 This addresses a build failure which can result from <X11/Xlocale.h> and 7489 <xlocale.h> being included in the same code since they both used the same 7490 _XLOCALE_H_ protection. 7491 7492 Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com> 7493 7494commit b51ac675f44f5ce1a28c5734bf3c26983f8b4192 7495Author: Alan Coopersmith <alan.coopersmith@oracle.com> 7496Date: Tue Sep 21 19:53:03 2010 -0700 7497 7498 libX11 1.3.99.902 (1.4.0 RC2) 7499 7500 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 7501 7502commit 986bb6d1d54368fe91e3ea24f518d43ce6179782 7503Author: Alan Coopersmith <alan.coopersmith@oracle.com> 7504Date: Tue Sep 14 00:10:31 2010 -0700 7505 7506 Bug 19379 - Provide docs with overview of all compose key combinations 7507 7508 Adds compose-chart.pl to generate DocBook/XML documents listing compose 7509 keys, and Makefile rules to generate HTML & PDF output from them if xmlto 7510 is present. 7511 7512 https://bugs.freedesktop.org/show_bug.cgi?id=19379 7513 7514 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 7515 Reviewed-by: Mikhail Gusarov <dottedmag@dottedmag.net> 7516 Reviewed-by: James Cloos <cloos@jhcloos.com> 7517 Tested-by: Gaetan Nadon <memsize@videotron.ca> 7518 7519commit 3eb064071695ebf0f371163ed818a428dfeba8e6 7520Author: Alan Coopersmith <alan.coopersmith@oracle.com> 7521Date: Sat Sep 11 00:49:21 2010 -0700 7522 7523 Make locale data build non-recursive / parallelizable 7524 7525 On a 4 core CPU with gmake -j 16 the nls subdir builds in half the time, 7526 plus this simplifies the next set of changes. 7527 7528 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 7529 Reviewed-by: Mikhail Gusarov <dottedmag@dottedmag.net> 7530 Reviewed-by: James Cloos <cloos@jhcloos.com> 7531 Tested-by: Gaetan Nadon <memsize@videotron.ca> 7532 7533commit a3fc78ac352e5a70a958996ef6aec50f653974d1 7534Author: Gaetan Nadon <memsize@videotron.ca> 7535Date: Fri Sep 17 17:38:11 2010 -0400 7536 7537 config: remove man page suffix from bottom summary 7538 7539 The man page suffix is the same for all libraries on a given 7540 platform and is not configurable. It should have been removed 7541 in commit 09edc6de6. 7542 7543 Signed-off-by: Gaetan Nadon <memsize@videotron.ca> 7544 7545commit a52b0068f36c739eb7e426214cd72a8d9bb776ca 7546Author: Gaetan Nadon <memsize@videotron.ca> 7547Date: Fri Sep 17 17:29:30 2010 -0400 7548 7549 config: remove unhelpful comment in .gitignore 7550 7551 Signed-off-by: Gaetan Nadon <memsize@videotron.ca> 7552 7553commit 10dd881e7818be9074da4ab3a68577adcdaf71d2 7554Author: Adam Jackson <ajax@redhat.com> 7555Date: Wed Sep 8 10:44:23 2010 -0400 7556 7557 Zero buffer data in BufAlloc() 7558 7559 Inspired by a pattern in NoMachine's NX. Consistently zeroed buffers 7560 compress better with ssh and friends. Note that you'll need to rebuild 7561 all your protocol libraries to take advantage of this. 7562 7563 Signed-off-by: Adam Jackson <ajax@redhat.com> 7564 Reviewed-by: Jeremy Huddleston <jeremyhu@apple.com> 7565 Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com> 7566 7567commit da099f0d2015831ea5f4a5d0740ed962aa4d5d8b 7568Author: James Cloos <cloos@jhcloos.com> 7569Date: Sun Sep 12 17:00:54 2010 -0400 7570 7571 Revert “Dolt-ify" 7572 7573 Libtool’s is now sufficiently fast that DOLT is no longer 7574 worth the bother, even on those few systems where is works. 7575 7576 This reverts commit 3e9afd501e40d76040635bd9a3045bcaf5a03b60 7577 and part of commit d31e644c65c52828ea3e7abd94a8cf9aee12265c. 7578 7579 It conflicted with commit f6a4fd0c7615684d08e848245849dea4017a5214 7580 which moved dolt from configure.ac to m4/dolt.m4. 7581 7582 And it addresses: http://bugs.freedesktop.org/show_bug.cgi?id=28188 7583 7584 Signed-off-by: James Cloos <cloos@jhcloos.com> 7585 7586commit 2661fbe6b809c937a60c2c1ca5ddb8280e399bd8 7587Author: Alan Coopersmith <alan.coopersmith@oracle.com> 7588Date: Thu Sep 9 19:24:29 2010 -0700 7589 7590 XIM spec title page minor formatting cleanup 7591 7592 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 7593 7594commit f99f1380bbf7bb2a0c491acad4a3d8db44bfd752 7595Author: Jens Petersen <petersen@redhat.com> 7596Date: Mon Aug 23 18:08:10 2010 -0700 7597 7598 Bug 29773: aliases for nb_NO.utf8 and nn_NO.utf8 7599 7600 <https://bugs.freedesktop.org/show_bug.cgi?id=29773> 7601 7602 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 7603 7604commit b15b8a558ec64c834cc8f6a52d7f3c4f530c8c4b 7605Author: Alan Coopersmith <alan.coopersmith@oracle.com> 7606Date: Fri Sep 3 23:11:53 2010 -0700 7607 7608 Sun's copyrights are now owned by Oracle 7609 7610 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 7611 7612commit 7742bf62b1fa652da4270587e280249945367cae 7613Author: Alan Coopersmith <alan.coopersmith@oracle.com> 7614Date: Fri Sep 3 18:31:44 2010 -0700 7615 7616 libX11 1.3.99.901 (1.4.0 RC1) 7617 7618 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 7619 7620commit 5a02d6d74b5451d48d8f55709dfd4ecd3c068586 7621Author: Jeroen Hoek <mail@jeroenhoek.nl> 7622Date: Sun Aug 29 09:47:06 2010 -0400 7623 7624 libX11/nls compose tables, add LATIN CAPITAL LETTER SHARP S 7625 7626 Add LATIN CAPITAL LETTER SHARP S 7627 (See https://bugs.freedesktop.org/show_bug.cgi?id=29448 for rationale) 7628 7629 Signed-off-by: James Cloos <cloos@jhcloos.com> 7630 7631commit 09edc6de6619a2eabda3b808ebff4165550664f1 7632Author: Gaetan Nadon <memsize@videotron.ca> 7633Date: Fri Aug 13 14:21:08 2010 -0400 7634 7635 config: remove man-pages configuration option 7636 7637 This option was added in commit 6e752ea120 with no explanation. 7638 The section number is provoded by XORG_MANPAGE_SECTIONS 7639 There is no case where libX11 should be different than other libs 7640 The option was also used to disable building of the man pages, 7641 which build in 14 secs. No indication this is required. 7642 7643 If there is a requirement from system builders to disable building 7644 of man pages, it could be done consistently for all modules. 7645 7646 Signed-off-by: Gaetan Nadon <memsize@videotron.ca> 7647 7648commit f92e754297ec5fdb81068b56a4435026666224fa 7649Author: Aaron Plattner <aplattner@nvidia.com> 7650Date: Sun Aug 15 21:51:38 2010 -0700 7651 7652 XOpenDisplay: save the correct display_name value 7653 7654 The X Test Suite's XDisplayString test checks the invariant 7655 XDisplayString(XOpenDisplay(str)) == str. The Xlib XOpenDisplay violates this 7656 invariant by expanding str to the canonical form "host:display.scrn" (unless 7657 HAVE_LAUNCHD is set and it starts with "/tmp/launch"). E.g., this expands ":1" 7658 to ":1.0": 7659 7660 400|26 1 1 19:26:41|IC Start 7661 200|26 1 19:26:41|TP Start 7662 520|26 1 00032625 1 1|VSW5TESTSUITE PURPOSE 1 7663 520|26 1 00032625 1 2|Assertion XDisplayString-1.(A) 7664 520|26 1 00032625 1 3|A call to XDisplayString returns the string that was used 7665 520|26 1 00032625 1 4|as the argument to the XOpenDisplay call that returned the 7666 520|26 1 00032625 1 5|value used as the display argument. 7667 520|26 1 00032625 1 6|METH: Open a connection using XOpenDisplay. 7668 520|26 1 00032625 1 7|METH: Obtain the display string using XDisplayString. 7669 520|26 1 00032625 1 8|METH: Verify that the value of the string is the parameter used in XOpenDisplay. 7670 520|26 1 00032625 1 9|METH: Close the display using XCloseDisplay. 7671 520|26 1 00032625 1 10|REPORT: XDisplayString() returned ":1.0" instead of ":1". 7672 220|26 1 1 19:26:41|FAIL 7673 410|26 1 1 19:26:41|IC End 7674 7675 Fix this by deleting all of the code to construct the canonical path and just 7676 stashing a copy of the original display_name in dpy->display_name. 7677 7678 Signed-off-by: Aaron Plattner <aplattner@nvidia.com> 7679 Reviewed-by: Jeremy Huddleston <jeremyhu@apple.com> 7680 7681commit 1dc401f678469d0235e6d0b28eb4356f03327c9f 7682Author: Gaetan Nadon <memsize@videotron.ca> 7683Date: Fri Aug 13 13:06:51 2010 -0400 7684 7685 man: xkb: remove unused variable LIB_MAN_DIR_SUFFIX 7686 7687 Signed-off-by: Gaetan Nadon <memsize@videotron.ca> 7688 7689commit cbe9eebd11e5ebab4280d25b57b4cd4001241619 7690Author: Gaetan Nadon <memsize@videotron.ca> 7691Date: Fri Aug 13 11:42:29 2010 -0400 7692 7693 man: simplify building of shadow man pages 7694 7695 Store the shadow files in git as any other man page. 7696 Move man pages to man dir and use the common makefile 7697 7698 Local fix in CVS for bug 5628 is not required 7699 as the problem has been fixed in 7700 util-macros d9062e4077ebfd0985baf8418f3d0f111b9ddbba 7701 7702 Signed-off-by: Gaetan Nadon <memsize@videotron.ca> 7703 7704commit bfd899c9af2318ecbe84cb69007dba4223fdb502 7705Author: Gaetan Nadon <memsize@videotron.ca> 7706Date: Mon Aug 9 09:39:26 2010 -0400 7707 7708 config: reinstate XORG_PROG_RAWCPP erroneoulsy removed 7709 7710 in commit 76e07ef6911734eac418e399b114f1b544512736. 7711 7712 Signed-off-by: Gaetan Nadon <memsize@videotron.ca> 7713 7714commit 76e07ef6911734eac418e399b114f1b544512736 7715Author: Gaetan Nadon <memsize@videotron.ca> 7716Date: Fri Aug 6 14:01:51 2010 -0400 7717 7718 man: using the C preprocessor is not required for man pages. 7719 7720 There were no special symbols needing cpp. 7721 Everything can be handled by the default MAN_SUBSTS in util-macros. 7722 7723 Signed-off-by: Gaetan Nadon <memsize@videotron.ca> 7724 7725commit 4b8ff7db39f2fe7ef12968d462aaf3f9054b6c18 7726Author: Jamey Sharp <jamey@minilop.net> 7727Date: Fri Aug 6 15:51:56 2010 -0700 7728 7729 Fix use-after-free in _XReply on X errors. 7730 7731 _XReply would always call dequeue_pending_request on errors. When it 7732 got an error for the current request, it would call dequeue, then break 7733 out of the loop; then, if it had an error in the event queue, it would 7734 compare it with the sequence number of the now-freed pending request. 7735 _XReply already stored that sequence number in dpy->last_request_read 7736 before freeing it, so look at that instead. 7737 7738 Fixes: https://bugs.freedesktop.org/show_bug.cgi?id=29412 7739 7740 Signed-off-by: Jamey Sharp <jamey@minilop.net> 7741 Signed-off-by: Josh Triplett <josh@joshtriplett.org> 7742 7743commit 9fa146b30046396b70d64986e50d6617b3a8ac48 7744Author: Gaetan Nadon <memsize@videotron.ca> 7745Date: Sat Jul 31 16:15:35 2010 -0400 7746 7747 specs: xsl stylesheet requires abs path to images 7748 7749 Using abs_builddir requires automake 1.10 or later. 7750 7751 Signed-off-by: Gaetan Nadon <memsize@videotron.ca> 7752 7753commit a8727d4bc39015e303b4128d0ad8aaf6d5fc9f0a 7754Author: Gaetan Nadon <memsize@videotron.ca> 7755Date: Sun Aug 1 14:13:07 2010 -0400 7756 7757 specs: update .gitignore now that all groff generated files are gone 7758 7759 Signed-off-by: Gaetan Nadon <memsize@videotron.ca> 7760 7761commit f70527f05677aaf6a493ba42d2d95f738aaebafa 7762Author: Adam Jackson <ajax@redhat.com> 7763Date: Thu Jul 29 11:11:21 2010 -0400 7764 7765 nls: Switch one of the interrobang sequences to gnaborretni 7766 7767 Since gnaborretni is primarily used in LTR locales, the ? part of the 7768 sequence reflects the position of the bulge in the ?. When scanning an 7769 inverted interrobang left-to-right, you see the bulge first, so the 7770 compose sequence ?! is used; upright interrobang shows the bulge 7771 last, so it's !?. 7772 7773 This is a change in behaviour, but I was unable to come up with anything 7774 better. ??!! or !!?? would match the patterns for ¿ and ¡, but they 7775 would delay evaluation of them; "¿Qué?" wouldn't show the ¿ until you hit 7776 Q. Likewise ?!?! and !?!? would delay showing the interrobang itself. 7777 ~!? and ~?! were considered but are arguably less intuitive. 7778 7779 Reviewed-by: James Cloos <cloos@jhcloos.com> 7780 Signed-off-by: Adam Jackson <ajax@redhat.com> 7781 7782commit 511c4f6d29b2da4f71093feabcbb3913cb5d12a7 7783Author: Gaetan Nadon <memsize@videotron.ca> 7784Date: Wed Jul 28 10:27:39 2010 -0400 7785 7786 specs: move indexterm from glossdef to glossterm 7787 7788 This move fixes a Java class cast exception in the glossary. 7789 The problem was introduced in commit 7790 26f4f0d50840fe5ba4c46aae0a8e68db0059434b 7791 7792 It may not happen on all versions of the doc toolchain. 7793 There is no reason why indexterm cannot appear in glossdef, 7794 this is a workaround to an implementation problem found by 7795 trial and error. 7796 7797 Signed-off-by: Gaetan Nadon <memsize@videotron.ca> 7798 Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com> 7799 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 7800 7801commit 87a108f3aa565aa803dacb3a53b811f45025b609 7802Author: Matt Dew <matt@osource.org> 7803Date: Sat Jul 24 14:46:57 2010 -0400 7804 7805 specs: replace troff source with docbook-xml source 7806 7807 Signed-off-by: Gaetan Nadon <memsize@videotron.ca> 7808 7809commit 8e603413586ff42b1351688f6f99318cbe243bca 7810Author: Julien Cristau <jcristau@debian.org> 7811Date: Sat Jul 24 22:13:07 2010 +0200 7812 7813 Compose.man: default user compose file is .XCompose, not .Xcompose 7814 7815 The path was correct in the DESCRIPTION section, but not in FILES. 7816 7817 Signed-off-by: Julien Cristau <jcristau@debian.org> 7818 7819commit 554da76ece85d0fc0cada45a86860e69c2107e9a 7820Author: Daniel Stone <daniel@fooishbar.org> 7821Date: Tue Jul 20 12:34:48 2010 +0100 7822 7823 NLS: Add \o/ Compose sequence 7824 7825 Unicode is even more pointlessly awesome! Add a binding for Compose-\o/ 7826 to U+1F64C PERSON RAISING BOTH HANDS IN CELEBRATION. 7827 7828 Signed-off-by: Daniel Stone <daniel@fooishbar.org> 7829 7830commit 2e7a18b6a617b9b4bfcea2d36f2bd2d7e0c4a3dd 7831Author: Daniel Stone <daniel@fooishbar.org> 7832Date: Fri Jul 9 18:13:13 2010 +0100 7833 7834 XStringToKeysym: Cope with 0x1234cafe-style input 7835 7836 If we get input in the style of 0xdeadbeef, just return that exact 7837 keysym. Introduces a dependency on strtoul, which I'm told is OK on all 7838 the systems we care about. 7839 7840 Signed-off-by: Daniel Stone <daniel@fooishbar.org> 7841 7842commit 3df45ed0c29b98ff468a0ff0ba24830bb664fd5a 7843Author: Alan Coopersmith <alan.coopersmith@oracle.com> 7844Date: Mon Jul 19 17:58:27 2010 -0700 7845 7846 specs/libX11: Fix column count of Gravity Attributes table 7847 7848 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 7849 7850commit 53bcba0d1d2dc3fd5e0de4bae3da30a1aa31a0c4 7851Author: Alan Coopersmith <alan.coopersmith@oracle.com> 7852Date: Mon Jul 19 14:43:38 2010 -0700 7853 7854 specs/libX11: Convert \- to − and \^ to either   or removed 7855 7856 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 7857 7858commit 5a0b45275638281e1bb2ae7d3e16b98e6470dae9 7859Author: Alan Coopersmith <alan.coopersmith@oracle.com> 7860Date: Mon Jul 19 11:28:50 2010 -0700 7861 7862 specs/libX11: Manual cleanup pass over Ch. 1 7863 7864 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 7865 7866commit 21567992958a6f12b3d0186f2f27a5b2a41b8448 7867Author: Alan Coopersmith <alan.coopersmith@oracle.com> 7868Date: Mon Jul 19 14:51:10 2010 -0700 7869 7870 specs/libX11: make sure all files have DOCTYPEs so standard entities work 7871 7872 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 7873 7874commit c944a8521f5760b485192658b921145159cdb439 7875Author: Alan Coopersmith <alan.coopersmith@oracle.com> 7876Date: Sun Jul 18 13:12:20 2010 -0700 7877 7878 specs/libX11: Fix up list of header files in Ch.1 & add index entries 7879 7880 Combination of manual editing and automatic substitution via: 7881 7882 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 7883 7884 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 7885 7886commit bb66e8f1ce330043278d3e8cbc7d5d3bc56ee030 7887Author: Alan Coopersmith <alan.coopersmith@oracle.com> 7888Date: Sun Jul 18 12:47:27 2010 -0700 7889 7890 specs/libX11: Add indexterms for headerfiles that .hN used to provide 7891 7892 Automatic substitution performed via: 7893 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 7894 7895 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 7896 7897commit d0b0d215cb85da48b323b1392149ce181e7ef5ec 7898Author: Alan Coopersmith <alan.coopersmith@oracle.com> 7899Date: Fri Jul 16 21:15:13 2010 -0700 7900 7901 specs/libX11: convert multicolumn lists from tables to <simplelist> 7902 7903 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 7904 7905commit e679f80c6210c0aefe3669f8f536353619097a4b 7906Author: Alan Coopersmith <alan.coopersmith@oracle.com> 7907Date: Fri Jul 16 20:51:52 2010 -0700 7908 7909 specs/libX11: Tag WM_* as <property> 7910 7911 Mass substitution done by: 7912 perl -i -p -e 'if ($_ !~ m{^\<}) { $_ =~ s{(WM_\w+)}{<property>$1</property>}g; }' *.xml 7913 7914 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 7915 7916commit c7b7e59b3b22221d0be6286c540001c360308f69 7917Author: Alan Coopersmith <alan.coopersmith@oracle.com> 7918Date: Fri Jul 16 20:41:33 2010 -0700 7919 7920 specs/libX11: Convert simpler eqn markup to docbook tags 7921 7922 Mostly "sup" to <superscript> 7923 7924 There's several more complicated equations that will probably need 7925 MathML or SVG to solve. 7926 7927 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 7928 7929commit 897486c54c6a54771867d667441aaf9a4b9c35ca 7930Author: Alan Coopersmith <alan.coopersmith@oracle.com> 7931Date: Fri Jul 16 00:50:39 2010 -0700 7932 7933 specs/libX11: App. D: convert literallayouts to synopsis or programlisting 7934 7935 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 7936 7937commit 692906c3b3d8aa8b8927fbc230c3050d633785d2 7938Author: Alan Coopersmith <alan.coopersmith@oracle.com> 7939Date: Fri Jul 16 00:36:43 2010 -0700 7940 7941 specs/libX11: Fix section headers in Appendix D 7942 7943 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 7944 7945commit bcc41baa02e137884d847aec0f3ff8ca5c85c32f 7946Author: Alan Coopersmith <alan.coopersmith@oracle.com> 7947Date: Wed Jul 14 07:22:26 2010 -0700 7948 7949 specs/libX11: Explicitly tag document as English 7950 7951 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 7952 7953commit 6783544706ff370e900c137f951e90230586d6dc 7954Author: Alan Coopersmith <alan.coopersmith@oracle.com> 7955Date: Mon Jul 12 22:03:18 2010 -0700 7956 7957 specs/libX11: Appendix C: convert literallayouts to synopsis or programlisting 7958 7959 Fixes display of a bunch of function prototypes and sample code 7960 7961 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 7962 7963commit 8834cd9285e6aaf437aee56292c508d99a090fa9 7964Author: Alan Coopersmith <alan.coopersmith@oracle.com> 7965Date: Mon Jul 12 18:37:16 2010 -0700 7966 7967 xmlrules.in: Add chunked-html rule to manually generate smaller files 7968 7969 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 7970 7971commit 53f78680c34ebc94ce26b5e14c2a0003435cf10d 7972Author: Alan Coopersmith <alan.coopersmith@oracle.com> 7973Date: Mon Jul 12 18:35:59 2010 -0700 7974 7975 specs/libX11: Convert Appendix A tables to real tables 7976 7977 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 7978 7979commit 705a1257a8a47f4a1f94979aee09a837500ede7d 7980Author: Alan Coopersmith <alan.coopersmith@oracle.com> 7981Date: Mon Jul 12 18:38:09 2010 -0700 7982 7983 specs/libX11: Fix out-of-place text in Chapter 1 7984 7985 DTD violation error introduced in 89cc2e02e7c29ef9a02f0cfdf2090a2934f539e4 7986 7987 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 7988 7989commit a151346a2b7810e988f1de4b1e00b37672dc587a 7990Author: Jeremy Huddleston <jeremyhu@apple.com> 7991Date: Mon Jul 12 16:52:12 2010 -0700 7992 7993 launchd: Explicitly search /sbin 7994 7995 Previously, launchd wasn't found if /sbin wasn't in the user's PATH. 7996 https://bugs.freedesktop.org/show_bug.cgi?id=29028 7997 7998 Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com> 7999 8000commit 89cc2e02e7c29ef9a02f0cfdf2090a2934f539e4 8001Author: Alan Coopersmith <alan.coopersmith@oracle.com> 8002Date: Mon Jul 12 13:38:04 2010 -0700 8003 8004 Replace untranslated .hN macros with <filename> tags to show header names 8005 8006 Translation performed by: 8007 perl -i -p -e 's{\<\!-- .hN (\S+) (\S+)?\s*-->} 8008 {<<filename class="headerfile">$1</filename>>$2}' *.xml 8009 8010 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 8011 8012commit 75480440946603b8efdbbf78b88d59c641b6d2c8 8013Author: Alan Coopersmith <alan.coopersmith@oracle.com> 8014Date: Sat Jul 10 00:06:13 2010 -0700 8015 8016 specs/libX11: Mass substitution of <function> tags with more specific tags 8017 8018 Matched names from X headers & "nm libX11.so" output to names in spec to 8019 map to more specific tags. Tags used: 8020 8021 <code> code fragments 8022 <constant> enum values 8023 <errorname> X protocol errors 8024 <filename> filenames 8025 <function> functions 8026 <function> function-like macros (#define foo(a,b)...) 8027 <returnvalue> function return codes 8028 <structfield> struct members 8029 <structname> struct names (even when typedefed) 8030 <symbol> simple value #defines (#define NAME value) 8031 <systemitem> X protocol requests 8032 <systemitem class="event"> X protocol events 8033 <type> non-struct typedefs 8034 <varname> global variables 8035 8036 (Also fixed a couple typos detected by failures of this matching, such as 8037 XESSetPrintErrorValues -> XESetPrintErrorValues.) 8038 8039 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 8040 8041commit 26f4f0d50840fe5ba4c46aae0a8e68db0059434b 8042Author: Alan Coopersmith <alan.coopersmith@oracle.com> 8043Date: Fri Jul 9 00:37:23 2010 -0700 8044 8045 specs/libX11: Glossary cross-reference links 8046 8047 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 8048 8049commit 930b52d84031de0e15e0a11cf4ecfd3b2f59e073 8050Author: Alan Coopersmith <alan.coopersmith@oracle.com> 8051Date: Thu Jul 8 21:19:08 2010 -0700 8052 8053 specs/libX11: Make whitespace around <function> tags more uniform 8054 8055 Simplifies regular expressions for further mass substitutions. 8056 8057 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 8058 8059commit 730ce6b8aca77b77385aa894d234cbde5fcbce37 8060Author: Gaetan Nadon <memsize@videotron.ca> 8061Date: Fri Jul 9 20:10:37 2010 -0400 8062 8063 specs: use pattern rules rather than suffix rules 8064 8065 This allows target to rebuild when included .xml files are changed. 8066 8067 Signed-off-by: Gaetan Nadon <memsize@videotron.ca> 8068 8069commit 5527b4bc8ce7de60123eb28789ddef54aa48a378 8070Author: Alan Coopersmith <alan.coopersmith@oracle.com> 8071Date: Thu Jul 8 20:56:41 2010 -0700 8072 8073 specs/libX11: Move punctuation outside of the <function> tags 8074 8075 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 8076 8077commit d66d2134dfc38cd866c7c2d9ea45ed4b4dad23f0 8078Author: Alan Coopersmith <alan.coopersmith@oracle.com> 8079Date: Thu Jul 8 20:42:50 2010 -0700 8080 8081 specs/libX11: Mark a number of <acronym>s 8082 8083 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 8084 8085commit d5bbb12f55ac9f691eab6242cedc53207275131b 8086Author: Alan Coopersmith <alan.coopersmith@oracle.com> 8087Date: Thu Jul 8 19:31:36 2010 -0700 8088 8089 specs/libX11: Glossary terms should not be marked as functions 8090 8091 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 8092 8093commit 5decf7bc5dae0ae0c45c47eaaa9c4fdf9515ca1c 8094Author: Alan Coopersmith <alan.coopersmith@oracle.com> 8095Date: Thu Jul 8 19:28:18 2010 -0700 8096 8097 specs/libX11: Clean up author list & acknowledgements a little 8098 8099 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 8100 8101commit 0cd29bdb332c333e5123dce65b25ad1d97fbdae3 8102Author: Alan Coopersmith <alan.coopersmith@oracle.com> 8103Date: Thu Jul 8 17:30:34 2010 -0700 8104 8105 specs/libX11: Convert troff .IN macros to docbook <indexterm> tags 8106 8107 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 8108 8109commit a67d99ccbe22c8ce5f7a12f13b8991d9e0cf4491 8110Author: Gaetan Nadon <memsize@videotron.ca> 8111Date: Thu Jul 8 17:29:21 2010 -0400 8112 8113 specs: specdir is required to install xml files 8114 8115 The source is installed as well as the targets. 8116 This failed when configuring with --without-xmlto 8117 8118 Signed-off-by: Gaetan Nadon <memsize@videotron.ca> 8119 8120commit e14273f44c1501ab51db4adcb83b18a1073787d8 8121Author: Matt Dew <matt@osource.org> 8122Date: Thu Jul 8 14:42:32 2010 -0400 8123 8124 specs: replace troff source with docbook-xml source 8125 8126 Signed-off-by: Gaetan Nadon <memsize@videotron.ca> 8127 8128commit bea0873caf50e9ed1b89255775d9ab912cbecd45 8129Author: Daniel Stone <daniel@fooishbar.org> 8130Date: Thu Jul 8 16:49:51 2010 +0100 8131 8132 XStringToKeysym: Check strdup() return value 8133 8134 Signed-off-by: Daniel Stone <daniel@fooishbar.org> 8135 Reviewed-by: Keith Packard <keithp@keithp.com> 8136 8137commit cffa71b4a5743e2b6675b9a917d15aef4177d513 8138Author: Marko Myllynen <myllynen@redhat.com> 8139Date: Mon Jun 28 15:08:05 2010 +0300 8140 8141 Fix two typos in SFS 5966 Annex 3 8142 8143 X.Org bug#28792 <https://bugs.freedesktop.org/show_bug.cgi?id=28792> 8144 8145 Signed-off-by: Julien Cristau <jcristau@debian.org> 8146 8147commit eb023c0f8919e809b8b609e1467b14d20a290aa7 8148Author: Daniel Stone <daniel@fooishbar.org> 8149Date: Tue Jun 15 18:49:43 2010 +0100 8150 8151 Delete now-redundant XKeysymDB 8152 8153 Since XStringToKeysym now supports all the vendor keysyms, just delete 8154 our XKeysymDB, which was incomplete at best, misleading at worst, and 8155 always an annoyance. 8156 8157 Signed-off-by: Daniel Stone <daniel@fooishbar.org> 8158 Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com> 8159 8160commit 00175397480b76d32bf82b0c7c94c91a2a95954e 8161Author: Daniel Stone <daniel@fooishbar.org> 8162Date: Tue Jun 15 18:48:48 2010 +0100 8163 8164 makekeys: Scan vendor keysyms as well as core 8165 8166 Since we can't really live without vendor keysyms, scan them all in to 8167 generate ks_tables.h, rather than only doing the core ones, and leaving 8168 the vendor syms to be manually synchronised with XKeysymDB. 8169 8170 Signed-off-by: Daniel Stone <daniel@fooishbar.org> 8171 Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com> 8172 8173commit ebd6ef0a4db0ddef0ae17ad14571518ccdeea5ba 8174Author: Daniel Stone <daniel@fooishbar.org> 8175Date: Tue Jun 15 18:47:37 2010 +0100 8176 8177 XStringToKeysym: Special case for XF86 keysyms 8178 8179 Some XFree86 keysyms were in XKeysymDB as XF86_foo, despite really being 8180 XF86foo. So, if we get to the bottom of XStringToKeysym and haven't 8181 found our XF86_foo, try it again as XF86foo. 8182 8183 Signed-off-by: Daniel Stone <daniel@fooishbar.org> 8184 Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com> 8185 8186commit 8c2ffce9e5c6eef8a04f7e2732db46b3b62e13bb 8187Author: Daniel Stone <daniel@fooishbar.org> 8188Date: Tue Jun 15 17:20:48 2010 +0100 8189 8190 configure.ac: Change from deprecated AC_DEFINE_DIR to AX_ 8191 8192 AC_DEFINE_DIR is deprecated as it's squatting on the autoconf-builtin 8193 namespace, so start using the more proper AX_DEFINE_DIR instead. 8194 8195 Signed-off-by: Daniel Stone <daniel@fooishbar.org> 8196 Reviewed-by: Gaetan Nadon <memsize@videotron.ca> 8197 Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com> 8198 8199commit 6de368c9aa7ccd2fcd62fca5a2b278913db4d03d 8200Author: Fernando Carrijo <fcarrijo@yahoo.com.br> 8201Date: Thu Jul 1 06:50:47 2010 -0300 8202 8203 Purge macros NEED_EVENTS and NEED_REPLIES 8204 8205 Signed-off-by: Fernando Carrijo <fcarrijo@yahoo.com.br> 8206 Acked-by: Tiago Vignatti <tiago.vignatti@nokia.com> 8207 Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com> 8208 8209commit 0b724231be17f19538ee115a03b82b221b1f83c0 8210Author: Adam Jackson <ajax@redhat.com> 8211Date: Wed Jun 30 16:30:49 2010 -0400 8212 8213 Use -version-number consistently instead of -version-info 8214 8215 The latter is libtool braindamage. 8216 8217 Signed-off-by: Adam Jackson <ajax@redhat.com> 8218 8219commit 241a990afcf9c967c587ad6fd245df21b68b1ad9 8220Author: Juliusz Chroboczek <jch@pps.jussieu.fr> 8221Date: Tue Jun 29 18:32:42 2010 +0200 8222 8223 Make Compose-comma map to ogonek for I and U in UTF-8 locales. 8224 8225 With the preceding patch, it makes the UTF-8 compose map consistent with 8226 the ISO 8859-4 and -13 maps. 8227 8228commit af55e582f485a668c2bf43129be972bc65f03c60 8229Author: Juliusz Chroboczek <jch@pps.jussieu.fr> 8230Date: Tue Jun 29 18:20:18 2010 +0200 8231 8232 Make Compose-comma map to Ogonek for A and E in UTF-8 locales. 8233 8234 This makes the UTF-8 compose file consistent with the ISO 8859-2 compose file 8235 as far as Polish is concerned. We only sacrifice one pair of characters, 8236 e-cedilla, which is not used in any language. 8237 8238commit d6ba13009fc9ef876a104b907ffef73c6e405d4b 8239Author: Alan Coopersmith <alan.coopersmith@oracle.com> 8240Date: Thu Jun 24 13:13:11 2010 -0700 8241 8242 Define FILE_MAN_DIR_SUFFIX so XCompose shadow page has correct path 8243 8244 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 8245 8246commit 978c7238789037de917b9423ea9adfb006da1260 8247Author: Jamey Sharp <jamey@minilop.net> 8248Date: Sat Jun 19 10:44:55 2010 -0700 8249 8250 poll_for_response: Really handle xcb_poll_for_reply getting a reply. 8251 8252 Don't lose async replies. That's bad. 8253 8254 `xlsfonts -l`, which uses XListFontsWithInfo, worked fine, because the 8255 _XReply path worked; that path waited for replies, rather than polling. 8256 8257 However, XRecordProcessReplies, which does nothing but call XPending, 8258 relied on the event-handling path to process async replies, and that was 8259 busted. 8260 8261 Fixes: https://bugs.freedesktop.org/show_bug.cgi?id=28595 8262 8263 Signed-off-by: Jamey Sharp <jamey@minilop.net> 8264 8265commit ef67486c5a8aada24fd95b2991a3c4979f53805f 8266Author: Jamey Sharp <jamey@minilop.net> 8267Date: Mon Jun 21 13:34:15 2010 -0700 8268 8269 Revert "xcb_io.c: poll_for_response doesn't guarantee there's a pending request." 8270 8271 This reverts commit 4a8b6528ff69f6feb8c0e119939b4ce6c088f29e, because as 8272 a matter of fact, if poll_for_response returns NULL when we know 8273 dpy->xcb->next_event is non-NULL, there *is* guaranteed to be a pending 8274 request. 8275 8276commit 301ec5b41e9d253a446db656e1789ac7345dc433 8277Author: Jamey Sharp <jamey@minilop.net> 8278Date: Mon Jun 21 13:24:24 2010 -0700 8279 8280 Revert "poll_for_response: Really handle xcb_poll_for_reply getting a reply." 8281 8282 This reverts commit c115095d7f2bc4f5a4fb26380e3698fefdad7611. We *do* 8283 need to check poll_for_event every time through the loop in 8284 poll_for_response, so the commit did too much. 8285 8286commit 4a8b6528ff69f6feb8c0e119939b4ce6c088f29e 8287Author: Jamey Sharp <jamey@minilop.net> 8288Date: Mon Jun 21 10:54:02 2010 -0700 8289 8290 xcb_io.c: poll_for_response doesn't guarantee there's a pending request. 8291 8292 Fixes the second bug reported in: 8293 https://bugs.freedesktop.org/show_bug.cgi?id=28595 8294 8295 Signed-off-by: Jamey Sharp <jamey@minilop.net> 8296 8297commit c115095d7f2bc4f5a4fb26380e3698fefdad7611 8298Author: Jamey Sharp <jamey@minilop.net> 8299Date: Sat Jun 19 10:44:55 2010 -0700 8300 8301 poll_for_response: Really handle xcb_poll_for_reply getting a reply. 8302 8303 Don't lose async replies. That's bad. 8304 8305 `xlsfonts -l`, which uses XListFontsWithInfo, worked fine, because the 8306 _XReply path worked; that path waited for replies, rather than polling. 8307 8308 However, XRecordProcessReplies, which does nothing but call XPending, 8309 relied on the event-handling path to process async replies, and that was 8310 busted. 8311 8312 Fixes: https://bugs.freedesktop.org/show_bug.cgi?id=28595 8313 8314 Signed-off-by: Jamey Sharp <jamey@minilop.net> 8315 Signed-off-by: Josh Triplett <josh@joshtriplett.org> 8316 8317commit a25ae169862ab9b76daf259613b37c6b07bc2ef2 8318Author: Marko Myllynen <myllynen@redhat.com> 8319Date: Sun Jun 13 19:23:05 2010 +0300 8320 8321 Implement SFS 5966 Annex 4 for Finland 8322 8323 This patch adds Annex 4 of SFS 5966 for Finland and fixes two typos in 8324 Annex 3 (which were actually copied verbatim from the standard text). 8325 8326 The implementation of the standard is now complete. 8327 8328 X.Org bug#28498 <https://bugs.freedesktop.org/show_bug.cgi?id=28498> 8329 8330 Signed-off-by: Julien Cristau <jcristau@debian.org> 8331 8332commit 47b04195d8a31c8f9e6dd804196162c6cfca3ac6 8333Author: Alan Coopersmith <alan.coopersmith@oracle.com> 8334Date: Fri Jun 4 13:20:17 2010 -0700 8335 8336 LINEAR_RGB_InitSCCData: When malloc fails, don't try to free unallocated bits 8337 8338 One of the malloc failure checks had a goto to the wrong spot in the 8339 list of cleanup free() calls to unwind at the end, and was freeing 8340 bits that hadn't been initialized/allocated yet, since they would be 8341 stored in the struct that just failed to be allocated. 8342 8343 Error: Null pointer dereference (CWE 476) 8344 Read from pointer that could be constant 'NULL' 8345 at line 805 of /export/alanc/X.Org/sx86/lib/libX11/src/xcms/LRGB.c in function 'LINEAR_RGB_InitSCCData'. 8346 Pointer checked against constant 'NULL' at line 754 but does not protect the dereference. 8347 8348 [ This bug was found by the Parfait bug checking tool. 8349 For more information see http://research.sun.com/projects/parfait ] 8350 8351 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 8352 8353commit aebbf3623888119b43893b253195d93b613a6e1e 8354Author: Josh Triplett <josh@joshtriplett.org> 8355Date: Sun Jun 6 19:11:55 2010 -0700 8356 8357 Mark the rest of Xprivate.h as _X_HIDDEN. 8358 8359 None of the functions in Xprivate.h should have any callers outside of 8360 Xlib, by definition. 8361 8362 Signed-off-by: Josh Triplett <josh@joshtriplett.org> 8363 Suggested-by: Jamey Sharp <jamey@minilop.net> 8364 Reviewed-by: Jamey Sharp <jamey@minilop.net> 8365 8366commit abcd1b67c8135ad652833e5a60d818837c39fce1 8367Author: Julien Cristau <jcristau@debian.org> 8368Date: Fri Jun 4 13:57:45 2010 +0200 8369 8370 Hide _XSeqSyncFunction 8371 8372 Commit a6d974dc59f2722b36e2df9d4f07aeee4f83ce43 made _XSeqSyncFunction 8373 non-static, but we don't need to export it. 8374 8375 Signed-off-by: Julien Cristau <jcristau@debian.org> 8376 Reviewed-by: Adam Jackson <ajax@redhat.com> 8377 Reviewed-by: Jamey Sharp <jamey@minilop.net> 8378 8379commit 15e5eaf62897b3179d1fbe457cb19f886f0449f8 8380Author: Josh Triplett <josh@joshtriplett.org> 8381Date: Thu Jun 3 09:41:01 2010 -0700 8382 8383 Remove support for building without XCB 8384 8385 And there was much rejoicing. 8386 8387 Signed-off-by: Josh Triplett <josh@joshtriplett.org> 8388 Reviewed-by: Jamey Sharp <jamey@minilop.net> 8389 8390 Consensus on #xorg-devel agrees with removing --without-xcb; in 8391 particular, acks from Adam Jackson, Daniel Stone, Kristian Høgsberg, 8392 Julien Cristau, and Rémi Cardona. 8393 8394commit fb19eb767a32fd4ff74021c51bc6f60eb8bdff74 8395Author: Alan Coopersmith <alan.coopersmith@oracle.com> 8396Date: Thu Jun 3 15:21:40 2010 -0700 8397 8398 libX11 1.3.4 8399 8400 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 8401 8402commit 8f3db40ca5108a919244f3fff7466d01a14b3ce2 8403Author: Alan Coopersmith <alan.coopersmith@oracle.com> 8404Date: Thu Jun 3 13:08:17 2010 -0700 8405 8406 Workaround bug in groff flag processing that breaks distcheck 8407 8408 At least with the groff 1.19.2 package I have installed, groff passes 8409 on the -I flags for the include path to grohtml, which if they come 8410 after the -P-I... flag we pass to grohtml to specify the image file 8411 name pattern cause it to override that flag and put the images in 8412 the wrong place, breaking "make distcheck" - changing the flag order 8413 works around this. 8414 8415 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 8416 8417commit bdb31a1fb707cebccc9efbbf68cb55c10fa4ea3e 8418Author: Alan Coopersmith <alan.coopersmith@oracle.com> 8419Date: Thu Jun 3 11:25:33 2010 -0700 8420 8421 Fix typo that made configure always report "none" for man page suffix 8422 8423 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 8424 8425commit 6bb7d2d21d6b58019fb37b724b59c9744f30b9ce 8426Author: Paul Bender <pebender@gmail.com> 8427Date: Thu Jun 3 11:20:26 2010 -0700 8428 8429 Bug 22591 - configure does not obey the --enable-*-transport options 8430 8431 https://bugs.freedesktop.org/show_bug.cgi?id=22591 8432 8433 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 8434 8435commit d7f35946d673bb00f2768e025b6e1017422b2174 8436Author: Paul Bender <pebender@gmail.com> 8437Date: Thu Jun 3 11:17:45 2010 -0700 8438 8439 Bug 22590 - libX11 1.2.1 has broken abstract namespace support 8440 8441 https://bugs.freedesktop.org/show_bug.cgi?id=22590 8442 8443 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 8444 8445commit b2487d07f7b355f230a56e32c763acd08862735c 8446Author: Alan Coopersmith <alan.coopersmith@oracle.com> 8447Date: Thu Jun 3 11:06:15 2010 -0700 8448 8449 Bug 22584 - libX11 does not cross compile 8450 8451 Adaptation of patch submitted by Paul Bender in attachment 27301 to 8452 https://bugs.freedesktop.org/show_bug.cgi?id=22584 8453 8454 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 8455 Reviewed-by: Mikhail Gusarov <dottedmag@dottedmag.net> 8456 Reviewed-by: Dan Nicholson <dbn.lists@gmail.com> 8457 8458commit 4378219ff8c1418418c70086085358b69d574e74 8459Author: Alan Coopersmith <alan.coopersmith@oracle.com> 8460Date: Tue Jun 1 18:55:48 2010 -0700 8461 8462 Clarify requirements in XRestackWindows man page 8463 8464 The required common parent window is not specified in the arguments, 8465 just implied as the parent of the first window in the list. 8466 8467 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 8468 8469commit f09c5299a381e2729e800a0ac43f1c0e371f65f6 8470Author: Jeremy Huddleston <jeremyhu@apple.com> 8471Date: Wed May 12 16:42:18 2010 -0700 8472 8473 xcb: Add TCP fallback 8474 8475 If we fail to connect to a UNIX socket and the transport isn't specified, 8476 fallback on TCP. This matches behavior with the xtrans codepath and the 8477 Xlib spec. 8478 8479 http://lists.x.org/archives/xorg-devel/2010-April/007915.html 8480 8481 Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com> 8482 Reviewed-by: Jamey Sharp <jamey@minilop.net> 8483 8484commit fd82552d5c0ce1931f29006a0c36f5e03cf8577e 8485Merge: aae2a4a7 933aee1d 8486Author: Jamey Sharp <jamey@minilop.net> 8487Date: Mon May 10 16:51:24 2010 -0700 8488 8489 Merge branch 'xlib-xcb-thread-fixes' 8490 8491commit aae2a4a7aab26de3fa715d6ecd0a0e0926b37fc9 8492Author: Jeremy Huddleston <jeremyhu@apple.com> 8493Date: Fri Apr 23 21:50:29 2010 -0700 8494 8495 Don't append the screen number when using a launchd socket 8496 8497 ssh gets confused by this. XQuartz is the only DDX using this 8498 functionality, and it doesn't support different screens, so 8499 let's just not include this until most ssh know how to handle 8500 this. 8501 8502 Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com> 8503 8504commit adcd0ec209abf832a769d52db660fb37eaad6e0c 8505Author: Jeremy Huddleston <jeremyhu@apple.com> 8506Date: Fri Apr 23 16:33:44 2010 -0700 8507 8508 Remove launchd logic from _XConnectXCB as it's handled in XCB 8509 8510 Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com> 8511 8512commit d232b259c36fdde1f4179822809fec1480867dc5 8513Author: Jeremy Huddleston <jeremyhu@apple.com> 8514Date: Tue Feb 2 17:01:28 2010 -0800 8515 8516 Fix various build warnings 8517 8518 imLcIm.c: In function '_XimCachedFileName': 8519 imLcIm.c:361: warning: format '%03x' expects type 'unsigned int', but argument 8 has type 'long unsigned int' 8520 imLcIm.c:364: warning: format '%03x' expects type 'unsigned int', but argument 8 has type 'long unsigned int' 8521 8522 imRm.c: In function '_XimDefaultArea': 8523 imRm.c:597: warning: cast from pointer to integer of different size 8524 imRm.c: In function '_XimDefaultColormap': 8525 imRm.c:626: warning: cast from pointer to integer of different size 8526 8527 lcFile.c:224: warning: no previous prototype for 'xlocaledir' 8528 8529 lcUTF8.c: In function 'iconv_cstombs': 8530 lcUTF8.c:1841: warning: assignment discards qualifiers from pointer target type 8531 lcUTF8.c:1869: warning: pointer targets in passing argument 1 of 'wctomb' differ in signedness 8532 lcUTF8.c:1873: warning: pointer targets in passing argument 1 of 'wctomb' differ in signedness 8533 lcUTF8.c: In function 'iconv_mbstocs': 8534 lcUTF8.c:1935: warning: pointer targets in passing argument 2 of 'mbtowc' differ in signedness 8535 lcUTF8.c: In function 'iconv_mbtocs': 8536 lcUTF8.c:2031: warning: pointer targets in passing argument 2 of 'mbtowc' differ in signedness 8537 lcUTF8.c: In function 'iconv_mbstostr': 8538 lcUTF8.c:2121: warning: pointer targets in passing argument 2 of 'mbtowc' differ in signedness 8539 lcUTF8.c: In function 'iconv_strtombs': 8540 lcUTF8.c:2180: warning: pointer targets in passing argument 1 of 'wctomb' differ in signedness 8541 lcUTF8.c: In function '_XlcAddGB18030LocaleConverters': 8542 lcUTF8.c:2367: warning: passing argument 5 of '_XlcSetConverter' from incompatible pointer type 8543 lcUTF8.c:2368: warning: passing argument 5 of '_XlcSetConverter' from incompatible pointer type 8544 lcUTF8.c:2373: warning: passing argument 5 of '_XlcSetConverter' from incompatible pointer type 8545 lcUTF8.c:2374: warning: passing argument 5 of '_XlcSetConverter' from incompatible pointer type 8546 lcUTF8.c:2375: warning: passing argument 5 of '_XlcSetConverter' from incompatible pointer type 8547 lcUTF8.c:2376: warning: passing argument 5 of '_XlcSetConverter' from incompatible pointer type 8548 lcUTF8.c:2377: warning: passing argument 5 of '_XlcSetConverter' from incompatible pointer type 8549 8550 XlibInt.c: In function '_XGetHostname': 8551 XlibInt.c:3441: warning: implicit declaration of function 'gethostname' 8552 XlibInt.c:3441: warning: nested extern declaration of 'gethostname' 8553 8554 ConnDis.c: In function '_XDisconnectDisplay': 8555 ConnDis.c:540: warning: old-style function definition 8556 ConnDis.c: In function '_XSendClientPrefix': 8557 ConnDis.c:554: warning: old-style function definition 8558 ConnDis.c: In function 'XSetAuthorization': 8559 ConnDis.c:677: warning: old-style function definition 8560 8561 Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com> 8562 8563commit 3e11c73187acb2e2be9a812840bbbea947527ccb 8564Author: Daniel Kahn Gillmor <dkg@fifthhorseman.net> 8565Date: Fri Apr 23 00:01:54 2010 +0200 8566 8567 Allow X11 users to compose anarchism 8568 8569 I can easily compose the hammer and sickle (the symbol representative 8570 of communism) by pressing the key sequence: 8571 8572 <Compose> <C> <C> <C> <P> -> ☭ 8573 8574 But i can't easily make the circled A (the symbol representative of 8575 anarchism). 8576 8577 I'd like to be able to use <Compose> <O> <A> (this is a 8578 currently unused key sequence) to generate the symbol: Ⓐ 8579 8580 Debian bug#555938 <http://bugs.debian.org/555938> 8581 8582 Signed-off-by: Julien Cristau <jcristau@debian.org> 8583 8584commit 933aee1d5c53b0cc7d608011a29188b594c8d70b 8585Author: Jamey Sharp <jamey@minilop.net> 8586Date: Fri Apr 16 20:18:28 2010 -0700 8587 8588 Fix Xlib/XCB for multi-threaded applications (with caveats). 8589 8590 Rather than trying to group all response processing in one monolithic 8591 process_responses function, let _XEventsQueued, _XReadEvents, and 8592 _XReply each do their own thing with a minimum of code that can all be 8593 reasoned about independently. 8594 8595 Tested with `ico -threads 20`, which seems to be able to make many 8596 icosahedrons dance at once quite nicely now. 8597 8598 Caveats: 8599 8600 - Anything that was not thread-safe in Xlib before XCB probably still 8601 isn't. XListFontsWithInfo, for instance. 8602 8603 - If one thread is waiting for events and another thread tries to read a 8604 reply, both will hang until an event arrives. Previously, if this 8605 happened it might work sometimes, but otherwise would trigger either 8606 an assertion failure or a permanent hang. 8607 8608 - Versions of libxcb up to and including 1.6 have a bug that can cause 8609 xcb_wait_for_event or xcb_wait_for_reply to hang if they run 8610 concurrently with xcb_writev or other writers. So you'll want that fix 8611 as well. 8612 8613 Signed-off-by: Jamey Sharp <jamey@minilop.net> 8614 Reviewed-by: Josh Triplett <josh@freedesktop.org> 8615 8616commit aab43278ae619eb57d2dd9c7396f460f078588fc 8617Author: Jamey Sharp <jamey@minilop.net> 8618Date: Fri Apr 16 22:24:16 2010 -0700 8619 8620 Use InternalLockDisplay on code paths called from LockDisplay. 8621 8622 It's easier to reason about the code when we can't re-enter the 8623 Xlib-private sync-handlers while they're already running. 8624 8625 Signed-off-by: Jamey Sharp <jamey@minilop.net> 8626 Reviewed-by: Josh Triplett <josh@freedesktop.org> 8627 8628commit 660b7d05f4ca4ab4661c9fe7ce655a4909b4e556 8629Author: Jamey Sharp <jamey@minilop.net> 8630Date: Fri Apr 16 19:45:11 2010 -0700 8631 8632 Fix _XSend to enqueue the right range of pending requests. 8633 8634 _XSend was off-by-one on both ends. It should not re-enqueue the last 8635 request that was already flushed, but it should enqueue the last request 8636 currently being flushed. 8637 8638 Signed-off-by: Jamey Sharp <jamey@minilop.net> 8639 Reviewed-by: Josh Triplett <josh@freedesktop.org> 8640 8641commit f2735889908d6e5a7f8dbee42f00c54a52665191 8642Author: Jamey Sharp <jamey@minilop.net> 8643Date: Fri Apr 16 19:45:11 2010 -0700 8644 8645 Pending requests are always added in-order. 8646 8647 Replace insert_pending_request, which did an in-order search of the 8648 queue to find the right insertion point, with a simpler 8649 append_pending_request, and use that in _XSend as well. 8650 8651 Includes assertions to check that the list of pending requests is in 8652 order by sequence number and does not have duplicates. 8653 8654 Signed-off-by: Jamey Sharp <jamey@minilop.net> 8655 Reviewed-by: Josh Triplett <josh@freedesktop.org> 8656 8657commit d9cf5885b0f97942fbbd2a7cc50118132ece50f6 8658Author: Markus Duft <markus.duft@salomon.at> 8659Date: Fri Apr 16 08:39:34 2010 -0700 8660 8661 Bug 26839: Fix build problem on Interix (POSIX layer on Windows) 8662 8663 https://bugs.freedesktop.org/show_bug.cgi?id=26839 8664 8665 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 8666 8667commit a3f5f1b90936d23e9894e3261b2d77fb7b32a51a 8668Author: Josh Triplett <josh@freedesktop.org> 8669Date: Thu Apr 15 14:24:21 2010 -0700 8670 8671 Stop returning an int from _XIDHandler and _XSeqSyncFunction 8672 8673 _XIDHandler and _XSeqSyncFunction originally ran from dpy->synchandler, and 8674 thus had to return an int. Now, they only run from _XPrivSyncHandler or 8675 LockDisplay, neither of which needs to check their return value since they 8676 always returned 0. Make them both void. 8677 8678 Signed-off-by: Josh Triplett <josh@freedesktop.org> 8679 Signed-off-by: Jamey Sharp <jamey@minilop.net> 8680 8681commit a6d974dc59f2722b36e2df9d4f07aeee4f83ce43 8682Author: Jamey Sharp <jamey@minilop.net> 8683Date: Thu Apr 15 13:05:08 2010 -0700 8684 8685 Move XID and sync handling from SyncHandle to LockDisplay to fix races. 8686 8687 XID and sync handling happened via _XPrivSyncHandler, assigned to 8688 dpy->synchandler and called from SyncHandle. _XPrivSyncHandler thus ran 8689 without the Display lock, so manipulating the Display caused races, and 8690 these races led to assertions in multithreaded code (demonstrated via 8691 ico). 8692 8693 In the XTHREADS case, after you've called XInitThreads, we can hook 8694 LockDisplay and UnlockDisplay. Use that to run _XIDHandler and 8695 _XSeqSyncHandler from LockDisplay rather than SyncHandle; we then know 8696 that we hold the lock, and thus we can avoid races. We think it makes 8697 sense to do these both from LockDisplay rather than UnlockDisplay, so 8698 that you know you have valid sync and a valid XID before you start 8699 setting up the request you locked to prepare. 8700 8701 In the !XTHREADS case, or if you haven't called XInitThreads, you don't 8702 get to use Xlib from multiple threads, so we can use the logic we have 8703 now (with synchandler and savedsynchandler) without any concern about 8704 races. 8705 8706 This approach gets a bit exciting when the XID and sequence sync 8707 handlers drop and re-acquire the Display lock. Reacquisition will re-run 8708 the handlers, but they return immediately unless they have work to do, 8709 so they can't recurse more than once. In the worst case, if both of 8710 them have work to do, we can nest the Display lock three deep. In the 8711 case of the _XIDHandler, we drop the lock to call xcb_generate_id, which 8712 takes the socket back if it needs to request more XIDs, and taking the 8713 socket back will reacquire the lock; we take care to avoid letting 8714 _XIDHandler run again and re-enter XCB from the return_socket callback 8715 (which causes Very Bad Things, and is Not Allowed). 8716 8717 Tested with ico (with 1 and 20 threads), and with several test programs 8718 for XID and sequence sync. Tested with and without XInitThreads(), and 8719 with and without XCB. 8720 8721 Fixes: https://bugs.freedesktop.org/show_bug.cgi?id=23192 8722 8723 Signed-off-by: Jamey Sharp <jamey@minilop.net> 8724 Signed-off-by: Josh Triplett <josh@freedesktop.org> 8725 8726commit b089b53b697c2851db2985d32af3b29f1da5e31e 8727Author: Jamey Sharp <jamey@minilop.net> 8728Date: Wed Apr 14 12:59:11 2010 -0700 8729 8730 Honest. Extensions get to filter async errors too. 8731 8732 Under some circumstances, errors are picked up by calling 8733 xcb_poll_for_reply, rather than xcb_poll_for_event, because Xlib issued 8734 the requests with the XCB_REQUEST_CHECKED flag. That happens when either 8735 an async handler is queued at the time the requests are flushed, or when 8736 XSetEventQueueOwner has been used to prevent Xlib from processing XCB's 8737 event queue. 8738 8739 This bugfix extends 405132dab64bf2375f8e57d02b1b53da2311933a to cover 8740 those cases. 8741 8742 Fixes: https://bugs.freedesktop.org/show_bug.cgi?id=26545 8743 8744 Signed-off-by: Jamey Sharp <jamey@minilop.net> 8745 8746commit a15c31274650e391bc6de5d0951eb4464c228139 8747Author: Jamey Sharp <jamey@minilop.net> 8748Date: Wed Apr 14 12:10:34 2010 -0700 8749 8750 _XError already runs async handlers; only call them directly for replies. 8751 8752 The previous behavior probably would have triggered bug reports someday. 8753 8754 Signed-off-by: Jamey Sharp <jamey@minilop.net> 8755 8756commit 405132dab64bf2375f8e57d02b1b53da2311933a 8757Author: Jamey Sharp <jamey@minilop.net> 8758Date: Tue Apr 13 12:12:36 2010 -0700 8759 8760 Extensions get to filter async errors too. 8761 8762 Apparently I misread XlibInt.c:_XReply and thought that handlers set 8763 with XESetError should be consulted only for the sequence number that 8764 _XReply is currently looking for. In fact, the error handlers are also 8765 consulted when an error arrives for a request that was not expected to 8766 have a reply. 8767 8768 However, in an odd twist, the error handlers are *not* consulted outside 8769 of _XReply--that is, when looking for events, or waiting to be able to 8770 flush the output queue. So this patch takes some small pains to preserve 8771 that behavior, though it seems likely to have been unintentional. 8772 8773 Fixes: https://bugs.freedesktop.org/show_bug.cgi?id=26545 8774 8775 Signed-off-by: Jamey Sharp <jamey@minilop.net> 8776 8777commit d3eab4a38f3e53ef21eb3b6fa66ead7afecf6227 8778Author: Jamey Sharp <jamey@minilop.net> 8779Date: Tue Apr 13 12:49:59 2010 -0700 8780 8781 Prefer the xcb_generic_error_t we already have over casting to xEvent. 8782 8783 Just a minor cleanup. 8784 8785 Signed-off-by: Jamey Sharp <jamey@minilop.net> 8786 8787commit 75ea8c37935ccc911557d16a303ba595b8ab106b 8788Author: Jamey Sharp <jamey@minilop.net> 8789Date: Mon Apr 12 11:30:20 2010 -0700 8790 8791 Run the user's synchandler as well as any internal synchandlers. 8792 8793 Fixes https://bugs.freedesktop.org/show_bug.cgi?id=27595 8794 8795 Signed-off-by: Jamey Sharp <jamey@minilop.net> 8796 8797commit c3f3e4a9e531d010312c97e753d6e543e607094d 8798Author: Kusanagi Kouichi <slash@ac.auone-net.jp> 8799Date: Fri Feb 12 17:16:10 2010 +0900 8800 8801 Fix manual typos. 8802 8803 Signed-off-by: Kusanagi Kouichi <slash@ac.auone-net.jp> 8804 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 8805 8806commit 75c6c5595408caba9ef8233839d77021d02f86f2 8807Author: Dirk Wallenstein <dirkwallenstein@t-online.de> 8808Date: Fri Feb 5 20:42:46 2010 +0100 8809 8810 man: Correct the XkbAllAccessXEventsMask mask name 8811 8812 This mask has probably been renamed but not been updated in the manuals. 8813 8814 Signed-off-by: Dirk Wallenstein <dirkwallenstein@t-online.de> 8815 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 8816 8817commit 9262aceaff24c954cab8c252690032bc2ec25e7d 8818Author: Dirk Wallenstein <dirkwallenstein@t-online.de> 8819Date: Fri Feb 5 20:42:45 2010 +0100 8820 8821 man: Add missing geometry component flag 8822 8823 Signed-off-by: Dirk Wallenstein <dirkwallenstein@t-online.de> 8824 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 8825 8826commit 50cf134465f6fd263f37acecac94518468ef1c6d 8827Author: Dirk Wallenstein <halsmit@t-online.de> 8828Date: Tue Feb 2 21:24:32 2010 +0100 8829 8830 man: Return value of XkbGetState is Status and not Bool 8831 8832 Signed-off-by: Dirk Wallenstein <halsmit@t-online.de> 8833 Reviewed-by: Julien Cristau <jcristau@debian.org> 8834 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 8835 8836commit 7a93ae2bb5292a97fdd27ed818bc81248b37f641 8837Author: Dirk Wallenstein <halsmit@t-online.de> 8838Date: Tue Feb 2 21:24:30 2010 +0100 8839 8840 man: Fix return value specification of XkbKeyActionEntry 8841 8842 The XkbKeyActionEntry macro expands to a pointer. 8843 8844 Signed-off-by: Dirk Wallenstein <halsmit@t-online.de> 8845 Reviewed-by: Julien Cristau <jcristau@debian.org> 8846 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 8847 8848commit e9884d4a05a5661ec343ea8a2aa0562b6419e086 8849Author: Dirk Wallenstein <halsmit@t-online.de> 8850Date: Tue Feb 2 21:24:29 2010 +0100 8851 8852 man: Redirect users from XKeycodeToKeysym to XkbKeycodeToKeysym #25732 8853 8854 XKeycodeToKeysym keeps compatibility with pre-XKB and thus only sees 2 8855 groups with 2 levels each. It wraps the index into the next group. 8856 This behavior confuses the unaware user, and therefore this will add a 8857 reference to XkbKeycodeToKeysym in the corresponding man paragraph. 8858 8859 Another bug had that issue, too. #5349 8860 8861 Signed-off-by: Dirk Wallenstein <halsmit@t-online.de> 8862 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 8863 8864commit 6474cdf97cd648afaeaa872155f3fa21cfb43f80 8865Author: Alan Coopersmith <alan.coopersmith@oracle.com> 8866Date: Thu Apr 8 19:59:55 2010 -0700 8867 8868 Fix typo in new fi_FI.UTF-8 that was reported by "make check" 8869 8870 Unrecognized pattern in Compose on line #154: 8871 <dead_diaeresis> <space> " "¨" 8872 8873 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 8874 8875commit 91bd5e7af2d3a9526aefb73dc10f417896f0e4dd 8876Author: Marko Myllynen <myllynen@redhat.com> 8877Date: Thu Apr 8 19:52:42 2010 -0700 8878 8879 Bug 27465 - Rewritten fi_FI.UTF-8 Compose file 8880 8881 I've rewritten the fi_FI.UTF-8 Compose file so that it 8882 8883 - includes en_US.UTF-8/Compose for base compose definitions (and thus gets any 8884 possible additions to en_US.UTF-8/Compose automatically included) 8885 - overrides any en_US.UTF-8/Compose definitions with fi_FI.UTF-8/Compose 8886 definitions (thus making it safe to include en_US.UTF-8/Compose) 8887 - lists all the definitions specified in the SFS 5966 standard (thus making it 8888 easy to verify that the implementation is valid and complete) 8889 - adds a header about the file itself as required by the standard 8890 8891 The rewritten version is ~320 lines compared to over 5000 lines of the previous 8892 version. 8893 8894 https://bugs.freedesktop.org/show_bug.cgi?id=27465 8895 8896commit f6a4fd0c7615684d08e848245849dea4017a5214 8897Author: Gaetan Nadon <memsize@videotron.ca> 8898Date: Thu Apr 1 21:46:12 2010 -0400 8899 8900 config: update and relocate AC_DEFINE_DIR macro 8901 8902 Remove deprecated acinclude.m4 macro container file 8903 Use separate macro files as per autoconf recommendation 8904 Use the latest macro from GNU (ax) which replaces 8905 the non-gnu version (ac) 8906 This preserves the Autoconf macro AC namespace. 8907 8908 Also moved out of acinclude.m4 is the DOLT macro 8909 8910 Signed-off-by: Gaetan Nadon <memsize@videotron.ca> 8911 8912commit 61d5231db418cec51bd718633c3bba39b18689d6 8913Author: Gaetan Nadon <memsize@videotron.ca> 8914Date: Mon Mar 29 14:53:48 2010 -0400 8915 8916 config: remove the pkgconfig pc.in file from EXTRA_DIST 8917 8918 Automake always includes it in the tarball. 8919 8920 Signed-off-by: Gaetan Nadon <memsize@videotron.ca> 8921 8922commit 69fc76a0321c6b25cc4286173c53435c69ab8e0e 8923Author: Fernando Carrijo <fcarrijo@yahoo.com.br> 8924Date: Wed Mar 17 23:53:16 2010 -0300 8925 8926 No need for req->firstKeyCode to be set twice. 8927 8928 There is no reason to set req->firstKeyCode twice when a client, wishful 8929 for changing keyboard mappings, calls XChangeKeyboardMapping. This patch 8930 fixes the mistake by making no functional changes to libX11 whatsoever. 8931 8932 Signed-off-by: Fernando Carrijo <fcarrijo@yahoo.com.br> 8933 Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net> 8934 8935commit b5797597f83ee62228abfb88f026ef92163e07a5 8936Author: Gaetan Nadon <memsize@videotron.ca> 8937Date: Tue Feb 16 10:37:21 2010 -0500 8938 8939 config: move CWARNFLAGS from configure.ac to Makefile.am 8940 8941 Compiler warning flags should be explicitly set in the makefile 8942 rather than being merged with other packages compiler flags. 8943 8944 Reviewed-by: Dan Nicholson <dbn.lists@gmail.com> 8945 Signed-off-by: Gaetan Nadon <memsize@videotron.ca> 8946 8947commit 052c4d7995b0e52a038933beb85cd544571c6b7e 8948Author: Gaetan Nadon <memsize@videotron.ca> 8949Date: Tue Feb 16 14:28:21 2010 -0500 8950 8951 specs: change install cmd due to automake 1.11 8952 8953 specData_INSTALL is defined in 1.9 and 1.10 but not 1.11 8954 8955 Signed-off-by: Gaetan Nadon <memsize@videotron.ca> 8956 8957commit 7277a18cda9f5a6807d11cf4ceb9449b1c302c18 8958Author: Gaetan Nadon <memsize@videotron.ca> 8959Date: Tue Feb 9 17:27:08 2010 -0500 8960 8961 doc: use $(mkdir_p) rather than $(MKDIR_P) due to automake 1.9.6 8962 8963 $(MKDIR_P) is not defined in automake 1.9. 8964 8965 Signed-off-by: Gaetan Nadon <memsize@videotron.ca> 8966 8967commit e66eda95b520727969d721416d4ea49b54ef2b03 8968Author: Gaetan Nadon <memsize@videotron.ca> 8969Date: Tue Feb 2 16:29:26 2010 -0500 8970 8971 specs: install html images in $docdir with html files 8972 8973 The images required by the html files have been omitted. 8974 8975 Signed-off-by: Gaetan Nadon <memsize@videotron.ca> 8976 8977commit 137d1ff6be99d040e77c8c4c52029c5bdf1f4808 8978Author: Gaetan Nadon <memsize@videotron.ca> 8979Date: Sun Jan 31 14:16:20 2010 -0500 8980 8981 doc: use new macros to control doc generation 8982 8983 Namely XORG_WITH_GROFF for the groff generation tool 8984 XORG_WITH_PS2PDF for the conversion of PS docs to PDF 8985 XORG_ENABLE_SPECS for the generation of specs 8986 8987 Signed-off-by: Gaetan Nadon <memsize@videotron.ca> 8988 8989commit 9ca583c5d6fcf9cd8151ee7b019630b141d32fab 8990Author: Gaetan Nadon <memsize@videotron.ca> 8991Date: Tue Jan 26 19:41:08 2010 -0500 8992 8993 doc: clean-up generated html images 8994 8995 Generate images in /images as is the convention 8996 Provide a base file name for images rather than process ID 8997 Remove images directory when running make clean 8998 8999 Signed-off-by: Gaetan Nadon <memsize@videotron.ca> 9000 9001commit eb289b34bfc9978eef724e0f268975938334c06c 9002Author: Kristian Høgsberg <krh@bitplanet.net> 9003Date: Thu Jan 21 13:39:17 2010 -0500 9004 9005 XErrorDB: Add new DRI2 request names 9006 9007commit 6babf2123d05adb9349394c49cc2d81d1f66cf9e 9008Author: Julien Cristau <jcristau@debian.org> 9009Date: Sat Jan 16 22:47:03 2010 +0000 9010 9011 man: Fix typo in Makefile 9012 9013 Missing line continuation was preventing the XCompose alias from being 9014 generated. 9015 9016 Signed-off-by: Julien Cristau <jcristau@debian.org> 9017 Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com> 9018 9019commit 68530599e61cf9fef3fcc91650e7cef21837fce7 9020Author: Alan Coopersmith <alan.coopersmith@sun.com> 9021Date: Sat Jan 16 11:41:32 2010 -0800 9022 9023 libX11 1.3.3 9024 9025 Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com> 9026 9027commit 1e5af224b9fbdb154620f898558704f2bc4bf4e9 9028Author: Alan Coopersmith <alan.coopersmith@sun.com> 9029Date: Thu Jan 14 18:33:39 2010 -0800 9030 9031 Update COPYING file with actual licenses from libX11 code & docs 9032 9033 COPYING was previously a years out-of-date copy of the LICENSES 9034 doc summarizing all licenses for all XFree86 components, many of 9035 which did not apply to libX11. 9036 9037 Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com> 9038 9039commit ddb1786720d6136b1b28be599c75c10ad1b76a2a 9040Author: Alan Coopersmith <alan.coopersmith@sun.com> 9041Date: Thu Jan 14 17:38:26 2010 -0800 9042 9043 Purge CVS/RCS id tags 9044 9045 Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com> 9046 9047commit c1db9ddcfa7091f173478dca45bf720badedfca4 9048Author: Alan Coopersmith <alan.coopersmith@sun.com> 9049Date: Thu Jan 14 15:39:14 2010 -0800 9050 9051 Update Sun license notices to current X.Org standard form 9052 9053 Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com> 9054 9055commit 1aaa7c0358c5c035b99625f5715cb722bc2d2a2f 9056Author: Alan Coopersmith <alan.coopersmith@sun.com> 9057Date: Thu Jan 14 08:28:22 2010 -0800 9058 9059 Add %S substitutions to Compose man page 9060 9061 Commit 9df349a7894725f9469b106af645f57f7f3f9af3 added support for %S 9062 in Compose file include statements - this documents it in the Compose 9063 file man page. 9064 9065 Also changes the existing substitution documentation to list format 9066 instead of a paragraph format to allow easier adding of %S. 9067 9068 Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com> 9069 9070commit 94b45db93058cffa25598fe27dd3e385ace9d305 9071Author: Richard Purdie <rpurdie@linux.intel.com> 9072Date: Thu Jan 14 08:04:28 2010 -0800 9073 9074 Fix configure.ac PKG_ macro calls 9075 9076 If the first call to PKG_CHECK_MODULES() may not be called during execution 9077 which is the case here since its inside a case statement, call 9078 PKG_PROG_PKG_CONFIG() to ensure things worked correctly. 9079 9080 Fixes a configure failure introduced by commit 9081 87529c039050ce3336ff9ce00f1b5a21d15690da when xcb is enabled. 9082 9083 http://bugs.freedesktop.org/show_bug.cgi?id=26041 9084 9085 Signed-off-by: Richard Purdie <rpurdie@linux.intel.com> 9086 Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com> 9087 9088commit df559d8bc2238a2c369152fcb06e5b5ab132a5dc 9089Author: Alan Coopersmith <alan.coopersmith@sun.com> 9090Date: Tue Jan 12 09:18:15 2010 -0800 9091 9092 Raise xorg-macros requirement to 1.4 9093 9094 Needed since the changes in 464390f16d7ed4aa5bf80f89863ba92273075ec2 9095 depend on the INSTALL file delivered in xorg-macros 1.4 9096 9097 Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com> 9098 9099commit 9df349a7894725f9469b106af645f57f7f3f9af3 9100Author: James Cloos <cloos@jhcloos.com> 9101Date: Wed Jan 13 11:04:38 2010 -0500 9102 9103 Allow inclusion of system level compose files. 9104 9105 With the release of XFree86 4.4 an inclusion system of compose files was 9106 added to Xlib to allow inclusion of the default compose file (with %L), 9107 any compose files from user’s home directory (with %H), or a compose 9108 file with a hard coded path¹. However, even today including system level 9109 compose files is not possible in a platform independent manner although 9110 the machinery for including compose files and overriding previously 9111 defined compositions is already in place. 9112 9113 With the ability to include system level compose files one could greatly 9114 reduce the need for compose file rule duplication and the work needed to 9115 propagate changes in one compose file to others. For example, currently 9116 the Finnish compose file fi_FI.UTF-8 weights over 5000 lines² but it 9117 is almost identical with en_US.UTF-8 except for perhaps half a dozen 9118 compositions. 9119 9120 This commit allows one to include system level compose files with the 9121 following kind of syntax: 9122 9123 include "%S/en_US.UTF-8/Compose" 9124 9125 1] http://www.xfree86.org/4.4.0/RELNOTES5.html#42 9126 2] http://cgit.freedesktop.org/xorg/lib/libX11/tree/nls/fi_FI.UTF-8/Compose.pre 9127 9128 Signed-off-by: Marko Myllynen <myllynen@redhat.com> 9129 Signed-off-by: James Cloos <cloos@jhcloos.com> 9130 9131commit ccf21a8877f40136e25f2f62d0668b0c76b3cfbd 9132Author: Thien-Thi Nguyen <ttn@gnuvola.org> 9133Date: Tue Dec 1 10:31:47 2009 +0100 9134 9135 libX11: Fix comment: Invert polarity (direction) of reformat description. 9136 9137 Signed-off-by: Thien-Thi Nguyen <ttn@gnuvola.org> 9138 Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com> 9139 9140commit 4d4676c0d6324d2ff9d00d15ab485fa5d848a369 9141Author: Osamu Sayama <osamu.sayama@sun.com> 9142Date: Tue Jan 5 17:26:40 2010 -0800 9143 9144 set_fontset_extents crash after get_rotate_fontname fix in 2bef065b70f7 9145 9146 - In set_fontset_extents, check font_data is not NULL before running 9147 loop that may increment it to a non-NULL invalid pointer. 9148 - Make sure get_rotate_fontname counts the final field 9149 9150 Fixes OpenSolaris bug 6913809: X application dumps core in ja_JP.UTF-8 locale 9151 <http://bugs.opensolaris.org/bugdatabase/view_bug.do?bug_id=6913809> 9152 9153 Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com> 9154 Reviewed-by: Adam Jackson <ajax@redhat.com> 9155 9156commit 87529c039050ce3336ff9ce00f1b5a21d15690da 9157Author: Alan Coopersmith <alan.coopersmith@sun.com> 9158Date: Tue Jan 5 18:02:37 2010 -0800 9159 9160 Merge X11, XKBPROTO, & XPROTO pkg-config lists 9161 9162 Since the XPROTO_CFLAGS & XKBPROTO_CFLAGS are just merged into X11_CFLAGS 9163 in configure.ac anyway, might as well combine the lists passed to 9164 PKG_CHECK_MODULES to reduce duplication in the flags. 9165 9166 Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com> 9167 Reviewed-by: Rémi Cardona <remi@gentoo.org> 9168 Acked-by: Peter Hutterer <peter.hutterer@who-t.net> 9169 9170commit 2dd053667b44c55e2bf601aec7b75fc6fee1cf44 9171Author: Alan Coopersmith <alan.coopersmith@sun.com> 9172Date: Tue Jan 5 17:56:58 2010 -0800 9173 9174 Add XCompose man page shadow for Compose man page 9175 9176 Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com> 9177 9178commit 02543bba816e065c02cd36e0c9e21519a9ee9c96 9179Author: Alan Coopersmith <alan.coopersmith@sun.com> 9180Date: Tue Jan 5 17:47:44 2010 -0800 9181 9182 Add $(AM_V_GEN) to silence lint rules too 9183 9184 Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com> 9185 9186commit db7c6fdeeaef9475458498e4cf09d6b1329e9aa3 9187Author: Alan Coopersmith <alan.coopersmith@sun.com> 9188Date: Tue Jan 5 17:42:42 2010 -0800 9189 9190 Remove GCC_WARNINGS now that XORG_CWARNFLAGS sets them for us 9191 9192 Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com> 9193 9194commit 6b4e526e7ba105622f6b143e8e2639b44cb6cc19 9195Author: Gaetan Nadon <memsize@videotron.ca> 9196Date: Sun Nov 29 10:44:24 2009 -0500 9197 9198 configure.ac: restore correct order for XORG_DEFAULT_OPTIONS 9199 9200 It must be following AC_USE_SYSTEM_EXTENSION 9201 9202commit 3dbaa11d1c8705e1b309c6686f354766b651ad20 9203Author: Gaetan Nadon <memsize@videotron.ca> 9204Date: Sun Nov 29 10:01:44 2009 -0500 9205 9206 Add .gitignore in /specs for generated files 9207 9208 Being in /specs, it will apply for all 3 subdirs 9209 9210commit f45d39d37aab04742e44cd8c3c993aad7587e40c 9211Author: Gaetan Nadon <memsize@videotron.ca> 9212Date: Fri Nov 27 20:56:03 2009 -0500 9213 9214 Makefile.am: add ChangeLog and INSTALL on MAINTAINERCLEANFILES 9215 9216 Now that the INSTALL file is generated. 9217 Allows running make maintainer-clean. 9218 9219commit 464390f16d7ed4aa5bf80f89863ba92273075ec2 9220Author: Gaetan Nadon <memsize@videotron.ca> 9221Date: Wed Oct 28 14:09:10 2009 -0400 9222 9223 INSTALL, NEWS, README or AUTHORS files are missing/incorrect #24206 9224 9225 Add missing INSTALL file. Use standard GNU file on building tarball 9226 README may have been updated 9227 Remove AUTHORS file as it is empty and no content available yet. 9228 Remove NEWS file as it is empty and no content available yet. 9229 9230commit 6360e7f0ce6a75da2bed33ede7fea783a1fb80e1 9231Author: Gaetan Nadon <memsize@videotron.ca> 9232Date: Tue Oct 27 15:07:25 2009 -0400 9233 9234 Deploy the new XORG_DEFAULT_OPTIONS #24242 9235 9236 This macro aggregate a number of existing macros that sets commmon 9237 X.Org components configuration options. It shields the configuration file from 9238 future changes. 9239 9240commit d02f943c98fde2f14319bc57fd9ad77eb9a2a572 9241Author: Gaetan Nadon <memsize@videotron.ca> 9242Date: Mon Oct 26 22:08:42 2009 -0400 9243 9244 Makefile.am: ChangeLog not required: EXTRA_DIST or *CLEANFILES #24432 9245 9246 ChangeLog filename is known to Automake and requires no further 9247 coding in the makefile. 9248 9249commit f77c89c751a6a63c8ef11ecdddca2aed11ff6e29 9250Author: Gaetan Nadon <memsize@videotron.ca> 9251Date: Thu Oct 22 12:34:19 2009 -0400 9252 9253 .gitignore: use common defaults with custom section # 24239 9254 9255 Using common defaults will reduce errors and maintenance. 9256 Only the very small or inexistent custom section need periodic maintenance 9257 when the structure of the component changes. Do not edit defaults. 9258 9259commit 46c7b0e9d0d85cf5ccc0d40d19821fcc3335503b 9260Author: Alan Coopersmith <alan.coopersmith@sun.com> 9261Date: Thu Nov 12 23:05:40 2009 -0800 9262 9263 Add compose-check.pl to EXTRA_DIST 9264 9265 Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com> 9266 9267commit 54c64267cc8bc98641cc39a22cb7bd71673e89e0 9268Author: Julien Cristau <jcristau@debian.org> 9269Date: Thu Oct 29 17:17:24 2009 +0100 9270 9271 man: fix XCopyGC argument order 9272 9273 Ubuntu bug#408337 9274 9275commit aad10032651cdc2a53b359035954454a28d6db67 9276Author: Alan Coopersmith <alan.coopersmith@sun.com> 9277Date: Fri Oct 23 13:55:14 2009 -0700 9278 9279 libX11 1.3.2 9280 9281 Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com> 9282 9283commit 6303ada89cb228c0f9656036f798703afb42fc29 9284Author: Peter Hutterer <peter.hutterer@who-t.net> 9285Date: Wed Oct 21 12:42:07 2009 +1000 9286 9287 Add smiley faces to compose sequences. 9288 9289 I wonder how we could have lasted that long without them. 9290 9291 Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net> 9292 Acked-by: Daniel Stone <daniel@fooishbar.org> 9293 Acked-By: James Cloos <cloos@jhcloos.com> 9294 9295commit 0e104ebd8628803c27e36b16922ad1edd891325a 9296Author: Alan Coopersmith <alan.coopersmith@sun.com> 9297Date: Thu Oct 22 23:12:30 2009 -0700 9298 9299 Add man page for Compose file format 9300 9301 Based on grammar description in modules/im/ximcp/imLcPrs.c and 9302 note on XFree86 changes formerly found in xorg-docs RELNOTES.sgml 9303 9304 Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com> 9305 9306commit 9c95f2af7c442b3a59b1a30cf804f1ef4e7fc5b5 9307Author: Jeremy Huddleston <jeremyhu@freedesktop.org> 9308Date: Tue Oct 20 12:46:03 2009 -0700 9309 9310 Add extra configuration and sanity checks for groff and ps2pdf 9311 9312 1) Add AC_ARG_VAR for GROFF and PS2PDF to inform users of these 9313 environment variables. 9314 2) Check that groff -ms works 9315 9316 Some distributions ship the ms macros as a separate package which may 9317 not be installed together with groff, so we need to make sure that groff 9318 works and the required macros are actually installed before attempting 9319 to build the specs. 9320 9321 Signed-off-by: Jeremy Huddleston <jeremyhu@freedesktop.org> 9322 Signed-off-by: Dan Nicholson <dbn.lists@gmail.com> 9323 Signed-off-by: Yaakov Selkowitz <yselkowitz@users.sourceforge.net> 9324 9325commit d3f801fd2f9198eaad6797414dba652f9c006c6d 9326Author: Yaakov Selkowitz <yselkowitz@users.sourceforge.net> 9327Date: Sun Oct 18 17:34:53 2009 -0500 9328 9329 Fix VPATH build of libX11 specs 9330 9331 Signed-off-by: Yaakov Selkowitz <yselkowitz@users.sourceforge.net> 9332 9333commit ad15e1a89d30ccc11d80745897b83def1448e8c0 9334Author: Alan Coopersmith <alan.coopersmith@sun.com> 9335Date: Sat Oct 17 16:14:34 2009 -0700 9336 9337 libX11 1.3.1 9338 9339 Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com> 9340 9341commit 0cbf98c17a7484bb58b2464b98d63bb3b4ea2594 9342Author: Alan Coopersmith <alan.coopersmith@sun.com> 9343Date: Sat Oct 17 16:28:25 2009 -0700 9344 9345 Fix make distcheck 9346 9347 Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com> 9348 9349commit 082e62ad268ef16a3bebc5a3c9fa008dbdc483ed 9350Author: Alan Coopersmith <alan.coopersmith@sun.com> 9351Date: Fri Oct 16 19:25:35 2009 -0700 9352 9353 Use $(AM_V_GEN) to silence echo commands for generating shadow man pages 9354 9355 Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com> 9356 9357commit 4e66da0783b2e5e3b288aaecd3c89396ed425c20 9358Author: Alan Coopersmith <alan.coopersmith@sun.com> 9359Date: Wed Oct 14 16:18:24 2009 -0700 9360 9361 Move libX11 & XIM/locale specs from xorg-docs 9362 9363 If groff is found, and --disable-specs is not passed to configure, 9364 specs will be converted to text, html and ps (or pdf if ps2pdf is 9365 found) and installed to $(docdir) 9366 9367 Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com> 9368 9369commit 5d3d817a42ddcc8d0c6efd33efd1442fe14f5c6b 9370Author: Yaakov Selkowitz <yselkowitz@users.sourceforge.net> 9371Date: Tue Oct 13 19:15:51 2009 -0500 9372 9373 Provide _Xsetlocale compat wrappers on Cygwin 9374 9375 Previous versions of Cygwin did not have proper locale support, so Cygwin/X 9376 defined X_LOCALE, using _Xsetlocale instead. Cygwin 1.7 has added locale 9377 support, but we can't remove the _Xsetlocale entry point without breaking 9378 ABI. 9379 9380 Signed-off-by: Yaakov Selkowitz <yselkowitz@users.sourceforge.net> 9381 9382commit 2c8b3a877a713bb66a6316a7051b43c46af6e1a0 9383Author: Yaakov Selkowitz <yselkowitz@users.sourceforge.net> 9384Date: Tue Oct 13 19:15:49 2009 -0500 9385 9386 dolt: add Cygwin to supported platforms 9387 9388 Signed-off-by: Yaakov Selkowitz <yselkowitz@users.sourceforge.net> 9389 9390commit a2c8e3e34b15b57ff881a52101fc961a602f35e4 9391Author: Alan Coopersmith <alan.coopersmith@sun.com> 9392Date: Wed Oct 14 13:23:30 2009 -0700 9393 9394 Recognize XSUNBUFFERSIZE alias for XLIBBUFFERSIZE on Solaris 9395 9396 Also fix indenting of the XLIBBUFFERSIZE code to match surrounding code 9397 9398 Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com> 9399 9400commit 34ddfca7b7d58240b0fe74bec6b2e0652d15c051 9401Author: Jon TURNEY <jon.turney@dronecode.org.uk> 9402Date: Tue Feb 10 17:47:25 2009 +0000 9403 9404 Include sys/select.h for select() and struct timeval, if it exists 9405 9406 This is a cygwin build fix 9407 9408commit 383165916ddac91740d4c780174d4c0d07cdb994 9409Author: Xake <xake@rymdraket.net> 9410Date: Sun Sep 27 11:16:36 2009 +0200 9411 9412 Use AM_V_GEN instead of customized macros for AM_SILENT_RULES 9413 9414 Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com> 9415 9416commit 854269d55cdda8caf425515bfed2855e211a5ada 9417Author: Julien Cristau <jcristau@debian.org> 9418Date: Tue Oct 6 16:11:24 2009 +0200 9419 9420 configure: quote argument to m4_pattern_forbid 9421 9422 Without this, configure spits out 9423 ../configure: line 12364: ac_fn_c_check_member: command not found 9424 ../configure: line 12378: ac_fn_c_check_type: command not found 9425 9426 Also anchor the pattern to make it stricter. 9427 9428 Signed-off-by: Julien Cristau <jcristau@debian.org> 9429 9430commit 3bb020587ce74e0737ec7aceb20041f1e77d3b87 9431Author: Jeremy Huddleston <jeremyhu@freedesktop.org> 9432Date: Thu Oct 1 22:20:38 2009 -0700 9433 9434 Split CFLAGS into CPPFLAGS and CFLAGS 9435 9436 On some build systems, CPPFLAGS is set to "-I/some/prefix/include". If older 9437 X11 headers are in /some/prefix/include, they will be preferred over the 9438 shipped headers. This corrects that problem. 9439 9440commit d54caf1c9c55af8247621b7ba6afb20b23699839 9441Author: Peter Hutterer <peter.hutterer@who-t.net> 9442Date: Fri Oct 2 10:59:08 2009 +1000 9443 9444 libX11 1.3 9445 9446 Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net> 9447 9448commit dd201bcf9e7f8863b7ef32273a5ef021678133c1 9449Author: Peter Hutterer <peter.hutterer@who-t.net> 9450Date: Fri Oct 2 12:10:29 2009 +1000 9451 9452 nls: remove duplicate Compose sequences from pt_BR.UTF-8 9453 9454 Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net> 9455 9456commit a293ae9e83739067fc92db1a39c262857bc2283e 9457Author: Peter Hutterer <peter.hutterer@who-t.net> 9458Date: Fri Sep 25 11:19:41 2009 +1000 9459 9460 Add XF86TouchpadToggle to XKeysymDB 9461 9462 Lenovo laptops provide a key to enable or disable the touchpad and the 9463 trackstick. This key is usually located on Fn + F8. 9464 9465 Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net> 9466 Acked-by: Adam Jackson <ajax@redhat.com> 9467 9468commit 69839f8903a24eab08f17a781b3797fb64dce9cf 9469Author: Alan Coopersmith <alan.coopersmith@sun.com> 9470Date: Sun Sep 27 10:34:16 2009 -0700 9471 9472 Bug 24173: libX11 from git fails to build with automake older then 1.11 9473 9474 AM_CONDITIONAL must come *before* the AC_OUTPUT that creates the 9475 Makefiles, instead of after. 9476 <http://bugs.freedesktop.org/show_bug.cgi?id=24173> 9477 9478 Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com> 9479 9480commit f5effd041f58ef07703cca2b4f396758811e1eec 9481Author: Alan Coopersmith <alan.coopersmith@sun.com> 9482Date: Wed Apr 15 10:59:23 2009 -0700 9483 9484 Resolve conflicting Compose sequences in iso8859-2, el_GR.UTF-8 & pt_BR.UTF-8 9485 9486 Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com> 9487 9488commit 3843778358d3a0cd6a2d07dba5dd061248053ac9 9489Author: Alan Coopersmith <alan.coopersmith@sun.com> 9490Date: Wed Apr 15 10:56:09 2009 -0700 9491 9492 Add perl script to check for duplicate or conflicting compose file entries 9493 9494 Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com> 9495 9496commit 19cc5e1fa17a285045662820a8b4de2a0f9a194d 9497Author: Alan Coopersmith <alan.coopersmith@sun.com> 9498Date: Fri Sep 18 17:10:04 2009 -0700 9499 9500 Use make rules instead of shell for loops to generate shadow man pages 9501 9502 Allows parallel make and simpler build logs/error reporting 9503 9504 Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com> 9505 9506commit 7dabcac973d0b6692a3cd62bd6d8e0467b24200b 9507Author: Alan Coopersmith <alan.coopersmith@sun.com> 9508Date: Fri Sep 18 16:58:53 2009 -0700 9509 9510 Add AM_SILENT_RULES support for cpp rules for man & nls files 9511 9512 Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com> 9513 9514commit bfa19cddd8546b4930a773f3bbd81137c362d82b 9515Author: Alan Coopersmith <alan.coopersmith@sun.com> 9516Date: Fri Sep 18 16:58:16 2009 -0700 9517 9518 Update to using xorg-macros 1.3 & XORG_DEFAULT_OPTIONS 9519 9520 Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com> 9521 9522commit 51396066c8003a96a6399c9a4bed2a81e512b582 9523Author: Mikko Niskanen <mikko.niskanen@iki.fi> 9524Date: Fri Sep 4 10:11:15 2009 +1000 9525 9526 Fix wrong typedef on HP-UX (#18998) 9527 9528 shl_dt doesn't exist, the type is shl_t. 9529 9530 X.Org Bug 18998 <http://bugs.freedesktop.org/show_bug.cgi?id=18998> 9531 9532 Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net> 9533 9534commit 615220a312b9430a580fe6dcf51703c6ef244f66 9535Author: Paul Bender <pebender@gmail.com> 9536Date: Fri Sep 4 09:57:10 2009 +1000 9537 9538 Don't require xdmcp in configure.ac (#22583) 9539 9540 X.Org Bug 22583 <http://bugs.freedesktop.org/show_bug.cgi?id=22583> 9541 9542 Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net> 9543 9544commit 20f9ecd86ad2a9ac6966f7eee32234cb5ef77c29 9545Author: Peter Hutterer <peter.hutterer@who-t.net> 9546Date: Thu Sep 3 14:02:44 2009 +1000 9547 9548 man: fix parameters to XkbAllocGeomOverlay{Rows|Keys} (#23499) 9549 9550 X.Org Bug 23499 <http://bugs.freedesktop.org/show_bug.cgi?id=23499> 9551 9552 Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net> 9553 9554commit c2814a614dc4d9409bfa0f44c18bfd69ad7f7b85 9555Author: Peter Hutterer <peter.hutterer@who-t.net> 9556Date: Thu Sep 3 12:05:25 2009 +1000 9557 9558 man: XQueryTree may return BadWindow. (#23416) 9559 9560 X.Org Bug 23416 <http://bugs.freedesktop.org/show_bug.cgi?id=XXX> 9561 9562 Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net> 9563 9564commit dbe98d456ccc6eeca9fa3e241a3db0a4d83c5a65 9565Author: Alan Coopersmith <alan.coopersmith@sun.com> 9566Date: Fri Aug 28 23:07:58 2009 +0800 9567 9568 Fix version tag in .TH line of several XKB man pages 9569 9570 Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com> 9571 9572commit bf24400936c10af6f5aa0c75cfe2207ab9b680b4 9573Author: Alan Coopersmith <alan.coopersmith@sun.com> 9574Date: Fri Aug 28 23:04:38 2009 +0800 9575 9576 XkbSetDeviceButtonActions.man: remove non-existent actions argument 9577 9578 Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com> 9579 9580commit 53affa9335116f2d367f041e6502a411d4619e47 9581Author: Alan Coopersmith <alan.coopersmith@sun.com> 9582Date: Fri Aug 28 23:00:17 2009 +0800 9583 9584 XkbQueryExtension.man: Arguments should be pointers 9585 9586 Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com> 9587 9588commit 6233948885acc5873a5abddfff235afec555f3c2 9589Author: Alan Coopersmith <alan.coopersmith@sun.com> 9590Date: Fri Aug 28 22:53:03 2009 +0800 9591 9592 XkbSAActionSetCtrls.man: Fix typo in formatting macro 9593 9594 Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com> 9595 9596commit 28a9ca57cdec4aa9ca92322f963b01f0c2daf47a 9597Author: Alan Coopersmith <alan.coopersmith@sun.com> 9598Date: Fri Aug 28 22:49:31 2009 +0800 9599 9600 Convert Xkb API man pages to ANSI prototypes 9601 9602 Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com> 9603 9604commit fa2eecca85baab9616f7143cc1a853a594b4a90c 9605Author: James Cloos <cloos@jhcloos.com> 9606Date: Mon Aug 24 06:35:17 2009 -0400 9607 9608 Add some (Serbian) Cyrillic NFD sequences. 9609 9610 A number of characters in use in the various countries which use the 9611 Cyrillic script do not appear as pre-composed characters in The UCS 9612 or Unicode; they are only available as combining-character sequences. 9613 9614 This commit adds support for using (prefix) dead keys and Multi_key- 9615 initiated sequences to enter a number of these combining-character 9616 sequences. This ensures that users can enter these scripts even 9617 when using the current Cyrillic keymaps, which lack support for 9618 the combining characters. 9619 9620 Please see the discussions on the xkb mailing list. 9621 9622 Signed-off-by: James Cloos <cloos@jhcloos.com> 9623 9624commit d1bdc909f9246119696c8b0d9afb7bd8afb71b60 9625Author: Julien Cristau <jcristau@debian.org> 9626Date: Wed Aug 5 18:14:23 2009 +0200 9627 9628 man/xkb: delete spurious newline in .TH headers 9629 9630commit ee723b83b24682db833a2f0abd96cd319b8a62af 9631Author: Julien Cristau <jcristau@debian.org> 9632Date: Wed Aug 5 16:45:19 2009 +0200 9633 9634 man: use __libmansuffix__ instead of 3X11 for references to other pages 9635 9636commit 595e204feb82c798a92eea41fea03be6476ac181 9637Author: Julien Cristau <jcristau@debian.org> 9638Date: Wed Aug 5 16:43:36 2009 +0200 9639 9640 man/xkb: use __libmansuffix__ instead of hardcoding 3Xkb for manpage sections 9641 9642commit 9da7e230d5320e1556ad2084fcd06ee7994385ea 9643Author: Peter Hutterer <peter.hutterer@who-t.net> 9644Date: Wed Aug 5 14:15:02 2009 +1000 9645 9646 Bump to 1.2.99.901 (1.3 RC1) 9647 9648 Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net> 9649 9650commit 8f78c7b4e3570cd46c5a220982963c17fe2157b8 9651Author: Filippo Giunchedi <filippo@debian.org> 9652Date: Sat Jun 6 16:56:54 2009 +0200 9653 9654 nls: add {left,right}wards arrow to compose table 9655 9656 Debian bug#532117 <http://bugs.debian.org/532117> 9657 9658 Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net> 9659 9660commit 7949bfa00390241d994f32463e50d4bd78920568 9661Author: Julien Cristau <jcristau@debian.org> 9662Date: Fri Jul 31 13:33:52 2009 +0200 9663 9664 Update library version for new symbols 9665 9666 Commit 554f755e5545f63d3c8f299297927238da155773 added generic event 9667 cookie handling. Bump libX11 version number accordingly. 9668 9669 Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net> 9670 9671commit 640fec5f4feacd01a00eea3dcd4edb220907d3dc 9672Author: Julien Cristau <jcristau@debian.org> 9673Date: Sun Aug 2 17:18:31 2009 +0200 9674 9675 Add _XFUNCPROTOBEGIN/END to Xlib-xcb.h 9676 9677 X.Org bug#22252 <https://bugs.freedesktop.org/show_bug.cgi?id=22252> 9678 9679 Reported-by: Riku Salminen <rsalmin2@cc.hut.fi> 9680 Signed-off-by: Julien Cristau <jcristau@debian.org> 9681 9682commit bc06d49e9dac1836d6824769ddb2ac5ba9f14df7 9683Author: Peter Hutterer <peter.hutterer@who-t.net> 9684Date: Wed Jul 29 08:44:09 2009 +1000 9685 9686 Fix compiler warning 'unused variable qelt' 9687 9688 Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net> 9689 9690commit 03f4907e14f5755e72309f08742977b871e81e33 9691Author: Peter Hutterer <peter.hutterer@who-t.net> 9692Date: Wed Jul 29 08:34:57 2009 +1000 9693 9694 Add utlist.h to the Makefile.am 9695 9696 utlist.h contains the linked list macros, it was added with the recent 9697 addition of event cookies but utlist.h wasn't added to the Makefile.am. As a 9698 result, make dist failed. 9699 9700 Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net> 9701 9702commit 554f755e5545f63d3c8f299297927238da155773 9703Author: Peter Hutterer <peter.hutterer@who-t.net> 9704Date: Fri Jun 26 11:27:43 2009 +1000 9705 9706 Add generic event cookie handling to libX11. 9707 9708 Generic events require more bytes than Xlib provides in the standard XEvent. 9709 Memory allocated by the extension and stored as pointers inside the event is 9710 prone to leak by simple 'while (1) { XNextEvent(...); }' loops. 9711 9712 This patch adds cookie handling for generic events. Extensions may register 9713 a cookie handler in addition to the normal event vectors. If an extension 9714 has registered a cookie handler, _all_ generic events for this extensions 9715 must be handled through cookies. Otherwise, the default event handler is 9716 used. 9717 9718 The cookie handler must return an XGenericEventCookie with a pointer to the 9719 data.The rest of the event (type, serialNumber, etc.) are to be filled as 9720 normal. When a client retrieves such a cookie event, the data is stored in 9721 an internal queue (the 'cookiejar'). This data is freed on the next call to 9722 XNextEvent(). 9723 9724 New extension interfaces: 9725 XESetWireToEventCookie(display, extension_number, cookie_handler) 9726 9727 Where cookie_handler must set cookie->data. The data pointer is of arbitray 9728 size and type but must be a single memory block. This memory block 9729 represents the actual extension's event. 9730 9731 New client interfaces: 9732 XGetEventData(display, *cookie); 9733 XFreeEventData(display, *cookie); 9734 9735 If the client needs the actual event data, it must call XGetEventData() with 9736 the cookie. This returns the data pointer (and removes it from the cookie 9737 jar) and the client is then responsible for freeing the event with 9738 XFreeEventData(). It is safe to call either function with a non-cookie 9739 event. Events unclaimed or not handled by the XGetEventData() are cleaned up 9740 automatically. 9741 9742 Example client code: 9743 XEvent event; 9744 XGenericEventCookie *cookie = &ev; 9745 9746 XNextEvent(display, &event); 9747 if (XGetEventData(display, cookie)) { 9748 XIEvent *xievent = cookie->data; 9749 ... 9750 } else if (cookie->type == GenericEvent) { 9751 /* handle generic event */ 9752 } else { 9753 /* handle extension/core event */ 9754 } 9755 XFreeEventData(display, cookie); 9756 9757 Cookies are not multi-threading safe. Clients that use XGetEventData() must 9758 lock between XNextEvent and XGetEventData to avoid other threads freeing 9759 cookies. 9760 9761 Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net> 9762 9763commit d7675cb8fa7155e7aff1459636a117a97aa1bf28 9764Author: Peter Hutterer <peter.hutterer@who-t.net> 9765Date: Mon Jul 6 13:17:35 2009 +1000 9766 9767 Bump to 1.2.99.1 9768 9769 Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net> 9770 9771commit 75fe48e7a42a685d7098e8d7108b9b956c471563 9772Author: Peter Hutterer <peter.hutterer@who-t.net> 9773Date: Fri Jul 10 14:07:34 2009 +1000 9774 9775 Bump to 1.2.2 9776 9777 Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net> 9778 9779commit 5d0fe0e0e92759af5667c5dca2eacb1b6f2d66ea 9780Author: Peter Hutterer <peter.hutterer@who-t.net> 9781Date: Thu Jul 2 09:10:25 2009 +1000 9782 9783 XMaskEvent/XCheckMaskedEvents must not check for GenericEvents. 9784 9785 GenericEvent cannot be selected for in the core event masks and they must 9786 thus be treated like extension events. 9787 9788 Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net> 9789 9790commit c1bf65b89f4e361f6178a73dd5334c8f2bd95732 9791Author: Peter Hutterer <peter.hutterer@who-t.net> 9792Date: Thu Jul 2 09:06:05 2009 +1000 9793 9794 XWindowEvent/XCheckWindowEvent must not return GenericEvents. 9795 9796 GenericEvents have no fixed position for the window, so they must be treated 9797 like extension events. 9798 9799 Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net> 9800 9801commit 38f9054554d63525d2dd51aafb5eb57821158ab9 9802Author: Alan Coopersmith <alan.coopersmith@sun.com> 9803Date: Mon Jun 15 19:00:43 2009 -0700 9804 9805 Drop ancient USG SysV #ifdefs 9806 9807 Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com> 9808 9809commit 7bfe1323f16a1a69cc474659f7ac0c2570b1cf42 9810Author: Adam Jackson <ajax@redhat.com> 9811Date: Fri Jun 12 12:44:01 2009 -0400 9812 9813 Remove X_NOT_STDC_ENV usage. (#6527) 9814 9815commit 6dd74d7fb414ca1e99bae5c13e333961f396eb36 9816Author: Julien Cristau <jcristau@debian.org> 9817Date: Fri May 29 11:18:11 2009 +0200 9818 9819 nls: remove more duplicated aliases 9820 9821 Signed-off-by: Julien Cristau <jcristau@debian.org> 9822 9823commit e4b0899f516da224010e68bd2d953d5293d94993 9824Author: parag <parag@rawhideTM.pnq.redhat.com> 9825Date: Thu May 28 11:29:35 2009 +0530 9826 9827 nls: Add pa_PK locale information and make pa_IN as default for pa. 9828 9829 X.Org bug#21954 <http://bugs.freedesktop.org/show_bug.cgi?id=21954> 9830 9831 [jcristau: removed the pa_PK.UTF-8 alias to itself] 9832 9833 Signed-off-by: parag <pnemade@redhat.com> 9834 Signed-off-by: Julien Cristau <jcristau@debian.org> 9835 9836commit f0ea1f6d51145592f8617854f9320ec5dbff3299 9837Author: Julien Cristau <jcristau@debian.org> 9838Date: Fri May 29 10:58:20 2009 +0200 9839 9840 nls: remove broken sd_IN.UTF-8 alias 9841 9842 Signed-off-by: Julien Cristau <jcristau@debian.org> 9843 9844commit e29e010dabdb17d6498f2ef1786f69b8830c18ca 9845Author: Julien Cristau <jcristau@debian.org> 9846Date: Fri May 29 10:57:43 2009 +0200 9847 9848 nls: remove duplicated en_US* aliases 9849 9850 Signed-off-by: Julien Cristau <jcristau@debian.org> 9851 9852commit a89a300d87852c84389ad97db66dcb8930cb45dd 9853Author: Caolan McNamara <caolanm@redhat.com> 9854Date: Thu May 21 18:41:05 2009 +0200 9855 9856 man: missing space in XAllocColor man page 9857 9858 X.Org bug#21854 <http://bugs.freedesktop.org/show_bug.cgi?id=21854> 9859 9860commit c1c001e36504fd304f76f69bf6af3643225c49ea 9861Author: James Cloos <cloos@jhcloos.com> 9862Date: Wed May 13 13:03:54 2009 -0400 9863 9864 [nls] Replace remaining UCS Combining Characters in Compose sequences. 9865 9866 The replaces the instances of keysyms which match <U03[0-6][0-9A-Fa-f]>, 9867 where the keysym is used as a dead_key, with an actual dead_key symbol. 9868 9869 The only remaining instances of UCS combining characters in the 9870 compose sequences are of U0338 COMBINING LONG SOLIDUS OVERLAY 9871 used as a suffix in Multi_key-initiated sequences to create 9872 mathematics characters such as ∉ U+2209 NOT AN ELEMENT OF 9873 from ∈ U+2208 ELEMENT OF. 9874 9875commit e2b0bad3d3b9e9ca781fc264eb7584afbe2a1a4f 9876Author: James Cloos <cloos@jhcloos.com> 9877Date: Wed May 13 09:58:59 2009 -0400 9878 9879 [nls] Remove extraneous instances of UCS Combining Characters in Compose sequences. 9880 9881 This removes those instances of keysyms which match <U03[0-6][0-9A-Fa-f]>, 9882 where the matching keysym is used as a dead_key, and for which alternative 9883 compose sequences exist. 9884 9885commit 79f47e6dff2f0a0b673bbfecc47528edca814baa 9886Author: James Cloos <cloos@jhcloos.com> 9887Date: Fri May 8 20:11:54 2009 -0400 9888 9889 [nls] Remove combining_ keysyms from the Compose files 9890 9891 Some of the UTF-8 Compose tables included combining_ keysyms in 9892 the compose sequences as though they were dead symbols. This 9893 is contrary to how combining characters are used in the UCS. 9894 Therefore, those lines have been removed from the Compose tables. 9895 9896 There were also some combining_ keysyms as targets. As those 9897 are not included in x11proto’s keysymdef.h, and as those do 9898 exist there as Uxxxx keysyms, they are replaced with the Uxxxx 9899 keysym names. 9900 9901 This addresses http://bugzilla.freedesktop.org/show_bug.cgi?id=5107 9902 and is based on attachment 25644 by samuel.thibault@ens-lyon.org. 9903 9904 Signed-off-by: James Cloos <cloos@jhcloos.com> 9905 9906commit 4a08a3dfbda497b2be46e3e5fe6b777815ea27f9 9907Author: parag <pnemade@redhat.com> 9908Date: Tue May 5 16:50:47 2009 +0530 9909 9910 libX11: Add new Indic language information to nls directory files. #21560 9911 9912 Signed-off-by: parag <pnemade@redhat.com> 9913 9914commit aaf81096eb44b4c2812108721ba02738391884da 9915Author: Alan Coopersmith <alan.coopersmith@sun.com> 9916Date: Sat May 2 01:38:14 2009 -0700 9917 9918 Correct return type in XkbGetKeyboard man page 9919 9920 Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com> 9921 9922commit 2bef065b70f70af520b5de8fb23529254d15f003 9923Author: Christoph Pfister <christophpfister@gmail.com> 9924Date: Mon Apr 27 22:32:57 2009 -0700 9925 9926 X.Org Bug #21117: crash in get_rotate_fontname (omGeneric.c) 9927 9928 http://bugs.freedesktop.org/show_bug.cgi?id=21117 9929 9930 Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com> 9931 9932commit 5c1cde105db10df24d3c532f032cbc59050c7313 9933Author: Alan Coopersmith <alan.coopersmith@sun.com> 9934Date: Fri Apr 17 22:14:47 2009 -0700 9935 9936 Use AC_USE_SYSTEM_EXTENSIONS instead of hand-rolled check for _GNU_SOURCE 9937 9938 Raises minimum autoconf version required to 2.60 9939 9940 Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com> 9941 9942commit 84b7a91ef84f345384e4b0e13907385ca3ca3255 9943Author: Julien Cristau <jcristau@debian.org> 9944Date: Tue Apr 14 15:59:57 2009 +0100 9945 9946 Fix fi_FI.UTF-8, again 9947 9948 Commit 97fc6babd4ccaf300e25708868aa2a738893dc30 "NLS: Add UTF-8 compose 9949 file for Finnish" made fi_FI.UTF-8 use a broken empty XLC_LOCALE file. 9950 This reverts it back to using the en_US.UTF-8 one. 9951 9952commit 128daff4422f973ea40dd1e31b2db230e643549e 9953Author: Theppitak Karoonboonyanan <thep@linux.thai.net> 9954Date: Thu Apr 9 12:01:07 2009 +0700 9955 9956 Thai XIM not retrieve MB surrounding on UTF-8 LC 9957 9958 On th_TH.UTF-8 locale, Thai XIM rejects all combining characters for GTK+ apps 9959 that use X Input Method. 9960 9961 This is because GTK+ imxim immodule passes surrounding text in locale encoding, 9962 which is UTF-8 for UTF-8 locales. But current Thai XIM in Xlib assumes the 9963 multi-byte StringConversionText response for the StringConversionCallback to 9964 always be TIS-620, by retrieving a single byte and using it as-is. 9965 9966 If the Thai XIM tries to convert the multi-byte text based on locale codeset 9967 before using it, it will work again. 9968 9969 X.Org But 12759 <http://bugs.freedesktop.org/show_bug.cgi?id=12759> 9970 9971 Signed-off-by: Theppitak Karoonboonyanan <thep@linux.thai.net> 9972 Signed-off-by: Julien Cristau <jcristau@debian.org> 9973 9974commit e09f0d227fbf95b6252759af9d426efd57686f9f 9975Author: Theppitak Karoonboonyanan <thep@linux.thai.net> 9976Date: Thu Apr 9 11:47:55 2009 +0700 9977 9978 Thai XIM not filters when NumLock or CapsLock is on 9979 9980 The Thai XIM component in libx11 activated on 'th*' locales normally filters 9981 input sequence according to orthographic rules. However, when NumLock/CapsLock 9982 is on, this stops working. All sequences are passed through. 9983 9984 This is caused by missing masks in _XimThaiFilter(), which normally screens out 9985 certain special keys from entering orthographic rules. Unfortunately, this 9986 included events with NumLock/CapsLock on. Negating the masks from the check 9987 allows the events to be tested by the rules. 9988 9989 X.Org Bug 12517 <http://bugs.freedesktop.org/show_bug.cgi?id=12517> 9990 9991 Signed-off-by: Theppitak Karoonboonyanan <thep@linux.thai.net> 9992 Signed-off-by: Julien Cristau <jcristau@debian.org> 9993 9994commit d108d3c706af3502820b5202564488ea19908b77 9995Author: Theppitak Karoonboonyanan <thep@linux.thai.net> 9996Date: Thu Apr 9 11:25:25 2009 +0700 9997 9998 CharSet-to-CompoundText Conversion Failed for Thai Locales 9999 10000 SCIM fails to commit Thai input characters on Thai locales, because it commits 10001 string in compound text form, which was converted via 10002 XwcTextListToTextProperty(). But the XLC_LOCALE for th_TH and th_TH.UTF-8 10003 declares cs1's ct_encoding as TIS620-0:GR, which was commented out in 10004 src/xlibi18n/lcCT.c default_ct_data, in favor of ISO8859-11 ESC sequence. 10005 So, declaring cs1 as ISO8859-11:GR instead makes it work. 10006 10007 Besides, for th_TH.UTF-8, adding cs2 class with ISO10646-1 encoding also adds 10008 support for UTF-8 input. 10009 10010 And, along discussion in the bug, a similar problem was found for fontset, too, 10011 by causing delays on X apps startups on systems without tis620-0 fonts. This 10012 is normally the case, as mkfontdir and mkfontscale generate iso8859-11 entries 10013 by default for Thai X fonts. So, Thai fontset charset is also patched. 10014 10015 X.Org Bug 16475 <http://bugs.freedesktop.org/show_bug.cgi?id=16475> 10016 10017 Signed-off-by: Theppitak Karoonboonyanan <thep@linux.thai.net> 10018 Signed-off-by: Julien Cristau <jcristau@debian.org> 10019 10020commit fd62d3318c846cd43d66a505946e94704d7d83dc 10021Author: Alan Coopersmith <alan.coopersmith@sun.com> 10022Date: Wed Apr 8 19:42:25 2009 -0700 10023 10024 Revert "Change masculine to ordmasculine in Compose file comments" 10025 10026 This reverts commit 892b401d5acc055803a20e349ede0d64490f2230. 10027 10028 As Julien Cristau correctly points out, I misread the Compose file grammar 10029 in modules/im/ximcp/imLcPrs.c, and those are keysyms, not comments, and 10030 the keysym is named XK_masculine in keysymdef.h. This change is thus a 10031 bug in the Solaris compose tables to be fixed, not an improvement to bring 10032 upstream. 10033 10034commit eac57c77afdf44f50692225b8b0345a7c927bc84 10035Author: Alan Coopersmith <alan.coopersmith@sun.com> 10036Date: Tue Apr 7 15:38:45 2009 -0700 10037 10038 Version bump: 1.2.1 10039 10040 Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com> 10041 10042commit bfbec08baec33c5024510b0bcbbee6e4a8473e79 10043Author: Yaakov Selkowitz (Cygwin Ports maintainer) <yselkowitz@users.sourceforge.net> 10044Date: Tue Apr 7 13:46:57 2009 -0700 10045 10046 Bug 20773: Xcursor dynamic loading on Cygwin 10047 10048 X.Org Bug #20773 <http://bugs.freedesktop.org/show_bug.cgi?id=20773> 10049 Patch #24096 <http://bugs.freedesktop.org/attachment.cgi?id=24096> 10050 10051 Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com> 10052 10053commit c8c41614911be4fa222fa22478677d263b41c751 10054Author: Alan Coopersmith <alan.coopersmith@sun.com> 10055Date: Mon Apr 6 16:52:46 2009 -0700 10056 10057 Fix a several sparse warnings: Using plain integer as NULL pointer 10058 10059 Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com> 10060 10061commit b336c3d0cc2aefc8926500cff5f76b5a3e803886 10062Author: Alan Coopersmith <alan.coopersmith@sun.com> 10063Date: Mon Apr 6 16:32:05 2009 -0700 10064 10065 Further ansify prototypes & reduce #ifdefs in locking.c 10066 10067 Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com> 10068 10069commit 892b401d5acc055803a20e349ede0d64490f2230 10070Author: Alan Coopersmith <alan.coopersmith@sun.com> 10071Date: Mon Apr 6 10:50:09 2009 -0700 10072 10073 Change masculine to ordmasculine in Compose file comments 10074 10075 Matches the ordfeminine name used for the matching character, 10076 and the ordmasculine name used in many font descriptions of the glyph. 10077 10078 Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com> 10079 10080commit e3198b55dc16ec57346cc28aa8d34165ce8cde96 10081Author: Julien Cristau <jcristau@debian.org> 10082Date: Fri Mar 13 13:52:33 2009 +0100 10083 10084 Add a ru_RU.UTF-8 locale 10085 10086 Based on patch by Eugene Konev <ejka@imfi.kspu.ru> for X.Org 6.9.0. 10087 10088 Debian bug#330144 <http://bugs.debian.org/330144> 10089 X.Org bug#15887 <http://bugs.freedesktop.org/show_bug.cgi?id=15887> 10090 10091commit d239de9452691d6f875e6e5ace3d499ec3bf14d9 10092Author: Alan Coopersmith <alan.coopersmith@sun.com> 10093Date: Wed Mar 25 17:59:09 2009 -0700 10094 10095 Delete some unused "#ifdef notdef" static functions 10096 10097 Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com> 10098 10099commit 4281892e31058ef3aecc96a5767824b34d88d415 10100Author: Alan Coopersmith <alan.coopersmith@sun.com> 10101Date: Wed Mar 25 17:52:48 2009 -0700 10102 10103 Remove _XP_PRINT_SERVER_ #ifdefs from Xrm.c 10104 10105 This copy of Xrm.c is never compiled into the Xprint server any more, so 10106 this old code-sharing #ifdef from the monolith tree isn't needed. 10107 10108 Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com> 10109 10110commit 27a2e16e8ea11c1604e28645fae4d6ba4371d513 10111Author: Alan Coopersmith <alan.coopersmith@sun.com> 10112Date: Tue Mar 17 18:38:58 2009 -0700 10113 10114 makekeys: combine malloc(strlen)+strcpy into strdup 10115 10116 Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com> 10117 10118commit 78a894231ae8ec4959007b6d9b8d2a15d6333a1e 10119Author: Alan Coopersmith <alan.coopersmith@sun.com> 10120Date: Tue Mar 17 15:42:19 2009 -0700 10121 10122 When makekeys fails to find a good hash, print error instead of divide-by-zero 10123 10124 Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com> 10125 10126commit c9f84af591d15fbc3fa890bcd955d94f1ff82a0b 10127Author: Alan Coopersmith <alan.coopersmith@sun.com> 10128Date: Tue Mar 17 14:59:16 2009 -0700 10129 10130 Remove ifdef checks for macII left over from ancient A/UX 3.0 support 10131 10132 Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com> 10133 10134commit 4b90da0ffb32b791d915ecae11996cc2f2cac9a7 10135Author: Alan Coopersmith <alan.coopersmith@sun.com> 10136Date: Mon Mar 16 18:37:49 2009 -0700 10137 10138 XErrorDB additions for DRI2 requests 10139 10140 Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com> 10141 10142commit 273f45af1441be9d2135e4cac8c46ceb33470236 10143Author: Alan Coopersmith <alan.coopersmith@sun.com> 10144Date: Mon Mar 16 18:35:44 2009 -0700 10145 10146 XErrorDB additions for XInput errors and new XInput 1.5 requests 10147 10148 Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com> 10149 10150commit 90ef36f6336068183bf9d13ca972202db35b1202 10151Author: Alan Coopersmith <alan.coopersmith@sun.com> 10152Date: Mon Mar 16 18:23:05 2009 -0700 10153 10154 XErrorDB additions for RANDR 1.3 10155 10156 Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com> 10157 10158commit 124a4efaccf329f1a44f6b824e70278bdd1cad83 10159Author: Lubos Lunak <l.lunak@suse.cz> 10160Date: Mon Mar 16 18:03:36 2009 -0700 10161 10162 XErrorDB updates for XTEST, RANDR, DAMAGE extensions 10163 10164 From http://lists.freedesktop.org/archives/xorg/2008-January/031937.html 10165 10166 Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com> 10167 10168commit 80811846e37b805fddb37c71589fd5f6f6037b3f 10169Author: Lubos Lunak <l.lunak@suse.cz> 10170Date: Mon Mar 16 17:57:52 2009 -0700 10171 10172 XGetErrorText() fails for extension error codes equal to the error base 10173 10174 From http://lists.freedesktop.org/archives/xorg/2008-January/031937.html 10175 10176 Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com> 10177 10178commit da95ecbbdcacc483cd0b5fd7db1fb2e2543341bd 10179Author: Milos Komarcevic <miloskomarcevic@netscape.net> 10180Date: Mon Mar 16 17:43:26 2009 -0700 10181 10182 Bug 11456: Serbian locale updates (sr_RS and sr_ME) 10183 10184 X.Org Bug #11456 <http://bugs.freedesktop.org/show_bug.cgi?id=11456> 10185 Patch #23937 <http://bugs.freedesktop.org/attachment.cgi?id=23937> 10186 10187 Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com> 10188 10189commit 934a6c0519a9e32505beee55b004f36c2a710217 10190Author: Alan Coopersmith <alan.coopersmith@sun.com> 10191Date: Mon Mar 16 14:55:22 2009 -0700 10192 10193 Bug 10082: Compose entries for some standard mathematical operators 10194 10195 X.Org Bug #10082 <http://bugs.freedesktop.org/show_bug.cgi?id=10082> 10196 10197 Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com> 10198 10199commit abf4da1ed0f735ca7ce471dc13a0ec3677391486 10200Author: Alan Coopersmith <alan.coopersmith@sun.com> 10201Date: Mon Mar 16 14:27:46 2009 -0700 10202 10203 Bug 14651: We need to add new locale specification for Belarusian Latin locale 10204 10205 X.Org Bug #14651 <http://bugs.freedesktop.org/show_bug.cgi?id=14651> 10206 10207 Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com> 10208 10209commit 837703c8651e1321a50147a8311c56e4758ce08a 10210Author: Caolan McNamara <caolanm@redhat.com> 10211Date: Mon Mar 16 14:15:50 2009 -0700 10212 10213 Bug 20575: man page for XCreatePixmapFromBitmapData doesn't match signature 10214 10215 X.Org Bug #20575 <http://bugs.freedesktop.org/show_bug.cgi?id=20575> 10216 Patch #23717 <http://bugs.freedesktop.org/attachment.cgi?id=23717> 10217 10218 Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com> 10219 10220commit 22199018879055d8653e59d8236bef57164fac66 10221Author: Alan Coopersmith <alan.coopersmith@sun.com> 10222Date: Mon Mar 16 13:28:18 2009 -0700 10223 10224 Correct locale alias for sh_BA.ISO8859-2@bosnia (should be sr, not nr) 10225 10226 Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com> 10227 10228commit 4c63c27eab2b88f5556dbf72c36321f50f6de35e 10229Author: Alan Coopersmith <alan.coopersmith@sun.com> 10230Date: Thu Mar 12 18:57:20 2009 -0700 10231 10232 Bug 9953: Please provide locale alias hu_HU.utf8 10233 10234 X.Org Bug #9953 <http://bugs.freedesktop.org/show_bug.cgi?id=9953> 10235 Debian Bug #407573 <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=407573> 10236 10237 Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com> 10238 10239commit 501f4e0ada1690783ada05ad412e4b191ad55336 10240Author: Alan Coopersmith <alan.coopersmith@sun.com> 10241Date: Thu Mar 12 17:38:21 2009 -0700 10242 10243 Bug 6820: Xlib shouldn't handle EAGAIN as a fatal IO error 10244 10245 X.Org Bug #6820 <http://bugs.freedesktop.org/show_bug.cgi?id=6820> 10246 Patch #17637 <http://bugs.freedesktop.org/attachment.cgi?id=17637> 10247 10248 Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com> 10249 10250commit 7b9c543e7210c7da204871c31a160e79d3a949b6 10251Author: Paul Bender <pebender@gmail.com> 10252Date: Thu Mar 12 17:11:42 2009 -0700 10253 10254 Bug 15664: xau & xdmcp not needed in x11.pc dependencies when built with xcb 10255 10256 X.Org bug #15664 <https://bugs.freedesktop.org/show_bug.cgi?id=15664> 10257 Patch #16128 <https://bugs.freedesktop.org/attachment.cgi?id=16128> 10258 10259 Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com> 10260 10261commit fd2cf1ef66c2aff3dc758956c9e9e567b9892c06 10262Author: Xue Wei <Wei.Xue@Sun.COM> 10263Date: Wed Mar 4 19:32:29 2009 -0800 10264 10265 Add UTF-8 locale entries for es_US, kk_KZ, mt_MT, and sh_BA 10266 10267 Sun bug 6809309 Add new utf8 locales supported by Xlib 10268 <http://bugs.opensolaris.org/bugdatabase/view_bug.do?bug_id=6809309> 10269 10270 Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com> 10271 10272commit cb70c9bc43267577859a3674ca9de9be396ba69e 10273Author: Alan Coopersmith <alan.coopersmith@sun.com> 10274Date: Mon Feb 23 19:29:15 2009 -0800 10275 10276 Add --with-locale-lib-dir configure option to set locale lib install dir 10277 10278 Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com> 10279 10280commit ccd3584f0330db8dac90b9313c33ab8b5b2ec6af 10281Author: Alan Coopersmith <alan.coopersmith@sun.com> 10282Date: Mon Feb 23 18:33:51 2009 -0800 10283 10284 Incorporate more locale names/aliases from Solaris libX11 10285 10286 Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com> 10287 10288commit 83ce4daefdf544f801c7d666c89162690a36ce41 10289Author: Alan Coopersmith <alan.coopersmith@sun.com> 10290Date: Mon Feb 23 18:32:34 2009 -0800 10291 10292 Incorporate char range comments from Solaris version of ksc5601.h 10293 10294 Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com> 10295 10296commit ee279c84e34f1ebb8a6ff17d54ee146d11e29764 10297Author: Chris Ball <cjb@laptop.org> 10298Date: Sat Feb 21 14:48:42 2009 -0500 10299 10300 Fix fi_FI locale install directory. 10301 10302 fi_FI was setting "x11thislocaledir" to en_US, with the result that its 10303 locale data was written in that locale dir. 10304 10305 Signed-off-by: Chris Ball <cjb@laptop.org> 10306 10307commit da6bbca07c796c69172a649405474f03bee66754 10308Author: Emilio Jesús Gallego Arias <egallego@babel.ls.fi.upm.es> 10309Date: Sat Feb 21 20:17:23 2009 +0100 10310 10311 xcb_io: Avoid datatype overflow on AMD64 and friends. 10312 10313commit 4ef6491afa69e8441caee7bbebc583e6e796275e 10314Author: Chris Ball <cjb@laptop.org> 10315Date: Sat Feb 21 12:51:03 2009 -0500 10316 10317 Build fix for fi_FI. 10318 10319 Commit 642c4e928e770e0.. instructs make to enter nls/fi_FI, but no 10320 Makefile is written there by configure. 10321 10322 Signed-off-by: Chris Ball <cjb@laptop.org> 10323 10324commit 642c4e928e770e012379539a6ce09e11c02f09a6 10325Author: Julien Cristau <jcristau@debian.org> 10326Date: Sat Feb 21 03:12:05 2009 +0100 10327 10328 nls: actually use the fi_FI.UTF-8 files 10329 10330 The subdir wasn't added to nls/Makefile.am 10331 10332commit 9bad8309ef289bb943651abf6967b24fa2252aac 10333Author: Alan Coopersmith <alan.coopersmith@sun.com> 10334Date: Fri Feb 20 14:45:54 2009 -0800 10335 10336 flags member of Display structure needs to be marked volatile 10337 10338 Since the Xlib multithreaded code checks the flags variable in _XFlushInt 10339 to see if the other threads are done yet, it has to be marked volatile so 10340 the compiler doesn't optimize out re-loading it on each trip through the 10341 while loop and end up in an impossible-to-exit infinite loop of CPU chewing. 10342 10343 Part of fix for Sun bug 6409332: infinite loop in XFlushInt() on x86/32-bit 10344 <http://bugs.opensolaris.org/bugdatabase/view_bug.do?bug_id=6409332> 10345 10346 Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com> 10347 10348commit ef5c446395aa30d7b1096a112e241a81c5b358e7 10349Author: Xue Wei <Wei.Xue@Sun.COM> 10350Date: Fri Feb 20 15:12:35 2009 -0800 10351 10352 Add nn_NO.UTF-8 to compose.dir.pre for Norwegian Nynorsk 10353 10354 Sun bug 6691236: Swing applications dump core when locale is nn_NO.UTF-8 10355 <http://bugs.opensolaris.org/bugdatabase/view_bug.do?bug_id=6691236> 10356 10357 Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com> 10358 10359commit 3822f2654e9630167f0c6cae317b472c09771672 10360Author: Xue Wei <Wei.Xue@Sun.COM> 10361Date: Fri Feb 20 15:03:51 2009 -0800 10362 10363 Add locale aliases for no_NO & sh_BA locale variants 10364 10365 Fixes Sun bug id 6691219: xterm refuses to start in some locales 10366 <http://bugs.opensolaris.org/bugdatabase/view_bug.do?bug_id=6691219> 10367 10368 Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com> 10369 10370commit 63b6b5b5f522c0a606b32163c643edb64ca91d54 10371Author: Xue Wei <Wei.Xue@Sun.COM> 10372Date: Fri Feb 20 14:23:11 2009 -0800 10373 10374 Add kk_KZ.UTF-8 to locale.dir.pre for Kazakhstan 10375 10376 Fixes Sun bug id 6737254 ("kk_KZ.UTF-8 locale: In Java applications 10377 changing keyboard layout with gimlet does not work") 10378 <http://bugs.opensolaris.org/bugdatabase/view_bug.do?bug_id=6737254> 10379 10380 Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com> 10381 10382commit d497301707962f3b94542e999a36abffcfbd303d 10383Author: Julien Cristau <jcristau@debian.org> 10384Date: Tue Feb 17 16:09:41 2009 +0100 10385 10386 Bump to 1.2 10387 10388commit 990e71361d1d7b79bf07b1dc93e4e905d4f1bdaf 10389Author: Julien Cristau <jcristau@debian.org> 10390Date: Tue Feb 17 15:23:40 2009 +0100 10391 10392 Check Xmalloc return value in _XConnectXCB 10393 10394 X.Org bug#19137 <http://bugs.freedesktop.org/show_bug.cgi?id=19137> 10395 10396 Signed-off-by: Julien Cristau <jcristau@debian.org> 10397 10398commit b4b5893f69419ff577bbaa4d18f78e4ffd729a0c 10399Author: James Cloos <cloos@jhcloos.com> 10400Date: Sat Feb 14 12:35:56 2009 -0500 10401 10402 dolt: allow older versions of bash to compile the library 10403 10404 Cf xserver commit 7be6520d and bugzilla #19031. 10405 10406commit 20982d6866e24453642b0b592fa0f13a88aa747c 10407Author: Will Thompson <will@willthompson.co.uk> 10408Date: Thu Feb 5 02:53:06 2009 +1100 10409 10410 NLS: Compose: Non-aliasing CCCP 10411 10412 Oops, cccp aliased cc for question mark. Upper-case it to avoid fail. 10413 10414 Signed-off-by: Will Thompson <will@willthompson.co.uk> 10415 Signed-off-by: Daniel Stone <daniel@fooishbar.org> (sorry) 10416 10417commit f052665394f3f0319e93a98f1d5d4ea287e1dd07 10418Author: Will Thompson <will@willthompson.co.uk> 10419Date: Wed Feb 4 14:51:11 2009 +0000 10420 10421 Add two essential compose sequences 10422 10423 Signed-off-by: Will Thompson <will@willthompson.co.uk> 10424 Signed-off-by: Daniel Stone <daniel@fooishbar.org> 10425 10426commit d7bea6fa909bf34c43efe0ca8239ab0f9f3a415f 10427Author: Alan Coopersmith <alan.coopersmith@sun.com> 10428Date: Mon Feb 2 20:34:31 2009 -0800 10429 10430 Add README with pointers to mailing list, bugzilla & git repos 10431 10432 Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com> 10433 10434commit f682c27e93512773122887d2cbabb1657af45d2e 10435Author: Paulo Cesar Pereira de Andrade <pcpa@mandriva.com.br> 10436Date: Mon Feb 2 16:36:39 2009 -0200 10437 10438 Check if a function argument is NULL. 10439 10440 This was an addition to patch (also by me) 10441 https://bugs.freedesktop.org/attachment.cgi?id=14660 10442 that was not added when rediscovering/correcting the problem. 10443 10444commit 427e9d45d424b84efd9fc499aebf8d72392844c5 10445Author: Paulo Cesar Pereira de Andrade <pcpa@mandriva.com.br> 10446Date: Thu Feb 28 15:58:12 2008 -0300 10447 10448 Allow multiple inclusions of cursorfont.h, cosmetic patch. 10449 10450commit b91524a53e691f6a5d278fd8972b48a14ebeedeb 10451Author: Paulo Cesar Pereira de Andrade <pcpa@mandriva.com.br> 10452Date: Thu Feb 28 15:54:43 2008 -0300 10453 10454 Don't add prototypes for functions that don't exist. 10455 10456 Note that a full review was not done, only for functions that receive 10457 char/short arguments, or one of it's parameters is a function pointer 10458 that requires char/short arguments. 10459 10460commit 537eb52fe266ac439c4b383bb04a70017b709911 10461Author: Paulo Cesar Pereira de Andrade <pcpa@mandriva.com.br> 10462Date: Thu Feb 28 15:50:27 2008 -0300 10463 10464 WORD64 compile fix. This bug catched on a overview of the code. 10465 10466 The code is wrong since the first git revision, so it seens that it has 10467 not been compiled with WORD64 for quite some time, there is also another 10468 interesting code in xkb/XKBRdBuf.c: 10469 <hash>ifdef WORD64 10470 _XkbWriteCopyData32 Not Implemented Yet for sizeof(int)==8 10471 <hash>endif 10472 and possibly there are other similar problems. 10473 10474commit ffd0300fb74c6183208ae599133f2ded09e08d97 10475Author: Brian Rogers <brian@xyzw.org> 10476Date: Sat Jan 31 10:37:51 2009 -0800 10477 10478 Initialize event_notify after allocating the memory for it. 10479 10480 An uninitialized or otherwise invalid condition variable can apparently 10481 cause a hang in pthread_cond_broadcast. Ekiga, openoffice, and xine 10482 at least are freezing as a result of event_notify never being initialized. 10483 10484 Signed-off-by: Brian Rogers <brian@xyzw.org> 10485 Signed-off-by: Bart Massey <bart@cs.pdx.edu> 10486 10487commit 97fc6babd4ccaf300e25708868aa2a738893dc30 10488Author: James Cloos <cloos@jhcloos.com> 10489Date: Thu Jan 29 20:10:41 2009 -0500 10490 10491 NLS: Add UTF-8 compose file for Finnish 10492 10493 From bug report: 10494 10495 https://bugs.freedesktop.org/show_bug.cgi?id=18747 10496 10497commit 1bd2966ed88f83479a066c6ca7da23a515979550 10498Author: Paulo Cesar Pereira de Andrade <pcpa@mandriva.com.br> 10499Date: Thu Jan 29 20:25:15 2009 -0200 10500 10501 patches to avoid gcc warnings for libX11 (#4) 10502 10503 Author is Peter Breitenlohner <peb@mppmu.mpg.de> 10504 Bug #17946, attachment #19443 10505 10506 This patch avoids the gcc warning 10507 ../../../../libX11-1.1.5/modules/im/ximcp/imDefLkup.c:223: warning: passing arg 1 of `_XimProcSyncReply' from incompatible pointer type 10508 (same as already done at other places) 10509 10510 BTW: what is the difference between XIM (the type of ic->core.im) 10511 and Xim ? 10512 10513commit f16dd6af3eb17a25b8ee03d6617a7acc6e919fb0 10514Author: Paulo Cesar Pereira de Andrade <pcpa@mandriva.com.br> 10515Date: Thu Jan 29 20:22:21 2009 -0200 10516 10517 patches to avoid gcc warnings for libX11 (#3) 10518 10519 Author is Peter Breitenlohner <peb@mppmu.mpg.de> 10520 Bug #17946, attachment #19441 10521 10522 This patch avoids the two gcc warnings 10523 ../../../../libX11-1.1.5/modules/im/ximcp/imRm.c:413: warning: assignment discards qualifiers from pointer target type 10524 ../../../../libX11-1.1.5/modules/im/ximcp/imRm.c:450: warning: assignment discards qualifiers from pointer target type 10525 10526 Note, that this as a rather crude fix of the problem (and it is really a 10527 shame to cast name_table to non-const). 10528 10529 The right solution would be to declare XIMValuesList.supported_values 10530 (in include/X11/Xlib.h) as 'const char **' (or '_Xconst char **'). 10531 This will, however, require extensive modifications in various places. 10532 10533commit cce75c5dce73fe1f8626ed9e6798138ada09a860 10534Author: Paulo Cesar Pereira de Andrade <pcpa@mandriva.com.br> 10535Date: Thu Jan 29 20:20:18 2009 -0200 10536 10537 patches to avoid gcc warnings for libX11 (#2) 10538 10539 Author is Peter Breitenlohner <peb@mppmu.mpg.de> 10540 Bug #17946, attachment #19440 10541 10542 Avoid a preprocessor message 10543 <stdin>:194: warning: no newline at end of file 10544 10545 Two more such warnings (in XkbSAGroup.man and XkbSASetGroup.man) 10546 seem to be caused by a truncated (or otherwise incomplete) 10547 manpage. 10548 10549commit 692baebcc50f1e952800bfe4e2e6bc42f54e62fe 10550Author: Paulo Cesar Pereira de Andrade <pcpa@mandriva.com.br> 10551Date: Thu Jan 29 20:12:24 2009 -0200 10552 10553 patches to avoid gcc warnings for libX11 (#1) 10554 10555 Author is Peter Breitenlohner <peb@mppmu.mpg.de> 10556 Bug #17946, attachment #19439 10557 10558 Define as 1 (one) as done by autoconf and the command line 10559 option, e.g. -DX11_t, not as empty. 10560 10561 This avoids the gcc (3.4.6) warnings: 10562 ../../libX11-1.1.5/src/x11_trans.c:27:1: warning: "X11_t" redefined 10563 <command line>:7:1: warning: this is the location of the previous definition 10564 ../../libX11-1.1.5/src/x11_trans.c:28:1: warning: "TRANS_CLIENT" redefined 10565 <command line>:8:1: warning: this is the location of the previous definition 10566 10567 Similarly, follow the autoconf convention to define XTHREADS 10568 and XUSE_MTSAFE_API as one. 10569 10570 This avoids analogous warnings when compiling libXcomposite, 10571 libXcursor, and libXdamage. 10572 10573 No reason to AC_SUBST XTHREADS and XUSE_MTSAFE_API (unused). 10574 10575commit a1977883c9f5ef0e515569d6e2ebccb07411f98c 10576Author: Paulo Cesar Pereira de Andrade <pcpa@mandriva.com.br> 10577Date: Thu Jan 29 15:01:06 2009 -0200 10578 10579 Janitor: Correct some gcc/sparse warnings. 10580 10581 Most remaining warnings are about XIM/Xim to/from conversion 10582 and discarding const from pointers. 10583 10584commit 8ba0ca32a63c532f128bdca7f1bf982cab8e12be 10585Author: Paulo Cesar Pereira de Andrade <pcpa@mandriva.com.br> 10586Date: Wed Jan 28 20:31:42 2009 -0200 10587 10588 Janitor: ansification, make distcheck, compiler warnings. 10589 10590 Only convert to use "ansi prototypes" the functions warned from 10591 compilation with "./autogen.sh --prefix=/usr", on a Linux computer. 10592 10593 Also, only address "trivial" compiler warning fixes in this commit. 10594 10595 The new .gitignore is the output of a command like: 10596 % find . -name .gitignore -exec cat {} \; | sort | uniq 10597 and only the toplevel .gitignore file was kept. 10598 10599commit 091c1624fd2f9d933329d6152e4ecd865aa7903a 10600Author: Peter Hutterer <peter.hutterer@who-t.net> 10601Date: Tue Jan 13 12:05:54 2009 +1000 10602 10603 Fix wrong implies symbol. 10604 10605 Quote Simos Xenitellis: 10606 > I checked the gtk+ commit logs that go back to 2000, and I see that still it 10607 > was 10608 > 10609 > { 0x08ce, 0x21d2 }, /* implies ⇒ RIGHTWARDS 10610 > DOUBLE ARROW */ 10611 > 10612 > In XFree86, it appears there was an error when they converted the 10613 > original table to 10614 > http://cvsweb.xfree86.org/cvsweb/xc/lib/X11/imKStoUCS.c?rev=1.1&content-type=text/vnd.viewcvs-markup 10615 > and the problem still shows up there (November 2000). 10616 10617 http://lists.freedesktop.org/archives/xorg/2008-October/039743.html 10618 10619 Reported by Erik Streb del Toro. 10620 10621commit e32521f19e0b07649b7e3a03d56a2bd556b138fb 10622Author: James Cloos <cloos@jhcloos.com> 10623Date: Sun Dec 7 04:13:34 2008 -0500 10624 10625 [i18n] s/U00DC/Udiaeresis/g 10626 10627 The xkeyboard-config keyboards generate the symbol Udiaeresis, not 10628 U00DC. Make sure the relevant Compose sequences expect the symbol 10629 which the keyboards actually send. 10630 10631commit b7502abfe22f8dc009b21cda1172af221d8f9f32 10632Author: James Cloos <cloos@jhcloos.com> 10633Date: Sun Dec 7 04:09:46 2008 -0500 10634 10635 Revert "For nls/*.pre, allow people to comment lines by starting them with '##'." 10636 10637 As of commit c9d20e3 the initial double-hashes are replaced with proper C comments. 10638 10639 This reverts commit a225a0be48770beb689d5ac5da97073634f7deab. 10640 10641commit c9d20e3f697c9cfae5511412023362c1db7449b1 10642Author: James Cloos <cloos@jhcloos.com> 10643Date: Sun Dec 7 04:08:23 2008 -0500 10644 10645 Use C comments rather than initial doubled hashes to exclude lines from .pre files 10646 10647commit c34ce54d9eac2d8052dc5f205a2ab09866ef5d25 10648Author: vehemens <vehemens@verizon.net> 10649Date: Sun Dec 7 01:18:26 2008 -0500 10650 10651 [i18n] Distribute new headers which were added for gb18030 support. 10652 10653 big5hkscs.h and gbk.h, added in 67e34d7a, need to be in SOURCES to 10654 make it into the tar. 10655 10656 Completes 67e34d7a82ccd31f1208c0c43a6d58c3c05bf51. 10657 10658 Signed-off-by: James Cloos <cloos@jhcloos.com> 10659 10660commit 418819558d2c60e58b4e3022ce0fadf2143488ac 10661Author: Stefan Dirsch <sndirsch@suse.de> 10662Date: Sat Nov 22 22:01:07 2008 +0100 10663 10664 Fixed strange font mixups, when fontsets are still used (#2676, Novell #74299). 10665 10666commit 67e34d7a82ccd31f1208c0c43a6d58c3c05bf51a 10667Author: Stefan Dirsch <sndirsch@suse.de> 10668Date: Sat Nov 22 19:40:54 2008 +0100 10669 10670 Added remaining xlib patch required for gb18030 support (#1573). 10671 10672commit 55782a0a1fe1560f1a9c0ed78bc7f2575c15abcf 10673Author: Stefan Dirsch <sndirsch@suse.de> 10674Date: Sat Nov 22 17:53:06 2008 +0100 10675 10676 Added remaining hunk of Egbert's patch to prevent XIM deadlocks (#1182). 10677 10678commit c859446c500c883a67f7a86cab1a44844e24dade 10679Author: Ken Thomases <ken@codeweavers.com> 10680Date: Fri Nov 21 13:58:10 2008 -0500 10681 10682 [i18n] Provide translation from XK_partialderivative (8ef) to Unicode (U2202) 10683 10684 Signed-off-by: James Cloos <cloos@jhcloos.com> 10685 10686commit 5e68e94d852c730ef9264fc0d8ca61a2ffe98b53 10687Author: Jeremy Huddleston <jeremyhu@freedesktop.org> 10688Date: Mon Nov 17 20:47:26 2008 -0800 10689 10690 Force local transport when using the launchd socket. 10691 10692 Fixes a regression due to 10693 bf53987eaf0fbd7f7627783fc39e7ee99e8361ba 10694 10695commit 7aca689ce14d314b5c8c72c8df76f53f76ab467c 10696Author: Peter Hutterer <peter.hutterer@redhat.com> 10697Date: Fri Nov 14 10:32:50 2008 +1000 10698 10699 Add XF86Suspend, XF86Hibernate to KeysymDB. 10700 10701commit d16b11f25f8265e651def8d80bcd430c0448e664 10702Author: James Cloos <cloos@jhcloos.com> 10703Date: Tue Nov 11 19:43:39 2008 -0500 10704 10705 [nls] Annotate the Bépo compose sequences 10706 10707 Add comments with the UCS names. 10708 Add utf-8 strings for each result. 10709 Format for easy reading. 10710 10711commit 730298464240be6f65b32416b3f9b20062c61825 10712Author: James Cloos <cloos@jhcloos.com> 10713Date: Tue Nov 11 16:41:34 2008 -0500 10714 10715 [nls] Add some UTF-8 Compose sequences 10716 10717 As requested for the Bépo keyboard layout (http://clavier-dvorak.org/wiki/). 10718 10719 Cf. bugs: 10720 10721 https://bugs.freedesktop.org/show_bug.cgi?id=17821 10722 https://bugs.freedesktop.org/show_bug.cgi?id=17822 10723 10724commit ad6008a0c92733826983eb93f063d3d6276007d8 10725Author: Colin Harrison <colin.harrison@virgin.net> 10726Date: Thu Nov 6 17:48:21 2008 -0500 10727 10728 Fix copy/paste typo in imLcPrs 10729 10730 Signed-off-by: James Cloos <cloos@jhcloos.com> 10731 10732commit 0f0168ad18f8a280fc5a689eb02cfaa62d022ea6 10733Author: Adam Jackson <ajax@redhat.com> 10734Date: Thu Nov 6 14:54:13 2008 -0500 10735 10736 Fix leak in _XimXGetReadData 10737 10738 Spotted by Denis Dzyubenko 10739 10740commit ae23c25b9349ab1d7ff81f3075c000cf35fc442b 10741Author: Julien Cristau <jcristau@debian.org> 10742Date: Wed Nov 5 22:09:37 2008 +0100 10743 10744 Bump to 1.1.99.2 10745 10746commit d31e644c65c52828ea3e7abd94a8cf9aee12265c 10747Author: Julien Cristau <jcristau@debian.org> 10748Date: Wed Nov 5 21:33:13 2008 +0100 10749 10750 Fix distcheck 10751 10752commit e6a7b70cdb2ae8b713012839a0a0bbb93817b8ef 10753Author: Jamey Sharp <jamey@minilop.net> 10754Date: Wed Oct 29 14:00:33 2008 -0700 10755 10756 Support multiple independent internal sync handlers 10757 10758 Xlib has several independent tasks that need to be performed with the 10759 display unlocked. It does this by replacing the existing sync handler with 10760 one of a variety of internal sync handlers. However, if multiple internal 10761 sync handlers need to run, then the last one registering wins and 10762 previously registered internal sync handlers are never invoked. This 10763 manifested as a bug with DRI applications on Xlib/XCB as that requires 10764 both an XID handler after every XID allocation, and the periodic sequence 10765 number handler. The XID handler would win, and the sequence number handler 10766 would never be invoked. 10767 10768 Fix this by unifying the internal sync handler mechanism into a single 10769 function that calls all of the known internal sync handlers. They all need 10770 to deal with being called when not strictly necessary now. 10771 10772 Signed-off-by: Keith Packard <keithp@keithp.com> 10773 Signed-off-by: Jamey Sharp <jamey@minilop.net> 10774 Signed-off-by: Josh Triplett <josh@freedesktop.org> 10775 10776commit 2dbaaab9c4e3894b33dcae850551dee5473431d5 10777Author: Keith Packard <keithp@keithp.com> 10778Date: Sat Oct 11 21:44:21 2008 -0700 10779 10780 Ensure that _XReadEvents always leaves an event in the queue on return 10781 10782 XNextEvent assumes that the event queue will be non-empty on return from 10783 _XReadEvents, but with multiple event readers running, the previous change 10784 could leave the queue empty on return from process_responses. Re-invoke 10785 process_responses until the queue is non-empty. 10786 10787 Signed-off-by: Keith Packard <keithp@keithp.com> 10788 10789commit bedfe68259037c5564fe52758c92b9c97729640a 10790Author: Keith Packard <keithp@keithp.com> 10791Date: Sat Oct 11 21:10:23 2008 -0700 10792 10793 Permit only one Xlib thread to block waiting for events 10794 10795 As Xlib queues events internally, we must prevent multiple Xlib threads from 10796 entering XCB to wait for an event in case the queued event is to be 10797 delivered to the thread which didn't manage to read it. In other words, let 10798 only one Xlib thread into xcb_wait_for_event at a time. 10799 10800 Jamey Sharp looked over my shoulder while making this fix and, while hating 10801 my whitespace conventions, appears happy enough with the actual code. 10802 10803 Signed-off-by: Keith Packard <keithp@keithp.com> 10804 10805commit cc19618d2eb3ed92a0b574aee26a7da8b4aed5d2 10806Author: Jamey Sharp <jamey@minilop.net> 10807Date: Sun Mar 23 16:33:50 2008 -0700 10808 10809 Fix XAllocID race: hold the user display lock until we have a new XID. 10810 10811 Xlib built --without-xcb is also vulnerable to this race, and a similar 10812 fix might work there too. 10813 10814 Also, use an XID that's truly invalid while waiting for the next XID to be 10815 requested. 10816 10817commit 54e5c0941b0ded1628d559a9f0a3451ea96c299b 10818Author: Josh Triplett <josh@freedesktop.org> 10819Date: Sat Mar 15 17:22:23 2008 -0700 10820 10821 Use XCB's new socket handoff mechanism rather than the old XCB Xlib lock. 10822 10823 Previously, Xlib/XCB used XCB's Xlib lock to prevent XCB from sending 10824 requests between calls to Xlib's LockDisplay and UnlockDisplay macros. 10825 Xlib/XCB then sent all of its requests using XCB's xcb_send_request, and 10826 had to flush its requests when unlocking the display. 10827 10828 XCB 1.2 adds a new socket handoff mechanism, xcb_take_socket. Replace 10829 much of the existing Xlib/XCB implementation with the use of 10830 xcb_take_socket to take ownership of the write side of the X connection 10831 socket, and a return_socket callback which writes any outstanding requests 10832 with xcb_writev. This approach allows Xlib/XCB to use the same buffering 10833 as traditional Xlib did. In particular, programs which use Xlib/XCB and 10834 never make XCB calls will never need to hand the socket back to XCB, and 10835 vice versa. 10836 10837 This allows us to discard large quantities of synchronization code from 10838 Xlib/XCB, together with the synchronization bugs present in that code. 10839 Several test cases which previously failed now work perfectly, including 10840 multi-threaded ico. In addition, the infamous locking correctness 10841 assertions, triggered when double-locking or when unlocking without a 10842 previous lock, no longer exist, because Xlib/XCB no longer has any reason 10843 to care more about application locking than traditional Xlib does. 10844 10845 Furthermore, the handoff approach provides great improvements to 10846 performance. Results from x11perf's XNoOp test, which represented the 10847 worst case for the lock-based Xlib/XCB: 10848 10849 Traditional Xlib: average 19100000/sec 10850 Lock-based Xlib/XCB: average 3350000/sec 10851 Handoff-based Xlib/XCB: average 17400000/sec 10852 10853 Thus, for no-ops, the handoff mechanism provides more than a 4x speedup to 10854 Xlib/XCB, bringing Xlib/XCB within 9% of traditional Xlib no-op 10855 performance. Of course, real-world workloads do not use no-op, so your 10856 mileage may vary. In particular, since no-ops represent the worst case, 10857 we expect real workloads to more closely match the performance of 10858 traditional Xlib. 10859 10860 While removing synchronization code, we changed _XReply to not drop any 10861 locks when calling xcb_wait_for_reply; previously, we had to carefully 10862 avoid a deadlock between the Display lock and the XCB Xlib lock. Holding 10863 the locks reduces implementation complexity and should not impact 10864 applications. 10865 10866 Commit by Jamey Sharp and Josh Triplett. 10867 XCB's handoff mechanism inspired by Keith Packard. 10868 10869commit 5a19ac473f7a8046b0421fbd5d53da160c22ed75 10870Author: Chris Ball <cjb@laptop.org> 10871Date: Mon Nov 3 22:57:29 2008 -0500 10872 10873 Remove configure check for xcb-xlib. 10874 10875 xcb-xlib has been intentionally removed from libxcb; stop checking for 10876 it at configure-time. 10877 10878commit 34b35dda0bb7f3cf0ad9ab95ad7953d35d24f71b 10879Author: Josh Triplett <josh@freedesktop.org> 10880Date: Wed Oct 29 14:37:44 2008 -0700 10881 10882 .gitignore: Add dolt files 10883 10884commit 1290cccf2d90083eba852f5f413f7e3dff48ccd2 10885Author: Peter Hutterer <peter.hutterer@redhat.com> 10886Date: Tue Oct 28 11:56:55 2008 +1030 10887 10888 man: fix formatting error in XkbGetIndicatorState man page. 10889 10890commit b1022fa6d7e97640049e93ffa108083fc8d71b05 10891Author: James Cloos <cloos@jhcloos.com> 10892Date: Sat Oct 25 09:13:08 2008 -0400 10893 10894 Increase size of working arrays in the makekeys utility program. 10895 10896 Makekeys is used to create an optimal hash of the keysyms defined 10897 in x11proto’s keysymdef.h. 10898 10899 The recent addition of new keysyms there has triggered a bug in 10900 makekeys where it tries to use a zero on the rhs of the % (mod) 10901 operator (resulting in a divide by zero error) whenever it fails 10902 to find a solution within its constraints. 10903 10904 Increasing the size of the arrays allows it to find a solution for 10905 the current set of keysyms. 10906 10907 Makekeys is only run durring the build process, so this has no impact 10908 on users of libX11, only on the amount of VM needed to build it. 10909 10910 It still needs a more complete fix, but this allows compiles to 10911 progress until that is completed. 10912 10913commit 3e9afd501e40d76040635bd9a3045bcaf5a03b60 10914Author: James Cloos <cloos@jhcloos.com> 10915Date: Sat Oct 11 01:03:14 2008 -0400 10916 10917 Dolt-ify 10918 10919 Add dolt to acinclude.m4 and call it it configure.ac to speed compiles. 10920 10921commit 39c0b266cac8cbc15bf501d7869186862f01d823 10922Author: Peter Hutterer <peter.hutterer@redhat.com> 10923Date: Wed Oct 15 14:30:20 2008 +1030 10924 10925 Add more keysyms for PS3 BD remotes, Ericsson Phones #16519 10926 10927 X.Org Bug 16519 <https://bugs.freedesktop.org/show_bug.cgi?id=16519> 10928 10929commit d23aad31338e7d869d878d5aa1b6b91d20287005 10930Author: Peter Hutterer <peter.hutterer@redhat.com> 10931Date: Mon Oct 13 09:41:59 2008 +1030 10932 10933 Add XF86Battery, XF86Bluetooth, XF86WLAN, XF86UWB to keysymdb. 10934 10935commit 214ea6f5fd6aeaa7303ea4a69f9aedabf219ec4c 10936Author: Peter Hutterer <peter.hutterer@who-t.net> 10937Date: Thu Jul 24 15:44:26 2008 +0930 10938 10939 xkb: fix out-by-1 error in _XkbWriteKeyExplicit. 10940 10941 Thanks to Michael Meeks, Novell Bug 369263. 10942 https://bugzilla.novell.com/show_bug.cgi?id=369263 10943 10944commit e7ece39afc8e0adc3b6b1e70b337b98376754462 10945Author: Alan Coopersmith <alan.coopersmith@sun.com> 10946Date: Tue Oct 7 15:41:38 2008 -0700 10947 10948 Sun bug #6739431: double free in _X11TransConnectDisplay() 10949 10950 Double free() introduced in bf53987eaf0fbd7f7627783fc39e7ee99e8361ba 10951 After copying original_hostname to phostname, set original_hostname 10952 to NULL, so we don't free the same pointer twice when we free both 10953 original_hostname and phostname. 10954 10955 <http://bugs.opensolaris.org/bugdatabase/view_bug.do?bug_id=6739431> 10956 10957commit 0877bc916afbd1ff8f1833edc930b765ea783576 10958Author: Daniel Stone <daniel@fooishbar.org> 10959Date: Tue Sep 23 19:02:02 2008 +0300 10960 10961 configure.ac: Fix CC_FOR_BUILD logic error 10962 10963 Turns out we were accidentally smashing it so that you couldn't set it 10964 externally at all. Oops. 10965 10966commit 58bf3aa746908f01c37be7045699e43a4e270944 10967Author: John Tapsell <johnflux@gmail.com> 10968Date: Tue Sep 23 17:30:13 2008 +0300 10969 10970 Build: Use native compiler for makekeys 10971 10972 makekeys needs to be run during the build process, as opposed to on the 10973 target, so build it with either of gcc or cc to fix cross-compiling. 10974 This can be overridden by setting $CC_FOR_BUILD. 10975 10976commit 340422a5c7a413faef18666cada27cee14615250 10977Author: Adam Jackson <ajax@redhat.com> 10978Date: Wed Sep 17 12:54:34 2008 -0400 10979 10980 Fix the previous patch for the BadFont case. 10981 10982commit 2335eafe4b53c27f6f9ee1bab3e1f5842f896428 10983Author: Matthias Clasen <mclasen@redhat.com> 10984Date: Wed Sep 17 10:43:52 2008 -0400 10985 10986 Bug #17616: Fix an XCB leak when the client has a non-fatal error handler. 10987 10988commit db0b85db29699be6bf7e78dede655d59ba926dfc 10989Author: Rafael Ávila de Espíndola <rafael.espindola@gmail.com> 10990Date: Sun Sep 14 19:15:26 2008 -0400 10991 10992 Fix problem with <dead_acute> <c> in pt_BR.UTF-8 10993 10994 The <dead_acute> <C> and <dead_acute> <c> lines in the pt_BR UTF-8 10995 Compose file show "Ç" and "ç" (c with cedilla accent) (akin to the 10996 ISO 8859 pt_BR Compose file) as the string but specify the keysym 10997 and comment for Ć and ć (c with acute accent). 10998 10999 This commit normalizes those two lines to match the specified string. 11000 11001 Fixes: https://bugs.freedesktop.org/show_bug.cgi?id=4671 11002 11003 Signed-off-by: James Cloos <cloos@jhcloos.com> 11004 11005commit b065c011baa69b69e3ea77c30d5e153c0d103e2d 11006Author: Michael Verret <michael.verret@gmail.com> 11007Date: Mon Sep 8 16:33:35 2008 -0400 11008 11009 Fix documentation typo 11010 11011 Signed-off-by: James Cloos <cloos@jhcloos.com> 11012 11013commit 4213ea95185377bdd1b51e82933f331fc0f52e5b 11014Author: James Cloos <cloos@jhcloos.com> 11015Date: Sat Sep 6 04:19:19 2008 -0400 11016 11017 Remove extraneous <angle brackets> from the Ethiopic Compose file. 11018 11019 The am_ET.UTF-8 Compose file submitted in: 11020 11021 https://bugs.freedesktop.org/show_bug.cgi?id=11307 11022 11023 for the OLCP project used incorrect syntax. (It has angle brackets around the 11024 Uxxxx symbols on the right hand side rather than only on the left hand side). 11025 11026 This bug is noted in OLPC’s ticket: 11027 11028 http://dev.laptop.org/ticket/7474 11029 http://dev.laptop.org/attachment/ticket/7474/olpc_7474_dead_vowels_libX11.patch 11030 11031commit 9df84b513dd2b6e65e6d528cfac6d4cc3ea46918 11032Author: James Cloos <cloos@jhcloos.com> 11033Date: Mon Sep 1 17:49:33 2008 -0400 11034 11035 Complete the set of vulgar fractions 11036 11037 Unicode 1.1 added thirds, fifths, sixths and eights; 11038 we might as well catch up. 11039 11040 (Unicode and ISO 10646 have 1/7 (U2150), 1/9 (U2151), 1/10 (U2152) 11041 and 0/3 (U2189) in their pipelines, but those four can be added 11042 here after they are published.) 11043 11044commit a788792e9de95f8db0639557859722a35087481d 11045Author: James Cloos <cloos@jhcloos.com> 11046Date: Wed Aug 20 15:28:07 2008 -0400 11047 11048 nls (en_US) Re-remove long compositions that override shorter 11049 11050 As reported in <https://bugs.freedesktop.org/show_bug.cgi?id=17228>: 11051 11052 Commit a6f4bbf7 11053 nls (en_US): remove long compositions that override shorter [...] 11054 removed some longer compose sequences because there are shorter 11055 ones which take preference over the longer. For example the 11056 sequences: 11057 11058 <Multi_key> <apostrophe> <comma> <c> : U1E09 # ḉ 11059 <Multi_key> <apostrophe> <comma> <C> : U1E08 # Ḉ 11060 11061 were removed becase there already was: 11062 11063 <Multi_key> <apostrophe> <comma> : U201A # ‚ 11064 11065 Then commit 4ba09125 11066 Work on making the en_US and pt_BR UTF-8 Compose as similar as 11067 possible added exactly the same key sequences again. Obviusly 11068 they won't work. 11069 11070commit 55248e5c84c3fd8c349a3bb4cb15a1ec86989d74 11071Author: James Cloos <cloos@jhcloos.com> 11072Date: Thu Jul 17 21:01:42 2008 -0400 11073 11074 Add more <Multi_key> <cedilla> Compose tuples 11075 11076 The last commit missed the el_GR UTF-8 Compose.pre as well as 11077 the various ISO 8859 locales which have compose sequences 11078 generating ‘WITH CEDILLA’ characters. 11079 11080 (Interestingly, some of the 8859 locales already supported 11081 <Multi_key> <cedilla> for some CEDILLA characters, but not 11082 for Ç or ç.) 11083 11084 This is further work on bug 10397. 11085 11086commit 4ba091255bb953d53078ba5619d6751052c739f7 11087Author: James Cloos <cloos@jhcloos.com> 11088Date: Thu Jul 17 17:16:50 2008 -0400 11089 11090 Work on making the en_US and pt_BR UTF-8 Compose as similar as possible. 11091 11092 The eventual goal here is to have a single primary UTF-8 Compose 11093 file which the locale-specific UTF-8 Compose.pre files can #include. 11094 11095commit 254522d3c24e0590732fc03cdd61ff4564819d94 11096Author: James Cloos <cloos@jhcloos.com> 11097Date: Thu Jul 17 17:13:36 2008 -0400 11098 11099 Add <Multi_key> <cedilla> Compose tuples 11100 11101 The en_US and pt_BR UTF-8 Compose tables had support for using <comma> 11102 with <Multi_key> to enter CEDILLA characters. Bug 10397 requests 11103 support for using <cedilla> instead of <comma> in said sequences. 11104 11105 This commit makes both styles work. 11106 11107commit 7dc907f6032e1d5cbe4da0e414bdf2c569c04b44 11108Author: James Cloos <cloos@jhcloos.com> 11109Date: Sat Jun 28 15:25:23 2008 -0400 11110 11111 Fix commit 21e464ec682ab23ba20ddf6bd72c6db214cfbe01 11112 11113 The new block was added twice to the en_US.UTF-8 Compose.pre; 11114 delete the duplicate. 11115 11116commit 596e081b7457dcd1c4ad555ac140e6999239bc0d 11117Author: Peter Hutterer <peter@cs.unisa.edu.au> 11118Date: Sat Jun 28 20:14:05 2008 +0930 11119 11120 Fix unbalanced parenthesis in XKBlib.h # 16551 11121 11122 X.Org Bug 16551 <http://bugs.freedesktop.org/show_bug.cgi?id=16551> 11123 11124commit f6af6dd2f76c12b56ec166bb771457b9f08fe246 11125Author: Adam Jackson <ajax@redhat.com> 11126Date: Tue Jun 24 13:16:53 2008 -0400 11127 11128 Bug #14898: Don't abuse the sprintf() implementation. 11129 11130 The thing you're printing into should not itself appear in the list of 11131 things to print from, that's bad juju. Just use strcat(). 11132 11133commit 21e464ec682ab23ba20ddf6bd72c6db214cfbe01 11134Author: Khaled Hosny <khaledhosny@eglug.org> 11135Date: Thu Jun 19 18:26:11 2008 -0400 11136 11137 NLS: Add Arabic Lam-Alef ligature compose sequences (bug #16426) 11138 11139 Add some Arabic digraphs to utf-8 locales with a Compose.pre 11140 11141 Signed-off-by: James Cloos <cloos@jhcloos.com> 11142 11143commit bf53987eaf0fbd7f7627783fc39e7ee99e8361ba 11144Author: Alan Coopersmith <alan.coopersmith@sun.com> 11145Date: Wed Jun 18 20:00:25 2008 -0700 11146 11147 Rework code to choose local connection types and fallback to others 11148 11149 Adds --with-local-transport-order configure flag if you don't like the 11150 default ordering (which is platform dependent) 11151 11152 Includes fixes for these Sun/Solaris bug ids: 11153 6678250 X Commands returning incorrect display value unix:0.0 not <system>:0.0 11154 <http://bugs.opensolaris.org/bugdatabase/view_bug.do?bug_id=6678250> 11155 6716481 libX11 should prefer Unix domain sockets over named pipes on Solaris 11156 <http://bugs.opensolaris.org/bugdatabase/view_bug.do?bug_id=6716481> 11157 11158commit cf49e537014c3cb5aaee07e57400933e0bb72b6b 11159Author: Alan Coopersmith <alan.coopersmith@sun.com> 11160Date: Tue Jun 17 14:41:17 2008 -0700 11161 11162 Strip whitespace from end of lines in source files 11163 11164commit f76fd81dfbbd5cfae75c87ce0511e88e08529cf3 11165Author: Jeff Smith <whydoubt@yahoo.com> 11166Date: Sun Jun 15 23:52:20 2008 -0500 11167 11168 Fix memory leak in XOpenDisplay 11169 11170 Signed-off-by: Peter Hutterer <peter@cs.unisa.edu.au> 11171 11172commit fca0b0ba3f72b7284601d4690bba99fc80a92614 11173Author: Jens Herden <jens@khmeros.info> 11174Date: Tue Jun 10 20:07:30 2008 +0300 11175 11176 NLS: Add Khmer compose sequences (bug #5706) 11177 11178 Add some Khmer digraphs to all locales with a Compose.pre. 11179 11180commit e54cffb649b1622c17457e470cfab8cc56d38c97 11181Merge: 19802ccd 721b574d 11182Author: Daniel Stone <daniel@fooishbar.org> 11183Date: Tue Jun 10 20:04:30 2008 +0300 11184 11185 Merge branch 'master' of ssh://git.freedesktop.org/git/xorg/lib/libX11 11186 11187commit 721b574d36f1884c3f1bf7bd933646e2ed6680b5 11188Author: Peter Hutterer <peter@cs.unisa.edu.au> 11189Date: Thu May 29 10:57:21 2008 +0930 11190 11191 Bump to 1.1.99.1 11192 11193commit 631d32d13247d1cf52c0833d438c5b38b01b17a4 11194Author: Peter Hutterer <peter@cs.unisa.edu.au> 11195Date: Wed May 28 17:31:59 2008 +0930 11196 11197 Require xproto 7.0.13 and libxcb 1.1.90 (for GenericEvents) 11198 11199commit e9195db7257e418f83707233baeeb84b225caf4f 11200Merge: c34f76f4 a7f85567 11201Author: Peter Hutterer <peter@cs.unisa.edu.au> 11202Date: Thu May 22 12:14:28 2008 +0930 11203 11204 Merge branch 'master' into xge 11205 11206commit 19802ccd3909145e3ba2f6c073271cb5f3701685 11207Author: Daniel Stone <daniel@fooishbar.org> 11208Date: Mon May 19 19:22:31 2008 +0300 11209 11210 gitignore: Update with loads more bits from server 11211 11212commit a7f85567a3e850fba0c44571453d2852ab1a09be 11213Author: Adam Jackson <ajax@redhat.com> 11214Date: Tue May 13 10:28:39 2008 -0400 11215 11216 Bug #15884: Remove useless sleep()'s from the connection code. 11217 11218 For network transports, there's enough delay in the network layer 11219 already without adding more. For local transports, just hurry up 11220 and fail if the server isn't there. 11221 11222commit c34f76f475bc632490122e67b5a82575d69d5569 11223Author: Peter Hutterer <peter@cs.unisa.edu.au> 11224Date: Mon May 12 21:46:24 2008 +0930 11225 11226 Pull down extra bytes when reading a GenericEvent (non-xcb). 11227 11228 I refuse to take any responsibily for this code. It works, I guess. 11229 But - all the flushing is done somewhere before that, so we might need to 11230 flush here. Under some circumstances anyway. Don't ask me, I'm an optical 11231 illusion. 11232 11233 Build with xcb as transport layer highly recommended. 11234 11235commit c9b2ff1e6a607463993afa4a8d085857d97cc2f3 11236Merge: 17d7dcbf 9129057b 11237Author: Peter Hutterer <peter@cs.unisa.edu.au> 11238Date: Mon May 12 17:58:37 2008 +0930 11239 11240 Merge branch 'master' into xge 11241 11242commit 9129057bdbff0ec9cd8bb780cf7f85f134a291eb 11243Author: Teemu Likonen <tlikonen@iki.fi> 11244Date: Wed May 7 21:44:22 2008 +0300 11245 11246 Change <dead_belowdot> to <dead_belowring> for U+1E00 and U+U1E01 11247 11248 Commit 6b6caeea830a977bdb54688cfb648d879821e752 added <dead_belowdot> 11249 <A> and <dead_belowdot> <a> compose sequences for letters U+1E00 and 11250 U+U1E01 (LATIN CAPITAL/SMALL LETTER A WITH RING BELOW). This caused 11251 duplicate compose sequences since these have already been defined. Also, 11252 using <dead_belowring> is more logical since the diacritic is indeed 11253 a "RING BELOW". 11254 11255commit 01a9cb58888d290cc3d319feec4ee4a0297a844c 11256Author: Daniel Stone <daniel@fooishbar.org> 11257Date: Wed May 7 20:04:44 2008 +0300 11258 11259 NLS: Make UTF-8 the default for Russian 11260 11261 No-one uses 8859-5 anymore, so make the default for Russian UTF-8; the 11262 only other possible answer would be KOI8-R. 11263 11264 Signed-off-by: Sergey V. Udaltsov <sergey.udaltsov@gmail.com> 11265 11266commit 407b81bfbbabf6feb565d6da22f9ef9a69016ab8 11267Author: Ross Burton <ross@burtonini.com> 11268Date: Tue Apr 29 13:38:10 2008 +0300 11269 11270 NLS: Add interrobang to UTF-8 compose tables (bug #15653) 11271 11272 It is what it says on the box. 11273 11274commit 0b6682303e9c61fefc3818acfda616b1e3691abf 11275Author: Theppitak Karoonboonyanan <thep@linux.thai.net> 11276Date: Mon Apr 28 11:51:25 2008 +0300 11277 11278 IM: Respect XMODIFIERS for Thai locale (bug #15719) 11279 11280 When looking at Thai input methods, make sure XMODIFIERS is checked 11281 before jumping straight into built-in Thai processing, so external XIM 11282 servers such as SCIM can be used with Thai. 11283 11284commit c13aded1b2f830ba5004abb0ec5518f9ea16087e 11285Author: Colin Harrison <colin.harrison-at-virgin.net> 11286Date: Sat Apr 26 18:56:05 2008 +0100 11287 11288 Fix missing error condition 11289 11290commit f5c5ffc175cb383c92ea0fa8c08cfb087c5f3083 11291Author: Colin Harrison <colin.harrison-at-virgin.net> 11292Date: Mon Apr 21 17:24:33 2008 +0100 11293 11294 Xlib warning fixes 11295 11296commit 6b6caeea830a977bdb54688cfb648d879821e752 11297Author: James Cloos <cloos@jhcloos.com> 11298Date: Fri Apr 18 02:50:55 2008 -0400 11299 11300 Add some dead_key sequences to en_US.UTF-8 Compose table 11301 11302 Make use of the new dead key symbols added to x11proto’s 11303 commit 44e24a27bca023cf7b799f191fe6d52e12efbe5f (which 11304 was in responce to bug #15446). 11305 11306commit 8f9b039580deaf658e464b7d6254064fcf183df6 11307Author: Alan Coopersmith <alan.coopersmith@sun.com> 11308Date: Mon Apr 14 19:09:42 2008 -0700 11309 11310 Update ac_define_dir macro in acinclude.m4 to 2008-04-12 version 11311 11312commit 9f5e96eb91ab55dd441c3e94b75caf48c588778f 11313Author: Alan Coopersmith <alan.coopersmith@sun.com> 11314Date: Mon Apr 14 18:21:14 2008 -0700 11315 11316 Fix mismatched brace indenting 11317 11318commit a19f9c65ee9e5e5d783feaa84998c36439b0288b 11319Author: Bart Massey <bart@cs.pdx.edu> 11320Date: Fri Apr 4 18:58:45 2008 -0700 11321 11322 added error check in Xcms color file parser; closes bug #15305 11323 11324commit 12e8d0d01dd72ce98e7683ddb1bde181b7ed246f 11325Author: Christian Weisgerber <naddy@mips.inka.de> 11326Date: Tue Mar 18 07:30:05 2008 +0100 11327 11328 ConnDis: properly cast 'addr' before accessing it as a byte array. 11329 11330 If you use XDM-AUTHORIZATION-1 authorization keys for remote X11 11331 clients over IPv6, the clients are liable to segfaults. 11332 11333commit 64325f38bab082a8e0e9ce779a8e582de5c8588e 11334Author: Josh Triplett <josh@freedesktop.org> 11335Date: Sat Mar 15 12:29:33 2008 -0700 11336 11337 Fix fd.o bug 15023: make Xlib sync correctly given many void requests 11338 11339 If given many requests without replies, Xlib may not sync until it flushes 11340 the output buffer. Thus, if Xlib can fit enough requests in the buffer to 11341 pass by the number of requests it would normally sync after (65536 - 11342 BUFSIZE/sizeof(xReq)), it will sync too late. The test case in bug 15023 11343 demonstrated this by issuing a request with a reply (ListExtensions) at 11344 just the right time to get confused with the GetInputFocus reply issued in 11345 response to the sync 65,536 requests later; the test case used an async 11346 handler to watch the replies, since otherwise it could not issue a request 11347 without waiting for the response. When the test case failed, Xlib's sync 11348 handler would eat the ListExtensions reply, and the test case's async 11349 handler would see the GetInputFocus reply. 11350 11351 Fix this by replacing SEQLIMIT with a function sync_hazard() that uses the 11352 buffer size to figure out when the sequence numbers could potentially wrap 11353 before the next flush. 11354 11355 With this commit, the test case consistently passed, and the async reply 11356 handler always saw the ListExtensions reply. 11357 11358 Commit by Jamey Sharp and Josh Triplett. 11359 11360commit a5395563bbee15fabe1e8fd7aa86f9f314d8d30e 11361Author: Colin Harrison <colin.harrison@virgin.net> 11362Date: Sat Mar 15 13:39:13 2008 -0400 11363 11364 Fix typo 11365 11366 Signed-off-by: James Cloos <cloos@jhcloos.com> 11367 11368commit f07585ca27a8487bc66dfe41486c823f0fdcea7d 11369Author: Daniel Stone <daniel@fooishbar.org> 11370Date: Sat Mar 15 17:32:57 2008 +0200 11371 11372 configure.ac: Don't search for legacy X11 headers 11373 11374 This can actually break cross-compiles, so don't do it anymore. 11375 11376commit bf69541238c7df6606340c0f389e5c47149b29c7 11377Author: Matthieu Herrb <matthieu.herrb@laas.fr> 11378Date: Sun Mar 9 09:08:07 2008 +0100 11379 11380 nuke RCS Ids 11381 11382commit 5e98aed13e529638df744e45893c471d5f2014fb 11383Author: Adam Jackson <ajax@redhat.com> 11384Date: Thu Mar 6 16:10:33 2008 -0500 11385 11386 libX11 1.1.4 11387 11388commit 8e085971dc661da9f80ff6b67747459c0fb15c08 11389Author: Alan Coopersmith <alan.coopersmith@sun.com> 11390Date: Thu Feb 28 20:17:41 2008 -0800 11391 11392 Man page typo fixes 11393 11394commit 1a1a42a3ca1dfaf42f1094936b71c140fc030fcb 11395Author: Søren Sandmann Pedersen <sandmann@redhat.com> 11396Date: Sun Feb 24 20:03:35 2008 -0500 11397 11398 XIM: Fix a hand when switching input context. 11399 11400 Red Hat bug #201284. 11401 11402commit e02e4ccafcaf3eb8993152dfcbfbee0240ea2db2 11403Author: Adam Jackson <ajax@redhat.com> 11404Date: Sun Feb 24 20:00:43 2008 -0500 11405 11406 Bug #14029: Don't LockDisplay() recursively. 11407 11408 See also Red Hat bugzilla #326461. 11409 11410commit e5892467ae3308c8651be76e06db322dcbc08522 11411Author: Alan Coopersmith <alan.coopersmith@sun.com> 11412Date: Fri Feb 15 17:27:53 2008 -0800 11413 11414 Add support for building lint library with --enable-lint-library 11415 11416commit e3eb83ec6a9bffa63cdffd94f077c12f85ad7240 11417Author: Alan Coopersmith <alan.coopersmith@sun.com> 11418Date: Mon Feb 11 20:11:43 2008 -0800 11419 11420 Spell out number in XkbGetKeyVirtualModMap man page to avoid cpp errors from # 11421 11422commit d5ceed7a73a6b61758ddb6ff4e194955fbd5c185 11423Author: Alan Coopersmith <alan.coopersmith@sun.com> 11424Date: Fri Feb 8 16:46:46 2008 -0800 11425 11426 Add WM_LOCALE_NAME to list of properties set in XSetWMProperties comment 11427 11428commit 416a812200f24d19149dcc497e5c51a0608120f6 11429Author: Alan Coopersmith <alan.coopersmith@sun.com> 11430Date: Fri Feb 8 15:31:31 2008 -0800 11431 11432 XErrorDB updates for Render 0.9 & XFixes 4.0 11433 11434commit 16a76091cd632e5a3708e235ff864b58f3e4613e 11435Author: Kim Woelders <kim@woelders.dk> 11436Date: Sat Dec 22 21:45:23 2007 +0100 11437 11438 Fix bs_BA entries in locale.dir.pre 11439 11440 X.Org bug#13786 <http://bugs.freedesktop.org/show_bug.cgi?id=13786> 11441 11442commit 32115c563b87d2f37e3f9de70fbd0f4d9e424aea 11443Merge: 8f0bd3f4 e8d4cefa 11444Author: James Cloos <cloos@jhcloos.com> 11445Date: Fri Dec 14 22:43:47 2007 -0500 11446 11447 Merge branch 'master' of ssh://git.freedesktop.org/git/xorg/lib/libX11 11448 11449commit 8f0bd3f445cbdcc67650f6e8e3baf2ed89cb3695 11450Author: James Cloos <cloos@jhcloos.com> 11451Date: Fri Dec 14 22:42:59 2007 -0500 11452 11453 add a comment to en_US.UTF-8/Compose 11454 11455commit 4d6c45e60ed13d3b0fea10413873d6a74f9d6a3b 11456Author: James Cloos <cloos@jhcloos.com> 11457Date: Fri Dec 14 22:40:13 2007 -0500 11458 11459 Add <dead_stroke> compose sequences 11460 11461 The added sequences match the existing <Multi_key> <slash> sequences. 11462 11463 This is related to bug #12765¹. 11464 11465 1] https://bugs.freedesktop.org/show_bug.cgi?id=12765 11466 11467commit e8d4cefa0837afa149a10e981528b368485a9e38 11468Author: Jeremy Huddleston <jeremy@yuffie.local> 11469Date: Mon Dec 10 23:00:44 2007 -0800 11470 11471 Added launchd support. 11472 11473commit 17d7dcbfced4a9417b33507bd3fd9b7dd8268242 11474Merge: 5dfefd38 13ac8046 11475Author: Peter Hutterer <peter@cs.unisa.edu.au> 11476Date: Thu Dec 6 14:08:29 2007 +1030 11477 11478 Merge branch 'master' into xge 11479 11480commit 5dfefd3829d3ba7e41d5db0ad28e9dfee92fadd5 11481Merge: a68a1cd7 eff33ae5 11482Author: Peter Hutterer <peter@cs.unisa.edu.au> 11483Date: Thu Dec 6 13:57:09 2007 +1030 11484 11485 Merge branch 'master' into xge 11486 11487 Conflicts: 11488 11489 src/xcb_io.c 11490 11491commit 13ac80469f6958cabac596834e203bd9cb6d4c94 11492Author: James Cloos <cloos@jhcloos.com> 11493Date: Wed Dec 5 20:14:03 2007 -0500 11494 11495 Update the currency symbols block of en_US.UTF-8/Compose.pre 11496 Add XCOMM lines a la the existing NEW SHEQEL SIGN entry for 11497 the KIP, TUGRIK, DRACHMA. GERMAN PENNY, PESO, GUARANI, 11498 AUSTRAL, HRYVNIA and CEDI SIGNs. 11499 11500commit b0a8f2ec4ba698841683f8ce389f9d72e6bce53e 11501Author: Anton Zinoviev <anton@lml.bas.bg> 11502Date: Wed Dec 5 19:56:03 2007 -0500 11503 11504 Additions to the Compose file for UTF-8 11505 From bug #5371¹ 11506 11507 Commit 5cf5bc76642bfece7cb5b76faf414bf445f14489 left out this change 11508 from those in attachment #4122². The post³ on xorg resulted in only 11509 a positive reply⁴ from Daniel, so this block is now also commited. 11510 11511 1] https://bugs.freedesktop.org/show_bug.cgi?id=5371 11512 2] https://bugs.freedesktop.org/attachment.cgi?id=4122 11513 3] http://article.gmane.org/gmane.comp.freedesktop.xorg/20628 11514 4] http://article.gmane.org/gmane.comp.freedesktop.xorg/23966 11515 11516 Signed-off-by: James Cloos <cloos@jhcloos.com> 11517 Acked-by: Daniel Stone <daniel@fooishbar.org> 11518 11519commit 438d02ebc08ee171cf1d3936f4c81050d428ab92 11520Author: James Cloos <cloos@jhcloos.com> 11521Date: Tue Dec 4 17:25:39 2007 -0500 11522 11523 Fix the <U\x+> keysyms in the en_US.UTF-8 Compose file 11524 11525 Based on src/KeysymStr.c and src/StrKeysym.c and comments in 11526 bugs #11930¹ and #5129² it is clear that <U100XXXXX> is invalid; 11527 those should be in the form U plus the hex of the UCS Code Point. 11528 11529 The 0x01000000 is ORed in by the code. 11530 11531 This update fixes all of those. 11532 11533 1] https://bugs.freedesktop.org/show_bug.cgi?id=11930 11534 2] https://bugs.freedesktop.org/show_bug.cgi?id=5129 11535 11536commit 02e04059c89e175f51647e3b031344f743286b34 11537Merge: 1254c57d b57129ef 11538Author: James Cloos <cloos@jhcloos.com> 11539Date: Tue Dec 4 06:55:04 2007 -0500 11540 11541 Merge branch 'master' of ssh://git.freedesktop.org/git/xorg/lib/libX11 11542 11543commit 1254c57dd3a8d6ea87041b2f63024f99094f290f 11544Author: James Cloos <cloos@jhcloos.com> 11545Date: Tue Dec 4 06:53:55 2007 -0500 11546 11547 Use the new dead_psili and dead_dasia keysyms added to proto/x11proto 7.0.11 11548 Inspired by bug 11930¹: 11549 11550 Commit 40ed4eef92e31fcf7ea0a436e1a00cdf49484c1b to x11proto added dead_psili 11551 and dead_dasia keysyms. Make use of them in the en_US.UTF-8 and el_GR.UTF-8 11552 Compose files. 11553 11554 This was done with a pair of perl scripts based on the one quoted in the 11555 log for commit c76d30253f1483ac8200ad5c032a818907e65030. 11556 11557 1] https://bugs.freedesktop.org/show_bug.cgi?id=11930 11558 11559commit b57129ef324c73ee91c2a796b800c4b45f4d4855 11560Author: Jeremy Huddleston <jeremy@yuffie.local> 11561Date: Mon Dec 3 20:04:19 2007 -0800 11562 11563 Use __APPLE__ instead of __DARWIN__ 11564 11565commit b9c032e1d5ed08510863dfb91b8bda588e6c8c9e 11566Author: Jeremy Huddleston <jeremy@yuffie.local> 11567Date: Wed Nov 28 16:43:49 2007 -0800 11568 11569 Define __DARWIN__ when host_os == darwin* as needed in SetLocale.c 11570 11571commit 4b91ed099554626f1ec17d5bdf7bd77ce1a70037 11572Author: Alan Coopersmith <alan.coopersmith@sun.com> 11573Date: Wed Nov 21 16:50:04 2007 -0800 11574 11575 X.Org Bug #4312: incorrect comment asterisk in XAnyEvent.3x man page 11576 11577 X.Org Bugzilla #4312 <http://bugs.freedesktop.org/show_bug.cgi?id=4312> 11578 11579 Protect /* sequences from cpp pre-processor removal without transforming 11580 to Unicode mathematical asterisk character 11581 11582commit 2af660c2fcd15c86c66459bfc074c190ea1462e6 11583Author: Jamey Sharp <jamey@minilop.net> 11584Date: Mon Oct 29 10:46:20 2007 -0700 11585 11586 Two threads can request sequence sync and XID fetch simultaneously. 11587 11588 So don't assert that they can't. 11589 11590 This makes the Xlib/XCB implementation of _XAllocID more closely 11591 resemble the traditional Xlib version. 11592 11593commit 6e5485e0a5e3ab738becad12193e760c5fee83a4 11594Author: Samuel Thibault <samuel.thibault@ens-lyon.org> 11595Date: Sun Oct 28 04:44:00 2007 -0800 11596 11597 X.Org Bug #12983: Typos in ./man/XChangeKeyboardControl.man 11598 11599 <http://bugs.freedesktop.org/show_bug.cgi?id=12983> 11600 11601commit 24527c92fd1f433ea135e85ec876a94a529fe500 11602Author: Yann Droneaud <ydroneaud@mandriva.com> 11603Date: Wed Oct 24 19:26:07 2007 +0300 11604 11605 XIM: Properly initialise client event 11606 11607 Make sure all ClientMessage fields are initialised to 0 before we send it. 11608 11609commit e41477f37b0d9b74a056d22dbf0073a94eecb9d6 11610Author: Daniel Stone <daniel@fooishbar.org> 11611Date: Wed Oct 24 19:22:22 2007 +0300 11612 11613 Colours: Fix --disable-xcms 11614 11615 Disable large tracts of colour management code when passing 11616 --disable-xcms. 11617 11618commit 11ea09745efa8de7dc82fe30ebd2393f08390957 11619Author: Eric Anholt <eric@anholt.net> 11620Date: Fri Aug 31 17:30:33 2007 -0700 11621 11622 Bug #2081: Note the range limitation of XSetScreenSaver arguments. 11623 11624commit 31540f1438ec63faf37044f2fd654b335ddf80f0 11625Author: Kristian Høgsberg <krh@redhat.com> 11626Date: Wed Aug 29 19:50:57 2007 -0400 11627 11628 Add GLX 1.4 requests and errors. 11629 11630commit 7c996f78914c77fe17e9f4feede980d895d9df51 11631Author: Eric Anholt <eric@anholt.net> 11632Date: Tue Aug 28 15:15:11 2007 -0700 11633 11634 Add XF86 keyboard/monitor brightness keysyms to the keysymbdb. 11635 11636commit fa4effe82759f864a22a2dc6c920fa72ddb175a8 11637Author: Eric S. Raymond <esr@thyrsus.com> 11638Date: Sun Jan 14 10:48:00 2007 -0800 11639 11640 Bug #9658: Bad markup on XIfEvent.3x 11641 11642 X.Org Bugzilla #9658 <https://bugs.freedesktop.org/show_bug.cgi?id=9658> 11643 11644commit 74cba78daa738ef4d92096107d95c1a585933666 11645Author: Eric S. Raymond <esr@thyrsus.com> 11646Date: Sun Jan 14 10:43:00 2007 -0800 11647 11648 Bug #9655: Bad markup in XrmUniqueQuark.3x 11649 11650 X.Org Bugzilla #9655 <https://bugs.freedesktop.org/show_bug.cgi?id=9655> 11651 11652commit 4341d1a34b2a2e460b58131b6fd81935f3355bbc 11653Author: Eric S. Raymond <esr@thyrsus.com> 11654Date: Sun Jan 14 10:43:00 2007 -0800 11655 11656 Bug #9654: Bad markup in XrmGetFileDatabase.3x 11657 11658 X.Org Bugzilla #9654 <https://bugs.freedesktop.org/show_bug.cgi?id=9654> 11659 11660commit 2db713252090cae08f0200fecad4fc25fb64c8b1 11661Author: Eric S. Raymond <esr@thyrsus.com> 11662Date: Sun Jan 14 10:40:00 2007 -0800 11663 11664 Bug #9653: Bad markup in XQueryColor.3x 11665 11666 X.Org Bugzilla #9653 <https://bugs.freedesktop.org/show_bug.cgi?id=9653> 11667 11668commit 9d3ceea4b902e0471824c1e07ad64342b9a1114e 11669Author: Eric S. Raymond <esr@thyrsus.com> 11670Date: Sun Jan 14 10:40:00 2007 -0800 11671 11672 Bug #9652: Bad markup in XDrawArc.3x 11673 11674 X.Org Bugzilla #9652 <https://bugs.freedesktop.org/show_bug.cgi?id=9652> 11675 11676commit 2e7e0748d353d7f53bbd65ec6bf0df8758528ddc 11677Author: Eric S. Raymond <esr@thyrsus.com> 11678Date: Sun Jan 14 10:39:00 2007 -0800 11679 11680 Bug #9651: Bad markup in XcmsColor.3x 11681 11682 X.Org Bugzilla #9651 <https://bugs.freedesktop.org/show_bug.cgi?id=9651> 11683 11684commit c316aaf0aab06951db9dc5c9c1148bfea835d885 11685Author: Eric S. Raymond <esr@thyrsus.com> 11686Date: Sun Jan 14 10:38:00 2007 -0800 11687 11688 Bug #9650: Bad markup in XLoadFont.3x manual page 11689 11690 X.Org Bugzilla #9650 <https://bugs.freedesktop.org/show_bug.cgi?id=9650> 11691 11692commit ca5d9a625ea0965853fa9e74a448b8c29c78ec95 11693Author: Eric S. Raymond <esr@thyrsus.com> 11694Date: Tue Jan 2 10:18:00 2007 -0800 11695 11696 Bug 9523: Markup problems in XQueryExtension.3x 11697 11698 X.Org Bugzilla #9523 <https://bugs.freedesktop.org/show_bug.cgi?id=9523> 11699 11700commit fe713c616e29ba19c179b43c18eca1035079ce18 11701Author: Ian Romanick <idr@us.ibm.com> 11702Date: Tue Aug 21 14:56:33 2007 -0700 11703 11704 Make sure nls/am_ET.UTF-8/Makefile is created by configure. 11705 11706commit e3430616f26b68e1439143cbe10732f3fc329d20 11707Author: Eric S. Raymond <esr@thyrsus.com> 11708Date: Tue Jan 2 08:40:00 2007 -0800 11709 11710 Bug #9516: Markup error in XAllocWMHints.3x 11711 11712 X.Org Bugzilla #9516 <https://bugs.freedesktop.org/show_bug.cgi?id=9516> 11713 11714commit d8fe979fc929833e8c754aed32641786d5a0622b 11715Merge: 21ca9533 4ec1723f 11716Author: James Cloos <cloos@jhcloos.com> 11717Date: Mon Aug 20 15:34:50 2007 -0400 11718 11719 Merge branch 'master' of ssh://git.freedesktop.org/git/xorg/lib/libX11 11720 11721commit 21ca953337fb221b85345bf35ce1a98a0dcb2bf2 11722Author: James Cloos <cloos@jhcloos.com> 11723Date: Mon Aug 20 15:34:03 2007 -0400 11724 11725 Fix typo 11726 The code <U1000000D> was used where <U10000DC> was obviously intended. 11727 11728 It is possible that <Udiaeresis> should be used instead, if that will 11729 not break anyone’s setup. 11730 11731commit 4ec1723fff729440cd3349c1f95d87d2a6ba89cf 11732Author: James Cloos <cloos@jhcloos.com> 11733Date: Mon Aug 20 15:25:48 2007 -0400 11734 11735 Add compose file for Ethiopic to match new keyboard in xkeyboard-config 11736 From bug report: 11737 11738 https://bugs.freedesktop.org/show_bug.cgi?id=11307 11739 11740commit eff33ae525337ce2026be135a26464c7b1237113 11741Author: James Cloos <cloos@jhcloos.com> 11742Date: Sat Aug 18 17:58:23 2007 -0400 11743 11744 Patch for Catalan locales 11745 From bugzilla bug 10943¹: 11746 11747 There are several Catalan locale codes which presently can 11748 be used in X11 systems; especially after they were accepted 11749 in belocs-locale-data². 11750 11751 In the following patches, I³ add ca_AD, ca_FR and ca_IT Catalan 11752 locale codes. For instance, without this, using ca_AD (actually 11753 a quite used locale⁴) some applications (eg. Emacs or Skype) 11754 cannot display Catalan diacritic marks as you type them. 11755 11756 1] https://bugs.freedesktop.org/show_bug.cgi?id=10943 11757 2] http://lists.debian.org/debian-devel-changes/2005/07/msg01429.html 11758 3] Toni Hermoso Pulido <toniher@softcatala.org> 11759 4] https://launchpad.net/~ubuntu.cat/+members 11760 11761commit 1f980cb7d022f53d0aee9e793b08203fb888e86e 11762Author: James Cloos <cloos@jhcloos.com> 11763Date: Sat Aug 18 17:47:04 2007 -0400 11764 11765 Add additional Euro signs to compose 11766 Inspired by bug 7419¹ make all of: 11767 11768 C=, =C, c=, =c, E=, =E, e=, E= 11769 11770 after <Multi_key> generate € U+20AC EURO SIGN. 11771 11772 1] https://bugs.freedesktop.org/show_bug.cgi?id=7419 11773 11774commit 4b0a14521449dfce8b4347bd17243efd1d3eae2d 11775Author: James Cloos <cloos@jhcloos.com> 11776Date: Sat Aug 18 17:29:08 2007 -0400 11777 11778 Compose fix for Latin-1 (from Debian) 11779 The description from bugzilla bug 7417¹ is: 11780 11781 We've been shipping this patch for some time in Debian now. The 11782 problem description from the patch header is reproduced below. You 11783 may want to note the licensing issue mentioned below, but we've been 11784 shipping it because the method by which this particular patch was 11785 generated and updated was also given below. 11786 11787 This patch by Denis Barbier. 11788 11789 The X11 protocol states that Unicode keysyms are in the range 11790 0x01000100 - 0x0110FFFF. If the result of composing characters is a 11791 Unicode codepoint, X returns the corresponding Unicode keysym, which 11792 is its Unicode codepoint augmented by 0x01000000. Latin-1 11793 characters must not appear with their Unicode codepoints in compose 11794 files, otherwise the returned composed character lies in the range 11795 0x01000000 - 0x010000FF which is not valid. 11796 11797 There are two solutions: either fix composing routines to return 11798 0xZZ instead of 0x010000ZZ (where Z is an hexadecimal digit), or 11799 replace U00ZZ by their corresponding keysyms in compose files. The 11800 latter is more logical and less error prone, so compose files will 11801 be patched. Many applications accept these invalid Unicode keysyms, 11802 but few of them don't, most notably xemacs. Only UTF-8 locales are 11803 affected. 11804 11805 This has been fixed very recently in XFree86 CVS (but not xorg), but 11806 for licensing reasons, this patch is not grabbed. Instead automatic 11807 conversion is performed by: 11808 11809 sed -e '/XK_LATIN1/,/XK_LATIN1/!d' /usr/include/X11/keysymdef.h \ 11810 | grep -v deprecated | grep 0x0 \ 11811 | sed -e 's/0x0/U0/' -e 's/XK_//' \ 11812 | awk '{ printf "s/\\b%s\\b/%s/ig\n", $3, $2; }' > sedfile 11813 for f in nls/*.UTF-8/Compose.pre 11814 do 11815 sed -f sedfile $f > $f.tmp && mv $f.tmp $f 11816 done 11817 11818 [I edited the quoted script to update it for the current location of 11819 the installed keysymdef.h and the current layout of the libX11 11820 repo. -JimC] 11821 11822 I applied the script, not the patch attached to the bugreport. 11823 11824 1] https://bugs.freedesktop.org/show_bug.cgi?id=7417 11825 11826commit 5cf5bc76642bfece7cb5b76faf414bf445f14489 11827Author: James Cloos <cloos@jhcloos.com> 11828Date: Sat Aug 18 17:13:41 2007 -0400 11829 11830 Add some compose sequences 11831 11832 Add some compose sequences from the patch in bug 5371 (attachment 4122). 11833 11834 Cf: 11835 11836 https://bugs.freedesktop.org/show_bug.cgi?id=5371 11837 https://bugs.freedesktop.org/attachment.cgi?id=4122 11838 11839commit d4002e389dd69780dfc7c2f7bd3cb0c57f05d4f8 11840Author: James Cloos <cloos@jhcloos.com> 11841Date: Sat Aug 18 13:57:31 2007 -0400 11842 11843 Fix SMP Compose targets 11844 The compose targets from the SMP (plane 1) were incorrect. 11845 11846 At some point the 0x10000 bit had been lost. 11847 11848commit f1ed3da9a30a1f0264fdc7d1c6466f27fe2a3d7d 11849Author: Jeremy C. Reed <reed@glacier.reedmedia.net> 11850Date: Thu Aug 16 17:37:22 2007 -0500 11851 11852 Fix a mutex reference-counting bug. 11853 11854 I was told that some systems have a much more permissive libpthread. 11855 I was asked to commit this. This is from NetBSD's X source. 11856 (I didn't receive any feedback on xorg list for over two weeks 11857 about this.) 11858 11859commit ac00a44b4875de70382da5a40dd87f976e5b9327 11860Author: Tilman Sauerbeck <tilman@code-monkey.de> 11861Date: Wed Aug 1 20:36:03 2007 +0200 11862 11863 Bumped version to 1.1.3. 11864 11865commit 76fae9cba1e9bdf7f0eb2ff2b90153d622136cf0 11866Author: Joerg Sonnenberger <joerg@netbsd.org> 11867Date: Fri Jul 27 11:15:47 2007 -0700 11868 11869 Fail properly on errors in recursive make. 11870 11871commit 1a18319b3bde08dd9ef69c7cd735a76000cf3177 11872Author: Brice Goglin <Brice.Goglin@ens-lyon.org> 11873Date: Thu Jul 26 23:31:15 2007 +0200 11874 11875 Add missing override parameter in XrmCombineDatabase prototype in the manpage 11876 11877 Reported by Arnaud Giersch <arnaud.giersch@iut-bm.univ-fcomte.fr> 11878 in http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=393434 11879 and https://bugs.freedesktop.org/show_bug.cgi?id=9948 11880 11881 Also add the type of the second argument in XrmMergeDatabases. 11882 11883commit 6f0764d4b56f64786b4980839ca262f10a51af6f 11884Author: Brice Goglin <Brice.Goglin@ens-lyon.org> 11885Date: Thu Jul 26 22:53:52 2007 +0200 11886 11887 Clarify return value of XGetCommand in case of error in the manpage 11888 11889 Reported by Sean Perry <shalehperry@attbi.com> 11890 in http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=133348 11891 and https://bugs.freedesktop.org/show_bug.cgi?id=9828 11892 11893commit b8bef57342632cc2d25580bb7daa3839bae04d89 11894Author: Alan Coopersmith <alan.coopersmith@sun.com> 11895Date: Wed Jul 25 17:44:06 2007 -0700 11896 11897 Include comment/copyright/license for AC_DEFINE_DIR in acinclude.m4 11898 11899commit 590cde811a79375231c59ed8583e02b111ed567c 11900Author: Kean Johnston <kean@armory.com> 11901Date: Thu Jul 19 16:44:20 2007 -0700 11902 11903 Reset hostname when falling back from :0 to hostname/localhost:0 as well 11904 11905commit d334665e619e9db657a2ea2764a8b852401d4a3f 11906Author: Kean Johnston <kean@armory.com> 11907Date: Tue Jul 17 16:34:30 2007 -0700 11908 11909 LOCALCONN fallback changes DisplayString() output, breaks KDE 11910 11911 See <http://lists.freedesktop.org/archives/xorg/2007-July/026443.html> 11912 11913commit 8e76bcf3cafda85058ce5f35f1f81929f4772f72 11914Author: Olivier Blin <blino@mandriva.org> 11915Date: Mon Jun 11 18:32:09 2007 +1000 11916 11917 fix XGetMotionEvents arguments order - Fixes bug 11222 11918 11919commit c2f88cdf5cd9c94b77e5bfdac572b5ac06ab4aa8 11920Author: Jamey Sharp <jamey@minilop.net> 11921Date: Sun Jun 10 16:19:59 2007 -0700 11922 11923 Fix locking in _XimGetWindowEventmask. 11924 11925 Now that XFilterEvent drops the Display lock before invoking callback 11926 functions, _XimGetWindowEventmask is called without the lock held. So 11927 when it called _XGetWindowAttributes, a variant of XGetWindowAttributes 11928 that does not lock the Display, Xlib/XCB would assert: 11929 11930 xcb_xlib.c:50: xcb_xlib_unlock: Assertion `c->xlib.lock' failed. 11931 11932 Should fix Gentoo #156367, Ubuntu #87947, Debian #427296. And others? 11933 11934commit 65f0ab5d46d80d55fc04d4eb14fa05f130eb8b9c 11935Author: Jamey Sharp <jamey@minilop.net> 11936Date: Sun Jun 3 21:41:47 2007 -0700 11937 11938 Move security fixes to the top of NEWS, and fix spacing. 11939 11940 Commit by Josh Triplett and Jamey Sharp. 11941 11942commit a549a258b8fcb1ba9d0c1b01b72967e385f67cab 11943Author: Jamey Sharp <jamey@minilop.net> 11944Date: Sun Jun 3 21:29:40 2007 -0700 11945 11946 Add NEWS item for bugfix in commit e2c1d788d1fe7bd2d34756493951552441e59b8c. 11947 11948 Commit by Josh Triplett and Jamey Sharp 11949 11950commit 5123b77a3d32d3ad479462f319762c328278aed9 11951Author: Jamey Sharp <jamey@minilop.net> 11952Date: Sun Jun 3 21:24:54 2007 -0700 11953 11954 Xlib/XCB: Inline and simplify handle_event, since only process_responses calls it now. 11955 11956 Commit by Josh Triplett and Jamey Sharp. 11957 11958commit 582ca690ea4f3ffd2b94826c4db97229bd3c7238 11959Author: Jamey Sharp <jamey@minilop.net> 11960Date: Sun Jun 3 20:59:12 2007 -0700 11961 11962 Xlib/XCB: Fix _XReadEvents to always enqueue a new event, even if an error occurs 11963 11964 Commit c337f9de7cfd89f983f83956b7457a274dd412f3 broke the invariant that 11965 _XReadEvents always enqueues at least one event even if an error occurred, 11966 because the one call to xcb_wait_for_event would then return an error, not an 11967 event, and nothing else ensured that process_responses would obtain an event. 11968 Fix this by reverting most of c337f9de7cfd89f983f83956b7457a274dd412f3 and 11969 f417570735aac865eb6b576d1ea76b5bfcd8573b and implementing the correct fix. In 11970 process_responses, wait_for_first_event now serves as a flag, cleared when 11971 actually handling an event. 11972 11973 Commit by Josh Triplett and Jamey Sharp. 11974 11975commit e2c1d788d1fe7bd2d34756493951552441e59b8c 11976Author: Jamey Sharp <jamey@minilop.net> 11977Date: Sun Jun 3 17:33:23 2007 -0700 11978 11979 Xlib/XCB: Only remove pending_requests when there are provably no more responses. 11980 11981commit 7a6dbd4b07ca0a49c30ca7a1d2437eafb2e15eab 11982Author: Josh Triplett <josh@freedesktop.org> 11983Date: Sun Jun 3 15:39:39 2007 -0700 11984 11985 Bump version number to 1.1.2, and add NEWS entry for 1.1.2 11986 11987 Signed-off-by: Josh Triplett <josh@freedesktop.org> 11988 11989commit 416f38f2e67ee1979b3d2feac6f06b3670238804 11990Author: Josh Triplett <josh@freedesktop.org> 11991Date: Sun Jun 3 12:13:44 2007 -0700 11992 11993 Revert "Revert "include: don't distribute XlibConf.h"" 11994 11995 This reverts commit 79fa3d8070d95b960ba486f2439225872471dadd. 11996 11997 Re-revert the XlibConf.h change, which prevented distribution, not 11998 installation. 11999 12000commit 79fa3d8070d95b960ba486f2439225872471dadd 12001Author: Josh Triplett <josh@freedesktop.org> 12002Date: Sat Jun 2 22:05:16 2007 -0700 12003 12004 Revert "include: don't distribute XlibConf.h" 12005 12006 This reverts commit c9e28e05ae01ce8a29bea09df759b6271865b44c. 12007 12008 The installed XlibInt.h includes XlibConf.h , so libX11 should ship 12009 XlibConf.h. (Commit c9e28e05ae01ce8a29bea09df759b6271865b44c didn't actually 12010 prevent automake from shipping XlibConf.h, because it used 12011 nodist_x11include_HEADERS rather than nodist_HEADERS.) 12012 12013commit f417570735aac865eb6b576d1ea76b5bfcd8573b 12014Author: Jamey Sharp <jamey@minilop.net> 12015Date: Sat Jun 2 17:59:15 2007 -0700 12016 12017 Xlib/XCB: inline wait_or_poll_for_event, which now had only one caller. 12018 12019 Commit by Josh Triplett and Jamey Sharp. 12020 12021commit c337f9de7cfd89f983f83956b7457a274dd412f3 12022Author: Jamey Sharp <jamey@minilop.net> 12023Date: Sat Jun 2 17:46:41 2007 -0700 12024 12025 Xlib/XCB: Ensure _XReadEvents reads at least one new event and blocks for exactly one event. 12026 12027 Commit by Jamey Sharp and Josh Triplett. 12028 12029commit 7f66c897f04806b75e574b55b48921b48045e3f9 12030Author: Jamey Sharp <jamey@minilop.net> 12031Date: Sat Jun 2 16:43:39 2007 -0700 12032 12033 Update _XReply's copy of _XCBUnlockDisplay's guts. 12034 12035 We introduced this bug in 6b81cbbedfb521ce046b77ee3cc54e884a1dc0c5. 12036 12037 Also add a comment in _XCBUnlockDisplay to discourage this problem from 12038 respawning. 12039 12040 Commit by Josh Triplett and Jamey Sharp. 12041 12042commit 740ead23512f8d2eaafaa69e514f1ebafad475b9 12043Author: Jamey Sharp <jamey@minilop.net> 12044Date: Sat Jun 2 16:01:01 2007 -0700 12045 12046 Xlib/XCB: Avoid re-crashing after _XIOError. 12047 12048 Commit by Josh Triplett and Jamey Sharp. 12049 12050commit 6b81cbbedfb521ce046b77ee3cc54e884a1dc0c5 12051Author: Jamey Sharp <jamey@minilop.net> 12052Date: Sat Jun 2 12:30:30 2007 -0700 12053 12054 Hold XCB's Xlib lock even when only the user lock (XLockDisplay) is held. 12055 12056 An Xlib client can query Display state, such as with NextRequest, while 12057 it holds only the Xlib user lock (between XLockDisplay and 12058 XUnlockDisplay), so XCB requests in other threads should be blocked when 12059 the Xlib user lock is held. 12060 12061 We acquire the lock even when XInitThreads was not called, so that pure 12062 XCB code can use multiple threads even in an otherwise single-threaded 12063 Xlib application. 12064 12065 Commit by Josh Triplett and Jamey Sharp. 12066 12067commit 95523387d619af5b400748898d722e080b5ce1a6 12068Author: Jamey Sharp <jamey@minilop.net> 12069Date: Sat Jun 2 11:57:39 2007 -0700 12070 12071 Allow re-entrant Xlib calls from _XIOError. 12072 12073 Some libraries try to clean up X resources from atexit handlers, _fini, 12074 or C++ destructors. To make these work, the Display lock should be 12075 downgraded to a user lock (as in XLockDisplay) before calling exit(3). 12076 This blocks Xlib calls from threads other than the one calling exit(3) 12077 while still allowing the exit handlers to call Xlib. 12078 12079 This assumes that the thread calling exit will call any atexit handlers. 12080 If this does not hold, then an alternate solution would involve 12081 registering an atexit handler to take over the lock, which would only 12082 assume that the same thread calls all the atexit handlers. 12083 12084 Commit by Josh Triplett and Jamey Sharp. 12085 12086commit 91b02b8064f4e0bcc56019f0722914850008a597 12087Author: Tilman Sauerbeck <tilman@code-monkey.de> 12088Date: Thu May 17 19:07:34 2007 +0200 12089 12090 More constification. 12091 12092commit a4f3841940158351f9424c3f59b305cce877177d 12093Author: Tilman Sauerbeck <tilman@code-monkey.de> 12094Date: Thu May 17 00:29:43 2007 +0200 12095 12096 Constified composite text charset table. 12097 12098commit 0581c0aa6039e6b2abb9f7b0a4f9904d8e01f00e 12099Author: Tilman Sauerbeck <tilman@code-monkey.de> 12100Date: Wed May 16 23:19:22 2007 +0200 12101 12102 Have the compiler fill in hexTable so we don't have to do it at runtime. 12103 12104commit 0e8d9ca47dab0d069e305d5784d05f2ade04f0a8 12105Author: Tilman Sauerbeck <tilman@code-monkey.de> 12106Date: Wed May 16 19:36:23 2007 +0200 12107 12108 More constification. 12109 12110commit 6d2bed8f04942b4de086a519ac693e729c9fdeea 12111Author: Tilman Sauerbeck <tilman@code-monkey.de> 12112Date: Wed May 16 19:18:20 2007 +0200 12113 12114 Constify and clean up token table. 12115 12116commit 6c508eab5df5d517f7e4cbe6087308cd53a564b2 12117Author: Tilman Sauerbeck <tilman@code-monkey.de> 12118Date: Wed May 16 18:24:42 2007 +0200 12119 12120 Constified more tables. 12121 12122commit e699c4231c205ef00d687b6412308d031b99806b 12123Author: Tilman Sauerbeck <tilman@code-monkey.de> 12124Date: Wed May 16 18:01:23 2007 +0200 12125 12126 Constified error list. 12127 12128commit a68a1cd7cb990ba276fbc36a7591044d78b3d3c1 12129Author: Peter Hutterer <peter@cs.unisa.edu.au> 12130Date: Tue May 15 16:54:01 2007 +0930 12131 12132 Add XGenericEvent definition and handling for long events. 12133 12134commit c76d30253f1483ac8200ad5c032a818907e65030 12135Author: Jan Willem Stumpel <jstumpel@planet.nl> 12136Date: Fri May 4 12:00:49 2007 -0700 12137 12138 Update el_GR.UTF-8/Compose.pre to match changes in xkeyboard-config cvs 12139 12140 Cf: 12141 12142 https://bugs.freedesktop.org/show_bug.cgi?id=10851 12143 https://bugs.freedesktop.org/show_bug.cgi?id=10824 12144 http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=386385 12145 12146 The greek keyboard definition was changed to replace dead_horn and 12147 dead_ogonek with U0313 COMBINING COMMA ABOVE (aka Psili) and U0314 12148 COMBINING REVERSED COMMA ABOVE (aka Dasia). 12149 12150 This patch modifies the Greek Compose.pre to match. 12151 12152 It is generated by the script Jan Willem Stumpel <jstumpel@planet.nl> 12153 posted to 386385@bugs.debian.org: 12154 12155 #!/usr/bin/perl 12156 while (<>) { 12157 print $_; 12158 if (/dead_horn/) { 12159 s/dead_horn/U0313/; 12160 print $_; 12161 } 12162 elsif (/dead_ogonek/) { 12163 s/dead_ogonek/U0314/; 12164 print $_; 12165 } 12166 } 12167 12168commit a48386ce6b5f8fd2d9dc11a966c9bf5da59f3831 12169Author: Magnus Kessler <Magnus.Kessler@gmx.net> 12170Date: Tue May 1 15:20:08 2007 +0200 12171 12172 Switched function definitions from K&R to ANSI style. 12173 12174commit 605d357074d556a05a3fba2e85cbea36a3204248 12175Author: Tilman Sauerbeck <tilman@code-monkey.de> 12176Date: Tue May 1 14:47:03 2007 +0200 12177 12178 Tweaked configure output about the man pages suffix. 12179 12180commit 9824b40d2af4ca2376512c1be7743da0d5065900 12181Author: Alan Coopersmith <alan.coopersmith@sun.com> 12182Date: Sat Apr 28 00:42:18 2007 -0700 12183 12184 Fix typo in nroff macro in XkbAddGeomOverlayKey.man 12185 12186commit f93849dcc68bd5042ea0884e5190dc7c35b31d68 12187Author: Alan Coopersmith <alan.coopersmith@sun.com> 12188Date: Sat Apr 28 00:30:55 2007 -0700 12189 12190 Protect C comments and #defines in XKB man pages from being mangled by cpp 12191 12192commit f2f27d4763c7665e422fab10b96b4cf5ad6c0a6f 12193Author: Alan Coopersmith <alan.coopersmith@sun.com> 12194Date: Sat Apr 28 00:14:50 2007 -0700 12195 12196 Add Makefile to process/install XKB man pages 12197 12198commit d9954c6f6f3a8c406b946acd0d034ff83c656156 12199Author: Dennis Arellano <Dennis.Arellano@Sun.COM> 12200Date: Thu Aug 19 00:00:00 1999 -0700 12201 12202 Add man pages for XKB API's 12203 12204 Man pages originally written for X11R6.4 integration to Solaris 7 11/99 12205 Sun bug id 4258344: Add new XKB API manpages for 6.4 upgrade 12206 <http://bugs.opensolaris.org/bugdatabase/view_bug.do?bug_id=4258344> 12207 12208 (Volunteer needed to convert prototypes in man pages to ANSI C style...) 12209 12210commit f640a49b5e2ebf29f9d655df544c63bf826f619a 12211Author: Tilman Sauerbeck <tilman@code-monkey.de> 12212Date: Fri Apr 20 18:39:59 2007 +0200 12213 12214 Markup tweak for XOpenIM. 12215 12216commit e972b0bb255af4f3258217852542faf5afa60b28 12217Author: Julien Cristau <jcristau@debian.org> 12218Date: Fri Apr 20 18:35:09 2007 +0200 12219 12220 Bug #9695: Fixed a few argument types in the XOpenIM manpage. 12221 12222commit b4e2276f329fa42397cb8609cfcd34ebafd3d96b 12223Author: Julien Cristau <jcristau@debian.org> 12224Date: Fri Apr 20 18:28:52 2007 +0200 12225 12226 Bug #9697: Fixed documentation of XVisualInfo struct. 12227 12228 The "depth" member was said to be unsigned int, but it's signed. 12229 12230commit 4068f3dae01c630f825002673b1d3a047ad61863 12231Author: Julien Cristau <jcristau@debian.org> 12232Date: Fri Apr 20 16:41:21 2007 +0200 12233 12234 Bug #9696: refer to XDefineCursor() instead of XDefineCusor(). 12235 12236commit 603c2f88d4e57ce1a3c16e8b6246866e6edd8fa8 12237Author: Tilman Sauerbeck <tilman@code-monkey.de> 12238Date: Sat Apr 7 14:42:55 2007 +0200 12239 12240 Use unistd.h to get getresuid() and friends. 12241 12242 This works since we now have _GNU_SOURCE defined. 12243 12244commit 0300f295bbd3a0c7c46baac8e0a27aeaf53c9d9b 12245Author: Tilman Sauerbeck <tilman@code-monkey.de> 12246Date: Sat Apr 7 14:27:12 2007 +0200 12247 12248 Bug #10562: Define _GNU_SOURCE on glibc systems. 12249 12250commit a225a0be48770beb689d5ac5da97073634f7deab 12251Author: Tilman Sauerbeck <tilman@code-monkey.de> 12252Date: Fri Apr 6 12:46:25 2007 +0200 12253 12254 For nls/*.pre, allow people to comment lines by starting them with '##'. 12255 12256 This fixes a bunch of cpp warnings from nls/en_US.UTF-8/Compose.pre. 12257 Fixing that file would have been a larger diff, and using ## may be 12258 nicer to use anyway. 12259 12260commit 1c75a9479011e5f1ad01c950628d0ef5a302d8b6 12261Author: Tilman Sauerbeck <tilman@code-monkey.de> 12262Date: Fri Apr 6 11:59:31 2007 +0200 12263 12264 Bug #10475: Fixed lots of char*/const char* mixups. 12265 12266 I didn't fix all of them, as that would require touching 12267 public headers. 12268 12269commit 680dd50193b5b3fcabdd3f1fcbd6a889d5a95c54 12270Author: Matthias Hopf <mhopf@suse.de> 12271Date: Thu Apr 5 11:53:18 2007 +0200 12272 12273 Fix 64bit issues with reallocation. 12274 12275commit 4d38aeaca42d0bdfe34a833a142ee4d895de03bf 12276Author: Tilman Sauerbeck <tilman@code-monkey.de> 12277Date: Wed Apr 4 18:41:18 2007 +0200 12278 12279 Fixed a few warnings. 12280 12281commit 7dc7ef398b6ad90ccd1680ed9cd1cfdd47312f5a 12282Author: Matthieu Herrb <matthieu@roadrock.(none)> 12283Date: Tue Apr 3 15:39:52 2007 +0200 12284 12285 Multiple integer overflows in the XGetPixel() and XInitImage functions 12286 12287 CVE-2007-1667 12288 12289commit 0284b144340a455a4b5b5011d81ac5a610372291 12290Author: David Baron <dbaron@dbaron.org> 12291Date: Fri Mar 30 17:07:46 2007 +0200 12292 12293 Bug #7703: Fixed XSetSizeHints() et al wrt use of uninitialized data. 12294 12295 Now only those fields of the respective hint struct are set that 12296 are actually valid in the input data. 12297 The changed functions are: 12298 XSetSizeHints(), XSetWMHints() and XSetWMSizeHints(). 12299 12300commit 0994faa0c76c45b106442db461b8a30a3e1c9395 12301Author: Tilman Sauerbeck <tilman@code-monkey.de> 12302Date: Thu Mar 29 17:31:25 2007 +0200 12303 12304 Fixed the change from the previous SendEvent commit. 12305 12306 Testing a different patch than the one you commit is bad, right? 12307 12308commit 398d75528a84f4b8414eb0e363cf53b1b16f6fdf 12309Author: Tilman Sauerbeck <tilman@code-monkey.de> 12310Date: Wed Mar 28 22:23:44 2007 +0200 12311 12312 Bug #10292: Fixed a memory leak related to XOpenDisplay() in the XCB code. 12313 12314commit ab0bcd07957cecc8e7c0e75d5160a625e91264fe 12315Author: David Baron <dbaron@dbaron.org> 12316Date: Wed Mar 28 22:21:40 2007 +0200 12317 12318 Bug #7713: Initialize all of the event's fields before sending it. 12319 12320commit bc80f9fe3ccce40ee41246b97470c4f0519756ad 12321Author: Julien Cristau <jcristau@debian.org> 12322Date: Sun Mar 18 13:14:48 2007 +0100 12323 12324 Bug #9279: Fixed a file descriptor leak. 12325 12326commit c9e28e05ae01ce8a29bea09df759b6271865b44c 12327Author: Daniel Stone <daniel@fooishbar.org> 12328Date: Sat Dec 16 00:45:19 2006 +0200 12329 12330 include: don't distribute XlibConf.h 12331 12332 Since XlibConf.h is built by configure, don't distribute it. 12333 12334commit dd1705ced2cac6b4b6b21e79272fcf9bed4bf376 12335Merge: 129bbb9f 769b9854 12336Author: Jeremy C. Reed <reed@glacier.reedmedia.net> 12337Date: Thu Dec 14 14:23:20 2006 -0600 12338 12339 Merge branch 'master' of git+ssh://git.freedesktop.org/git/xorg/lib/libX11 12340 12341commit 129bbb9f9114a571556fa3a24f15ba58a5cdb2de 12342Author: Jeremy C. Reed <reed@glacier.reedmedia.net> 12343Date: Thu Dec 14 14:21:19 2006 -0600 12344 12345 For NetBSD, define the XTHREADLIB and XTHREAD_CFLAGS. 12346 12347commit 769b9854f7eb1d6d20dd0b4a1c1215ad8e1b77b6 12348Author: Daniel Stone <daniel@fooishbar.org> 12349Date: Wed Dec 6 18:53:00 2006 +0200 12350 12351 Makefile.am: make ChangeLog hook safer 12352 12353 Make ChangeLog hook as safe as possible. 12354 (cherry picked from f5d6a3d24095c7ffed86705995d0874c885e7676 commit) 12355 12356commit 8a8185a649e93b90ffa820387ffdca831227f5a9 12357Author: Josh Triplett <josh@freedesktop.org> 12358Date: Thu Nov 30 18:33:13 2006 -0800 12359 12360 Add autogen.sh to EXTRA_DIST. 12361 12362commit efe817f95ef8d05e863c83147e903140bc860de4 12363Author: Jamey Sharp <jamey@minilop.net> 12364Date: Thu Nov 30 17:58:35 2006 -0800 12365 12366 Release libX11 1.1.1. 12367 12368commit f637a5b03164263a3af2e644cf655e52b015f1bb 12369Author: Ross Combs <rocombs@cs.nmsu.edu> 12370Date: Sat Nov 25 14:45:17 2006 -0800 12371 12372 Debian bug #354315: Clarify return value in XGetWindowAttributes man page 12373 12374 This man page does not discuss the actual return values of the 12375 function, but says they are of type "Status". One might assume 12376 that this means you could compare it with the "Success" macro. 12377 One would be wrong. 12378 12379 The X functions seem to have two three types representing status. 12380 If it is an "int" there are a number of error codes or "Success" 12381 which can be compared against. If it is a bool, the result can be 12382 compared with "True" or "False". If the return type is "Status" it 12383 appears that the return type is either 0 or 1. Unfortunately the 12384 value for Success is zero, so it is important to distinguish 12385 between the first two types of return values and the third; 12386 otherwise the conditional will be inverted. 12387 12388 XGetWindowAttributes() is one of the functions which returns zero 12389 for failure. The man page should make this clear. 12390 12391commit c6a0b0f18ed1242eeb908f5cf767ab8381edd456 12392Author: Jamey Sharp <jamey@minilop.net> 12393Date: Sat Nov 25 14:23:45 2006 -0800 12394 12395 Bug #9154: Always process an event for _XReadEvents, even if an error occurs 12396 12397 Previously, process_responses (in the wait_for_first_event case called 12398 from _XReadEvents) considered any return from xcb_wait_for_event 12399 sufficient to think it had processed an event. If xcb_wait_for_event 12400 returned an error, and no more events occurred before process_responses 12401 called xcb_poll_for_event, process_responses would try to return with 12402 dpy->head NULL, and would fail an assertion for the _XReadEvents 12403 postcondition. Now, process_responses continues using xcb_wait_for_event 12404 until it gets an event. 12405 12406commit d56e78acce9b2aa1dd1bf172afedaa3bccd5e1c8 12407Author: Tilman Sauerbeck <tilman@code-monkey.de> 12408Date: Sat Nov 25 05:29:31 2006 -0800 12409 12410 Bug #9153: Fix access to freed memory. 12411 12412 The fix for bug #8622 introduced a smaller bug where _XReply would 12413 read memory shortly after freeing it. This patch caches the needed 12414 value in a stack-allocated variable before the heap-allocated memory 12415 is freed. 12416 12417commit 934ca763bbc0dd7ae460469bfc000ba101602bcc 12418Author: Josh Triplett <josh@freedesktop.org> 12419Date: Fri Nov 24 19:57:58 2006 -0800 12420 12421 libx11 doesn't use inputproto in public headers; don't require it in x11.pc 12422 12423 Based on a Debian patch. 12424 12425commit 4255997ef2d92740d51f6e63e9eabcfa089683f0 12426Author: Josh Triplett <josh@freedesktop.org> 12427Date: Thu Nov 23 07:19:32 2006 -0800 12428 12429 Release libX11 1.1 12430 12431commit a1168e11ec9377307c51a7271faec3bf88a63a66 12432Author: Jamey Sharp <jamey@minilop.net> 12433Date: Tue Nov 21 17:52:34 2006 -0800 12434 12435 Add note in man-page that XListFontsWithInfo is not thread-safe. 12436 12437 _XReply drops the Display lock, so the value of dpy->request may change 12438 before _XReply is called again. 12439 12440 I discovered this by inspection a year or two ago. I'm pretty confident 12441 in the claim, and nobody has come up with an argument for why it's safe 12442 despite appearances. 12443 12444commit 67abe024268c6b1fdee516e5d3a046ccffd7e80a 12445Author: Jamey Sharp <jamey@minilop.net> 12446Date: Sat Nov 18 15:39:26 2006 -0800 12447 12448 Bug #8622: Fix response processing order for threaded apps 12449 12450 Previously, process_responses (the common code for _XReply, 12451 _XReadEvents, and _XEventsQueued) took the current request sequence 12452 number as an argument, and did some highly complicated processing to 12453 attempt to process responses in order across threads. This didn't 12454 actually work. 12455 12456 Now, process_responses handles responses in order, by adding condition 12457 variables to the list of outstanding requests in 12458 dpy->xcb->pending_requests, and blocking on them when those requests 12459 should get processed to allow _XReply to process them; if actually 12460 called from _XReply, it returns when _XReply's request should get 12461 processed. _XReply broadcasts on the condition variable after it has 12462 read its reply and re-acquired the display lock. 12463 12464 Another great commit brought to you by Jamey Sharp, Josh Triplett, the 12465 Gobby collaborative text editor, conspy, and ridiculous amounts of SSH 12466 forwarding. 12467 12468 Signed-off-by: Josh Triplett <josh@freedesktop.org> 12469 Signed-off-by: Jamey Sharp <jamey@minilop.net> 12470 12471commit 941f02ede63baa46f93ed8abccebe76fb29c0789 12472Author: Lars Knoll <lars@trolltech.com> 12473Date: Wed Nov 8 12:17:41 2006 -0800 12474 12475 Don't hold the display lock around callbacks to the application. 12476 12477 This fixes an XCB locking assertion failure, particularly with emacs. 12478 12479commit e494ecaac1ec8a22bd9a85f800fca74d02e9d358 12480Author: Diego 'Flameeyes' Pettenò <flameeyes@gentoo.org> 12481Date: Tue Nov 7 09:32:00 2006 -0800 12482 12483 Add xcb-xlib dependency to x11.pc when built against XCB. 12484 12485commit 2302008a3793eb4df8ede777d54fe06505c47eaf 12486Author: Eric Anholt <eric@anholt.net> 12487Date: Mon Nov 6 17:11:42 2006 -0800 12488 12489 XCB: Allocate the right amount of memory for dpy->lock_fns. 12490 12491 Fixes a crash I was experiencing on startup of anything using gdk. 12492 12493commit 5f860655be88108b03ccd97470a0814819254bf0 12494Author: Jamey Sharp <jamey@minilop.net> 12495Date: Thu Nov 2 17:55:31 2006 -0800 12496 12497 Release libX11 1.1 RC2 (1.0.99.2). 12498 12499commit a6f4bbf7b1d725b0f04bd660f57b861a76b19831 12500Author: Benno Schulenberg <bensberg@justemail.net> 12501Date: Sun Oct 29 03:10:30 2006 +0300 12502 12503 nls (en_US): remove long compositions that override shorter (bug #2286) 12504 Remove long compositions that override (or get overriden by) later shorter 12505 compositions, e.g. a four-key compose sequence that gets overriden by a 12506 later three-key compose sequence. 12507 12508commit 0280bf11ef88673a9b5bba3a91a599260f1f0949 12509Author: Benno Schulenberg <bensberg@justemail.net> 12510Date: Sun Oct 29 03:08:36 2006 +0300 12511 12512 nls: remove shadowed compose entries (bug #2286) 12513 Remove compose entries shadowed by others later on. 12514 12515commit d118f2b1ef10997194b281524177dea7396da7dd 12516Author: Benno Schulenberg <bensberg@justemail.net> 12517Date: Sun Oct 29 03:07:15 2006 +0300 12518 12519 nls: remove duplicate compose entries (bug #2286) 12520 Remove a bunch of duplicate entries from various Compose files. 12521 12522commit 5e1cc2fe20e5904ca1e05a4cb7be13d450a593bb 12523Author: Caolan McNamara <caolanm@redhat.com> 12524Date: Sun Oct 29 02:46:15 2006 +0300 12525 12526 XKB geometry: fix leaks in GetKeyboardByName (bug #8099) 12527 Don't leak the name and value of every property we parse, as well as the 12528 name of every colour. 12529 12530commit 686bb8b35acf6cecae80fe89b2b5853f5816ce19 12531Author: Matthias Hopf <mhopf@suse.de> 12532Date: Wed Oct 18 14:25:04 2006 +0200 12533 12534 Fix double open of compose file. 12535 12536 Issue found by Kees Cook <kees@canonical.com>. 12537 12538commit d3e65cb8cddf08913d83c9df2bb9b1517f2ad3a8 12539Author: Jamey Sharp <jamey@minilop.net> 12540Date: Sat Oct 14 21:25:10 2006 -0700 12541 12542 XCB: check for and handle I/O errors in _XGetXCBBuffer. 12543 12544commit 256eba6b40c5f811a03b04abf5f85f728ee3ab5d 12545Author: Jamey Sharp <jamey@minilop.net> 12546Date: Wed Oct 11 00:06:50 2006 -0700 12547 12548 XKB bugfix: SyncHandle must be called after UnlockDisplay, not before. 12549 12550commit 1eedf1bd033e496843cfde42ae4ae5a119298605 12551Author: Jamey Sharp <jamey@minilop.net> 12552Date: Tue Oct 10 23:03:28 2006 -0700 12553 12554 Add correct Display locking to XKB functions. 12555 12556 Some XKB functions didn't correctly call LockDisplay or UnlockDisplay. 12557 This patch fixes at least some instances of that problem. 12558 12559 Thanks to Magnus Kessler <Magnus.Kessler@gmx.net> for finding these bugs 12560 and proposing a fix, which this patch is based on. 12561 12562commit e17c2cbe9fbaa1600d4b9463ec800a874b0d87cd 12563Author: David Nusinow <dnusinow@debian.org> 12564Date: Tue Oct 10 22:11:05 2006 -0400 12565 12566 Dynamically generate internal manpage section using __libmanpagesuffix__ so that it actually matches the section if you don't use 3X11 12567 12568commit e53557da969b706dbc843f6fde3db31ffe382e0f 12569Author: Jamey Sharp <jamey@minilop.net> 12570Date: Sat Oct 7 21:00:36 2006 -0700 12571 12572 Release libX11 1.1 RC1 (1.0.99.1). 12573 12574commit bf237409c5fce32c557d298f62f44d456c2b5bc8 12575Merge: ba477191 2d426d1f 12576Author: Jamey Sharp <jamey@minilop.net> 12577Date: Sat Oct 7 21:07:16 2006 -0700 12578 12579 As XCB support is about to be released in libX11, stable is now subsumed by master. 12580 12581commit ba477191c67ce93e61423cc1abe35275704cce50 12582Author: Jamey Sharp <jamey@minilop.net> 12583Date: Sat Oct 7 03:48:13 2006 -0700 12584 12585 XCB: Don't rely on having the definition of struct xcb_setup_t available. 12586 12587commit 117b55cbd0b0ce51362df88363ed83d44a493ac7 12588Author: Jamey Sharp <jamey@minilop.net> 12589Date: Fri Oct 6 16:27:31 2006 -0700 12590 12591 xcb_poll_for_event no longer takes an 'int *error' out-parameter. 12592 12593commit caaa8e8a55e837b3585c1dee7bef194fc4c79d16 12594Author: Josh Triplett <josh@freedesktop.org> 12595Date: Fri Oct 6 16:26:11 2006 -0700 12596 12597 Actually ship Xxcbint.h 12598 12599commit 7b027e53b5e393082f4f515c8ba18077eb97163f 12600Author: Josh Triplett <josh@freedesktop.org> 12601Date: Fri Oct 6 16:25:50 2006 -0700 12602 12603 Clean ChangeLog only in "make maintainer-clean", not "make clean" 12604 12605 ChangeLog requires a git repo to generate; make clean and make distclean 12606 shouldn't get rid of it. 12607 12608commit cab22e02e78b3e5b8a73d1cd55cf6686426b47e0 12609Author: Josh Triplett <josh@freedesktop.org> 12610Date: Fri Oct 6 16:24:58 2006 -0700 12611 12612 Add ChangeLog and "make dist"-generated files to .gitignore 12613 12614commit e4c7cfdee4a40e466c0c6b370cabd432e9e855a0 12615Author: Josh Triplett <josh@freedesktop.org> 12616Date: Fri Oct 6 15:53:27 2006 -0700 12617 12618 Add manual pages for XGetXCBConnection and XSetEventQueueOwner 12619 12620commit 688224cea95e453f94c5a602dc6fce84bc93dfc0 12621Author: Josh Triplett <josh@freedesktop.org> 12622Date: Fri Oct 6 13:41:16 2006 -0700 12623 12624 Remove unnecessary prototype for _XFreeDisplayStructure in xcb_disp.c 12625 12626commit ab728ca372288d0db1b486c265e34c1376f29104 12627Author: Josh Triplett <josh@freedesktop.org> 12628Date: Fri Oct 6 12:36:39 2006 -0700 12629 12630 XCL is dead; long live Xlib/XCB 12631 12632 Rename all instances of "XCL" to Xlib/XCB-derived names. 12633 12634 The only user-visible change: rename the include file <X11/xcl.h> to 12635 <X11/Xlib-xcb.h>; programs will need to change their #include lines to match. 12636 12637 Remove the XCL cast inlines from Xlib-xcb.h. 12638 12639commit 5b73093203039d307eb7ab3845c3ced207e9e26c 12640Author: Josh Triplett <josh@freedesktop.org> 12641Date: Fri Oct 6 11:33:49 2006 -0700 12642 12643 Add XCB developers to AUTHORS 12644 12645commit 1cb71ff139276a0a58c60ea5f261f64b94706b9b 12646Author: Josh Triplett <josh@freedesktop.org> 12647Date: Fri Oct 6 11:21:28 2006 -0700 12648 12649 Fix email addresses in README 12650 12651commit 12f038669278019594ca0ed53dadcf4e84092422 12652Author: Jamey Sharp <jamey@minilop.net> 12653Date: Fri Oct 6 02:13:05 2006 -0700 12654 12655 XCB: Handle all responses in order of monotonically increasing sequence number. 12656 12657commit f392680273278b43079302206897f794e60f3c70 12658Author: Josh Triplett <josh@freedesktop.org> 12659Date: Fri Oct 6 01:11:08 2006 -0700 12660 12661 Actually install x11-xcb.pc, and ship x11-xcb.pc.in 12662 12663commit f1fcad2e3fd17aaf1294f1d8e9f406fd5b32a863 12664Author: Jamey Sharp <jamey@minilop.net> 12665Date: Thu Oct 5 18:32:29 2006 -0700 12666 12667 XCB: correctly handle failure to connect to X server. 12668 12669commit e754b3b078d556c7861da56aad47d244e9199e06 12670Author: Josh Triplett <josh@freedesktop.org> 12671Date: Thu Oct 5 17:44:22 2006 -0700 12672 12673 Split public Xlib/XCB functions into libX11-xcb 12674 12675 We can never change the libX11 soname, and we don't want to commit to never 12676 changing the public Xlib/XCB functions, so split them into a separate library 12677 libX11-xcb. This also means that a program linked solely against libX11 12678 should work with either Xlib or Xlib/XCB, which will make life easier for 12679 package maintainers. 12680 12681 Signed-off-by: Josh Triplett <josh@freedesktop.org> 12682 Acked-by: Jamey Sharp <jamey@minilop.net> 12683 12684commit ffd367f708b295abaedf3a23a1bfd4710d171d6f 12685Author: Jamey Sharp <jamey@minilop.net> 12686Date: Wed Oct 4 17:16:46 2006 -0700 12687 12688 No longer #include Xmd from xcl.h: we do not need it. 12689 12690commit 3aff149d42ba8ed620091971b3766bdf96c62aaf 12691Author: Jamey Sharp <jamey@minilop.net> 12692Date: Wed Oct 4 16:58:32 2006 -0700 12693 12694 XCB: Revert locking to simple wrapper around libX11's normal locks. 12695 12696 No more recursive mutexes, no more banging XCB's I/O lock in-place, and 12697 reduces the differences between the previous stable release and an 12698 XCB-enabled one. Sadly, Xlib's pluggable thread functions work again 12699 too, now. I apologize to the world. 12700 12701commit 8ff122fb529bdb1c2b9a86b12d06b6da1b35d708 12702Author: Jamey Sharp <jamey@minilop.net> 12703Date: Mon Sep 25 04:54:52 2006 -0700 12704 12705 Link explicitly against XCB's Xlib compatibility functions. 12706 12707commit bde3cd123d65a2f36ee0c417f5f231b7e01d0671 12708Author: Jamey Sharp <jamey@minilop.net> 12709Date: Mon Sep 25 04:13:20 2006 -0700 12710 12711 libxcb now installs header files in <xcb>, not <X11/XCB>. 12712 12713commit 87d00207f5a1f25a45a153618739cd6481814f89 12714Author: Ian Osgood <iano@quirkster.com> 12715Date: Sun Sep 24 23:39:01 2006 -0700 12716 12717 Track XCB's "Great Renaming". 12718 12719commit 85a5e98dff9b7752fae157fad9b8c9825cb0efab 12720Author: Jamey Sharp <jamey@minilop.net> 12721Date: Tue Sep 12 23:02:42 2006 -0700 12722 12723 Quit using XCBGetQueuedRequestRead. 12724 12725commit a61936fc4e9bd93b108764bbacd5b8f786e51915 12726Author: Tollef Fog Heen <tfheen@err.no> 12727Date: Wed Aug 30 00:05:54 2006 +0300 12728 12729 nls: use _XlcUtf8Loader for en_US (bug #7982) 12730 Use _XlcUtf8Loader instead of _XlcUnicodeLoade,r bringing it into line with 12731 every other locale. 12732 12733commit abcc7e1865cdfbd591f6520cfe4257f0b0b1c03e 12734Author: Alan Coopersmith <alan.coopersmith@sun.com> 12735Date: Wed Aug 23 18:49:30 2006 -0700 12736 12737 When opening display, if LOCALCONN fails, fall back to UNIXCONN, then TCPCONN 12738 12739 Port to X11R7 of Sun bug fix 4061225 by Alex Chen for X11R6 - when failing to 12740 connect on a named pipe, try a Unix socket first, to better support people who 12741 replace their X servers with ones that don't support named pipe transport. 12742 <http://bugs.opensolaris.org/bugdatabase/view_bug.do?bug_id=4061225> 12743 12744commit 1ddc44c1cada7e926bd4787406444ce7c36b61e1 12745Author: Mark Brown <mark.brown@sun.com> 12746Date: Thu Jul 27 19:17:10 2006 -0700 12747 12748 Sun bug 1149809: Document event delivery when grab is terminated. 12749 12750commit 171107b03ac89d94f9006c7cda242aeefb9ecd16 12751Author: Dennis Arellano <Dennis.Arellano@Sun.COM> 12752Date: Thu Jul 27 18:47:06 2006 -0700 12753 12754 Sun bug 4091271: XGetWindowProperty is missing a crucial prop_return description 12755 12756 Document that 32-bit format properties are always returned in arrays of type 12757 long, even on systems where long is 64-bits. 12758 <http://bugs.opensolaris.org/bugdatabase/view_bug.do?bug_id=4091271> 12759 12760commit 8309efe6550877cd0bf22979904b3f6bd3e6cffa 12761Author: Alan Coopersmith <alan.coopersmith@sun.com> 12762Date: Mon Jul 24 15:52:00 2006 -0700 12763 12764 Add support for "make lint" to check code with lint/sparse/etc. 12765 12766commit 931e02fbd1acd09aae2b0954c34342c86c72dff6 12767Author: Alan Coopersmith <alan.coopersmith@sun.com> 12768Date: Mon Jul 24 15:50:52 2006 -0700 12769 12770 ANSIfy some static function definitions 12771 12772commit 20b7abcaac324d90454de63f32f4a2b398e69e63 12773Author: Alan Coopersmith <alan.coopersmith@sun.com> 12774Date: Mon Jul 24 15:01:40 2006 -0700 12775 12776 Fix sparse warning: Using plain integer as NULL pointer 12777 12778commit d158ab29930513c4097f5b67e7bea08ed2bfd62c 12779Author: Alan Coopersmith <alan.coopersmith@sun.com> 12780Date: Mon Jul 24 14:00:24 2006 -0700 12781 12782 Remove unused variable 12783 12784commit 30377000375bdb958042dcb1f38503c94ef21eaf 12785Author: Eric Anholt <anholt@FreeBSD.org> 12786Date: Fri Jul 21 18:55:36 2006 -0400 12787 12788 Bug #7188: Fix the documentation of XUrgencyHint (not UrgencyHint). 12789 12790commit 4eba45879aea4e415ab550ee56b900d060099110 12791Author: Matthieu Herrb <matthieu.herrb@laas.fr> 12792Date: Sun Jul 16 10:55:39 2006 +0200 12793 12794 set GIT_DIR=${srcdir}/.git for git-log 12795 12796commit 2d426d1f2608fedb77bd7d010dabece76b8d4a60 12797Author: Aaron Plattner <aplattner@nvidia.com> 12798Date: Tue Jul 11 13:27:49 2006 -0700 12799 12800 Add a .PHONY to ensure the ChangeLog isn't stale. 12801 12802 Setting the ChangeLog rule as phony forces it to be re-run even when the 12803 ChangeLog file already exists. Research indicates .PHONY is portable to BSD and 12804 Solaris make. 12805 (cherry picked from b8a98809ed81e1226775e6447ef219ffc01334b5 commit) 12806 12807commit b8a98809ed81e1226775e6447ef219ffc01334b5 12808Author: Aaron Plattner <aplattner@nvidia.com> 12809Date: Tue Jul 11 13:27:49 2006 -0700 12810 12811 Add a .PHONY to ensure the ChangeLog isn't stale. 12812 12813 Setting the ChangeLog rule as phony forces it to be re-run even when the 12814 ChangeLog file already exists. Research indicates .PHONY is portable to BSD and 12815 Solaris make. 12816 12817commit 8f2be66089b88e4ed6acb0211ea107f4bb910bd3 12818Author: Mayank Jain <majain@redhat.com> 12819Date: Tue Jul 11 19:42:47 2006 +0100 12820 12821 add Indian language locales 12822 Add as, kn, ml, or, ur, and te locales. 12823 12824commit a92eb6785699bbc9c6c3813f6af3bb9431a3f6b0 12825Author: Matthias Hopf <mhopf@suse.de> 12826Date: Tue Jul 4 12:16:30 2006 +0200 12827 12828 Fix for autoconf 2.60 issue. 12829 12830 Updated AC_DEFINE_DIR. 12831 Reverted datarootdir change. 12832 12833commit 644f4828b15bce42b597eb123ba0bbc372c46c03 12834Author: Keith Packard <keithp@neko.keithp.com> 12835Date: Sat Jul 1 21:31:23 2006 -0700 12836 12837 Work around recent autoconf (2.59?) changes in directory expansion. 12838 12839 Recent autoconf versions have changed how directory names are managed in the 12840 configure.ac script; automatic 'eval' invocations now occur as a part of the 12841 AC_DEFINE_DIR macro which make it imperative that AC_DEFINE_DIR be executed 12842 before the variables are used in further macro definitions. Also, ${datadir} 12843 is apparantly an old name for ${datarootdir} as ${datadir} doesn't get 12844 expanded correctly by AC_DEFINE_DIR. This looks like an autoconf bug, but it 12845 is easy to work around by just using ${datarootdir} instead of ${datadir}. 12846 12847commit be70a31229aa106aff0a09d78c00812682cd3475 12848Author: Keith Packard <keithp@neko.keithp.com> 12849Date: Sat Jul 1 01:56:05 2006 -0700 12850 12851 Xlib/XCB: handle 32-bit sequence wrap. 12852 12853 Replace broken sequence compares with XCB_SEQUENCE_COMPARE (copied from 12854 XCB). 12855 Account for XCB sequence 0 handling. 12856 12857commit 99c711707ad08e1396e123b1c7df687c560a489a 12858Author: Donnie Berkholz <spyderous@gentoo.org> 12859Date: Thu Jun 29 19:43:20 2006 -0700 12860 12861 Bump version to 1.0.3. 12862 12863commit cde3c0dd72af2b490e80cffca962e3487dd31be4 12864Author: Donnie Berkholz <spyderous@gentoo.org> 12865Date: Thu Jun 29 19:39:36 2006 -0700 12866 12867 Bug #7349: Missed one of the setuid fixes. 12868 (cherry picked from e9614c963b532f46a7932c2305a4b177a996a222 commit) 12869 12870commit df3fef8983d96c59d481c4cdaf1f271d54a116d2 12871Author: Matthias Hopf <mhopf@suse.de> 12872Date: Thu Jun 29 18:59:57 2006 +0200 12873 12874 Update to final Compose cache directory location. 12875 (cherry picked from abda4d223e9cce9ac6e7b5d82a5680d9a502e52a commit) 12876 12877commit 912ef198292d3053daa810f842510e5d62ded0f0 12878Author: Matthias Hopf <mhopf@suse.de> 12879Date: Thu Jun 29 17:41:41 2006 +0200 12880 12881 Fix alignment of trees and wide chars in the cache. 12882 (cherry picked from 40a64c61f8bc33d497e1224e02c41dea2d424d97 commit) 12883 12884commit 2ece832118b3ee5d8ed19f1ee9b1c822b70ec6e9 12885Author: Matthias Hopf <mhopf@suse.de> 12886Date: Wed Jun 28 19:17:03 2006 +0200 12887 12888 First (dummy) entry of compose caches was not initialized and thus contained varying garbage. 12889 (cherry picked from f442dcaa56f8ecb7443e8e51c88ed97e10dbdba3 commit) 12890 12891commit e9614c963b532f46a7932c2305a4b177a996a222 12892Author: Donnie Berkholz <spyderous@gentoo.org> 12893Date: Thu Jun 29 19:39:36 2006 -0700 12894 12895 Bug #7349: Missed one of the setuid fixes. 12896 12897commit abda4d223e9cce9ac6e7b5d82a5680d9a502e52a 12898Author: Matthias Hopf <mhopf@suse.de> 12899Date: Thu Jun 29 18:59:57 2006 +0200 12900 12901 Update to final Compose cache directory location. 12902 12903commit 40a64c61f8bc33d497e1224e02c41dea2d424d97 12904Author: Matthias Hopf <mhopf@suse.de> 12905Date: Thu Jun 29 17:41:41 2006 +0200 12906 12907 Fix alignment of trees and wide chars in the cache. 12908 12909commit f442dcaa56f8ecb7443e8e51c88ed97e10dbdba3 12910Author: Matthias Hopf <mhopf@suse.de> 12911Date: Wed Jun 28 19:17:03 2006 +0200 12912 12913 First (dummy) entry of compose caches was not initialized and thus contained varying garbage. 12914 12915commit bdbe464d774e01d317f67c63ebbda2fd0edbbdd1 12916Author: Donnie Berkholz <spyderous@gentoo.org> 12917Date: Thu Jun 22 23:59:03 2006 -0700 12918 12919 Delete ChangeLog, and add a rule to autogenerate it for distribution. Also 12920 add 'foreign' to AM_INIT_AUTOMAKE to make autotools happy with not having a 12921 ChangeLog. 12922 (cherry picked from b0edfb8df16ab8c9959b83a4c966d55a59c4e295 commit) 12923 12924commit b0edfb8df16ab8c9959b83a4c966d55a59c4e295 12925Author: Donnie Berkholz <donnie@comet.(none)> 12926Date: Thu Jun 22 23:47:38 2006 -0700 12927 12928 Delete ChangeLog, and add a rule to autogenerate it for distribution. Also 12929 add 'foreign' to AM_INIT_AUTOMAKE to make autotools happy with not having a 12930 ChangeLog. 12931 12932commit dd54981aa76e9dfdc4c3302d6105b4b229447c84 12933Author: Donnie Berkholz <donnie@comet.(none)> 12934Date: Thu Jun 22 15:47:38 2006 -0700 12935 12936 Bump version to 1.0.2. 12937 12938commit c93539d974a67f596a5eb5b65042d26602546c72 12939Author: Matthieu Herrb <matthieu@deville.herrb.com> 12940Date: Tue Jun 20 21:04:03 2006 +0200 12941 12942 Check setuid() return value. 12943 (cherry picked from 5169d0e08ff6acb350a6ea768623f5ff0b85b05f commit) 12944 12945commit 605533f814ab7892991578706a6458f61a89ca4d 12946Author: Derek Wang <derek.wang@sun.com> 12947Date: Mon Jun 19 11:05:37 2006 -0700 12948 12949 Sun bug 6209243: XExtentsOfFontSet causes segfault when font set not loaded 12950 (cherry picked from eff50c94a07194297e705da53d9fbb3a40fb9ad4 commit) 12951 12952commit 5bbd0822c5a926de0ed293437fb9f2b75cf3c4f4 12953Author: Scott Revelt <scott.revelt@sun.com> 12954Date: Fri Jun 16 19:11:13 2006 -0700 12955 12956 Sun bug 4022903: Xcms routines may fail if sscanf() is looking for separators 12957 based on locale that doesn't match those used in the Xcms.txt 12958 (cherry picked from 94f3213fc4bd6ec49bfb68e8b4a4fddea2bf3baa commit) 12959 12960commit 0b05cd4da6134df527fb010384a9fd569bd5d6a3 12961Author: Alan Coopersmith <alanc@alf.(none)> 12962Date: Fri Jun 16 18:53:33 2006 -0700 12963 12964 Add *~ to ignore emacs droppings 12965 (cherry picked from c33d7b8282ac196b36229be26442296768c16f3e commit) 12966 12967commit 214658b76b56768f69c3959a11525aae7813f448 12968Author: Matthias Hopf <mhopf@suse.de> 12969Date: Fri Jun 16 15:36:40 2006 +0200 12970 12971 Bug #3104: Compose table cache for faster X11 application starts. 12972 (cherry picked from 1f4c9893ade08bad30c9bd12a36bee57d30b001e commit) 12973 12974commit 13968a23aaea838ba4b69e42e8900f803499e091 12975Author: Matthias Hopf <mhopf@suse.de> 12976Date: Tue Jun 13 20:23:46 2006 +0200 12977 12978 Bug #3104: Compose table cache for faster X11 application starts. 12979 (cherry picked from 4fe22647e6010a2886c2f3a7093adeaeb6678faa commit) 12980 12981commit e7f8bca08f5476d0ca262097639ac7d424bb4d10 12982Author: Lubos Lunak <llunak@suse.de> 12983Date: Mon Jun 12 18:48:08 2006 +0200 12984 12985 Bug #3104: Compose table cache for faster X11 application starts. 12986 (cherry picked from 1d28a655629a11ea7fd1e5df4c7b77dd4b63e3be commit) 12987 12988commit f506aaf8ac9aae1ee8daaef6cde34ee85aecd641 12989Author: Matthias Hopf <mhopf@suse.de> 12990Date: Fri Jun 9 18:24:02 2006 +0200 12991 12992 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. 12993 (cherry picked from 9354351fcb8baeaab85250d14409cfb4fa50f3e9 commit) 12994 12995commit 0e6d5e979aacb0c295ce79369ecc5f22ffa7922c 12996Author: Jamey Sharp <jamey@minilop.net> 12997Date: Wed Jun 7 20:29:05 2006 -0700 12998 12999 Fix bug #7035: unnecessary memmove in XOpenDisplay. 13000 Using memmove on the connection setup data causes a problem for XCB, but making 13001 Xlib stop doing that should be harmless for non-XCB as well. 13002 (cherry picked from b18713ec3f36a10b3cdb1e16f9550e1d2e05dff0 commit) 13003 13004commit cd7328c46ae72903ed02832828891b2dab4d5ee0 13005Author: Daniel Stone <daniels@preemptive.fooishbar.org> 13006Date: Sat Jun 3 13:51:51 2006 +0300 13007 13008 Fix threading support on GNU/kFreeBSD systems. (Robert Millan) 13009 (cherry picked from e3acee88cfcc4ef0fa8a7db39763a5ebe2e985cb commit) 13010 13011commit c336eb6b80a6f91da1d0b3d28634a2cfde324670 13012Merge: 33556ca8 ad9ebbd2 13013Author: Donnie Berkholz <donnie@comet.(none)> 13014Date: Thu Jun 22 14:25:35 2006 -0700 13015 13016 Merge branch 'stable' of http://people.freedesktop.org/~jamey/libX11 into stable 13017 13018commit 213dacad21740466e7ab31b01d3fc513fe4b3e74 13019Author: Daniel Stone <daniel@fooishbar.org> 13020Date: Thu Jun 22 17:20:59 2006 +0300 13021 13022 Bump to 1.0.99.0 to avoid confusion. 13023 13024commit efedfd68e31bcee2d21ac340be8dc9e1825ec890 13025Merge: e3acee88 4b8eb5d4 13026Author: Daniel Stone <daniel@fooishbar.org> 13027Date: Thu Jun 22 16:53:45 2006 +0300 13028 13029 Merge branch 'master' of git+ssh://git.freedesktop.org/srv/git.freedesktop.org/git/xorg/lib/libX11 13030 13031commit 4b8eb5d4a1da73a94b5a6ab12e34784aae4c79c5 13032Merge: 5169d0e0 eff50c94 13033Author: Matthieu Herrb <matthieu@deville.herrb.com> 13034Date: Tue Jun 20 21:05:15 2006 +0200 13035 13036 Merge branch 'master' of git+ssh://herrb@git.freedesktop.org/git/xorg/lib/libX11 13037 13038commit 5169d0e08ff6acb350a6ea768623f5ff0b85b05f 13039Author: Matthieu Herrb <matthieu@deville.herrb.com> 13040Date: Tue Jun 20 21:04:03 2006 +0200 13041 13042 Check setuid() return value. 13043 13044commit eff50c94a07194297e705da53d9fbb3a40fb9ad4 13045Author: Derek Wang <derek.wang@sun.com> 13046Date: Mon Jun 19 11:05:37 2006 -0700 13047 13048 Sun bug 6209243: XExtentsOfFontSet causes segfault when font set not loaded 13049 13050commit 94f3213fc4bd6ec49bfb68e8b4a4fddea2bf3baa 13051Author: Scott Revelt <scott.revelt@sun.com> 13052Date: Fri Jun 16 19:11:13 2006 -0700 13053 13054 Sun bug 4022903: Xcms routines may fail if sscanf() is looking for separators 13055 based on locale that doesn't match those used in the Xcms.txt 13056 13057commit c33d7b8282ac196b36229be26442296768c16f3e 13058Author: Alan Coopersmith <alanc@alf.(none)> 13059Date: Fri Jun 16 18:53:33 2006 -0700 13060 13061 Add *~ to ignore emacs droppings 13062 13063commit 1f4c9893ade08bad30c9bd12a36bee57d30b001e 13064Author: Matthias Hopf <mhopf@suse.de> 13065Date: Fri Jun 16 15:36:40 2006 +0200 13066 13067 Bug #3104: Compose table cache for faster X11 application starts. 13068 13069commit 4fe22647e6010a2886c2f3a7093adeaeb6678faa 13070Author: Matthias Hopf <mhopf@suse.de> 13071Date: Tue Jun 13 20:23:46 2006 +0200 13072 13073 Bug #3104: Compose table cache for faster X11 application starts. 13074 13075commit 1d28a655629a11ea7fd1e5df4c7b77dd4b63e3be 13076Author: Lubos Lunak <llunak@suse.de> 13077Date: Mon Jun 12 18:48:08 2006 +0200 13078 13079 Bug #3104: Compose table cache for faster X11 application starts. 13080 13081commit 9354351fcb8baeaab85250d14409cfb4fa50f3e9 13082Author: Matthias Hopf <mhopf@suse.de> 13083Date: Fri Jun 9 18:24:02 2006 +0200 13084 13085 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. 13086 13087commit b18713ec3f36a10b3cdb1e16f9550e1d2e05dff0 13088Author: Jamey Sharp <jamey@minilop.net> 13089Date: Wed Jun 7 20:29:05 2006 -0700 13090 13091 Fix bug #7035: unnecessary memmove in XOpenDisplay. 13092 Using memmove on the connection setup data causes a problem for XCB, but making 13093 Xlib stop doing that should be harmless for non-XCB as well. 13094 13095commit ad9ebbd2424bc2699944ffdf4e19e13f9dd8ab84 13096Author: Daniel Stone <daniels@preemptive.fooishbar.org> 13097Date: Sat Jun 3 12:57:55 2006 +0300 13098 13099 Bug #2186: Add cs_CZ.iso8859-2 alias. 13100 13101commit 9e7765e0b1cbaae6643072d91066ba1201b36227 13102Author: Daniel Stone <daniel@fooishbar.org> 13103Date: Fri Jun 2 02:46:29 2006 +0300 13104 13105 nls: Serbian (sr_CS) update (#5575) 13106 13107 Bug #5575: 'Yugoslavia' has changed to Serbia & Montenegro, along with a 13108 corresponding locale change. Update compose.dir.pre, locale.alias.pre, 13109 and locale.dir.pre. (Milos Komarcevic) 13110 13111commit a4ac2242b588da23044a20aa999ae84d4de7b2d8 13112Author: Daniel Stone <daniel@fooishbar.org> 13113Date: Fri Jun 2 02:24:25 2006 +0300 13114 13115 im: add Braille input method (#6296) 13116 13117 Bug #6296: Add a Braille input method. (Samuel Thibault) 13118 13119commit 90de1e2e141ec591048a76cb695579ef809a28d3 13120Author: Daniel Stone <daniel@fooishbar.org> 13121Date: Fri Jun 2 02:22:17 2006 +0300 13122 13123 xkb support: small typo 13124 13125commit 4c3e34bece7402f08139d34d1ef5834e3cf533c7 13126Author: Daniel Stone <daniel@fooishbar.org> 13127Date: Fri Jun 2 01:50:24 2006 +0300 13128 13129 en_US.UTF-8 Compose.pre: updates from Simos (#5129) 13130 13131 Bug #5129: Numerous updates from Simos Xenitellis, fixing Unicode keysyms, 13132 adding Unicode character names, removing duplicate entries, et al. 13133 13134commit 0c6473dd329c7334ae511884bcb6e73e632c784f 13135Author: Daniel Stone <daniel@fooishbar.org> 13136Date: Fri Jun 2 01:44:53 2006 +0300 13137 13138 nls: fix use of non-keysym dead_space (#5107) 13139 13140 Bug #5107: Change users of dead_space to space. 13141 13142commit 6f99f6349de5120f1cb7e02fbc97849341bc48e8 13143Author: Daniel Stone <daniel@fooishbar.org> 13144Date: Fri Jun 2 01:41:18 2006 +0300 13145 13146 optional XKB support fix 13147 13148 Fix compilation with --disable-xkb. 13149 13150commit 217d43ed44ced901122093af3ef1294e1736bb77 13151Author: Daniel Stone <daniel@fooishbar.org> 13152Date: Fri Jun 2 01:39:12 2006 +0300 13153 13154 i18n: separate data and lib directories 13155 13156 Break out locale data into separate data and library directories, under 13157 $(datadir) and $(libdir), respectively, by default. 13158 13159commit 92fa7fcde8df22830fca7c0275ab201033f7909c 13160Author: Adam Jackson <ajax@benzedrine.nwnk.net> 13161Date: Thu May 11 14:04:48 2006 -0400 13162 13163 libXcursor.so.1, not libXcursor.so 13164 13165commit 135b4df13ed7c35dbae8975f302fc1fb8412d7c0 13166Author: Daniel Stone <daniels@preemptive.fooishbar.org> 13167Date: Wed May 10 18:06:03 2006 +0300 13168 13169 XKBMisc.c: use Xfree, not xfree 13170 13171 Use Xfree() instead of xfree() when freeing interps. 13172 13173commit 3518d772b08e3433bc28b4d8d293fa53ca25f0ee 13174Author: Daniel Stone <daniels@preemptive.fooishbar.org> 13175Date: Wed May 10 14:51:37 2006 +0300 13176 13177 locale.alias.pre: bg_BG typo fix 13178 13179 Fix typo (be_BG.UTF-8 rather than bg_BG.UTF-8) in locale.alias.pre. 13180 13181commit cc533db60cb64dc163c66451933a9bf77c519062 13182Author: Daniel Stone <daniels@endtroducing.localdomain> 13183Date: Sun Apr 9 22:22:03 2006 +0300 13184 13185 Coverity #203, #204: Fix potential NULL dereferences. 13186 13187commit b83adf7dfd6157694fe4f232012fef36cd9666da 13188Author: Daniel Stone <daniels@endtroducing.localdomain> 13189Date: Sun Apr 9 22:20:25 2006 +0300 13190 13191 Coverity #205: Fix potential NULL dereference. 13192 13193commit 2d0cd10ad907864d0136739eaac459779c9a5332 13194Author: Daniel Stone <daniels@endtroducing.localdomain> 13195Date: Sun Apr 9 22:18:20 2006 +0300 13196 13197 Coverity #209: Fix potential NULL dereference. (Alan Coopersmith) 13198 13199commit dc2f3966068d66a564aa452cab9f0c26657fa1df 13200Author: Daniel Stone <daniels@preemptive.research.nokia.com> 13201Date: Fri Apr 7 18:11:52 2006 +0300 13202 13203 Coverity #826: Fix potential memory leak. 13204 13205commit 23df609ec451a01c77e8f31ecc85c5af7c62efed 13206Author: Daniel Stone <daniels@preemptive.research.nokia.com> 13207Date: Fri Apr 7 17:49:41 2006 +0300 13208 13209 Bug #1625: Include keysym.h from Xutil.h. 13210 13211commit 5262a1945c543a3419ed626e1deb09ef5b4584c1 13212Author: Eric Anholt <anholt@leguin.anholt.net> 13213Date: Wed Apr 5 17:12:15 2006 -0700 13214 13215 Check if visualList == NULL, not nVisualsMatched == 0. NULL happens in more 13216 13217 cases (allocation failure) than nVisualsMatched == 0. Noticed from inspection 13218 of Coverity #599, #600. 13219 13220commit 8b42635f577468bb143ca593cdd9fb3450ad712c 13221Author: Eric Anholt <anholt@leguin.anholt.net> 13222Date: Wed Apr 5 16:42:26 2006 -0700 13223 13224 Coverity #558: Free newly-allocated Database in error path. 13225 13226commit 6d06e41d1f431b3f1a1fcf69161e0af411325e9f 13227Author: Eric Anholt <anholt@leguin.anholt.net> 13228Date: Wed Apr 5 16:38:52 2006 -0700 13229 13230 Coverity #582: Free newly-allocated region in error path. 13231 13232commit 5fd8f79ad3e38df74d9a6cb573617542c101df1a 13233Author: Daniel Stone <daniels@preemptive.research.nokia.com> 13234Date: Fri Mar 17 15:58:39 2006 +0200 13235 13236 Properly clip bounds when only one point is defining an outline. 13237 13238commit 1e1572eb7f8394ce152e99d96f711ccf9083baf9 13239Author: Matthieu Herrb <matthieu@bluenote.herrb.com> 13240Date: Sat Mar 11 15:39:15 2006 +0100 13241 13242 Fix prototype of XConfigureWindow(). Bugzilla #6023. 13243 13244commit 1da8bd904f1fc79d63d368473531b438d08bfe37 13245Author: Jeremy C. Reed <reed@reedmedia.net> 13246Date: Tue Feb 21 14:10:22 2006 -0800 13247 13248 Set XTHREADLIB correctly for dragonfly platforms. 13249 13250commit c9768133e3f65ac4bb64e3941e2d6ae36897ec9c 13251Author: Jamey Sharp <jamey@minilop.net> 13252Date: Sun Feb 19 12:29:27 2006 -0800 13253 13254 Update .gitignores for *.o and nls/locale.dir*. 13255 13256commit efcbde6ba0b770bb0d4c7818e307712161011f10 13257Author: Jamey Sharp <jamey@minilop.net> 13258Date: Sun Feb 19 12:28:41 2006 -0800 13259 13260 Move .cvsignore to .gitignore. 13261 13262commit e3acee88cfcc4ef0fa8a7db39763a5ebe2e985cb 13263Author: Daniel Stone <daniels@preemptive.fooishbar.org> 13264Date: Sat Jun 3 13:51:51 2006 +0300 13265 13266 Fix threading support on GNU/kFreeBSD systems. (Robert Millan) 13267 13268commit f1bd3152359ddfadd0d043006036c239f3e2907b 13269Author: Daniel Stone <daniels@preemptive.fooishbar.org> 13270Date: Sat Jun 3 12:57:55 2006 +0300 13271 13272 Bug #2186: Add cs_CZ.iso8859-2 alias. 13273 13274commit 2b1b79d90db1d7f0472718b8c010c36275994195 13275Author: Daniel Stone <daniel@fooishbar.org> 13276Date: Fri Jun 2 02:46:29 2006 +0300 13277 13278 nls: Serbian (sr_CS) update (#5575) 13279 Bug #5575: 'Yugoslavia' has changed to Serbia & Montenegro, along with a 13280 corresponding locale change. Update compose.dir.pre, locale.alias.pre, 13281 and locale.dir.pre. (Milos Komarcevic) 13282 13283commit d6fba1f44d404362d3be1b421f57d7ccc3c8cdac 13284Author: Daniel Stone <daniel@fooishbar.org> 13285Date: Fri Jun 2 02:24:25 2006 +0300 13286 13287 im: add Braille input method (#6296) 13288 Bug #6296: Add a Braille input method. (Samuel Thibault) 13289 13290commit 0fed7d3185addd610e917dcdaa0676f0256c0ec5 13291Author: Daniel Stone <daniel@fooishbar.org> 13292Date: Fri Jun 2 02:22:17 2006 +0300 13293 13294 xkb support: small typo 13295 13296commit cf7d9f9e46f3ce01ac04a95978918d5c0f3f3cf9 13297Author: Daniel Stone <daniel@fooishbar.org> 13298Date: Fri Jun 2 01:50:24 2006 +0300 13299 13300 en_US.UTF-8 Compose.pre: updates from Simos (#5129) 13301 Bug #5129: Numerous updates from Simos Xenitellis, fixing Unicode keysyms, 13302 adding Unicode character names, removing duplicate entries, et al. 13303 13304commit 332d45fce9fdbf59168d90a133af1f580a589e54 13305Author: Daniel Stone <daniel@fooishbar.org> 13306Date: Fri Jun 2 01:44:53 2006 +0300 13307 13308 nls: fix use of non-keysym dead_space (#5107) 13309 Bug #5107: Change users of dead_space to space. 13310 13311commit 34f59ce3d1e2eb2971b732d11871c6fff8a1c75b 13312Author: Daniel Stone <daniel@fooishbar.org> 13313Date: Fri Jun 2 01:41:18 2006 +0300 13314 13315 optional XKB support fix 13316 Fix compilation with --disable-xkb. 13317 13318commit c5940a0b85edec4003f91a59fc3c44f538accfe1 13319Author: Daniel Stone <daniel@fooishbar.org> 13320Date: Fri Jun 2 01:39:12 2006 +0300 13321 13322 i18n: separate data and lib directories 13323 Break out locale data into separate data and library directories, under 13324 $(datadir) and $(libdir), respectively, by default. 13325 13326commit 33556ca81db2419b9d2a37664c4cea2069414b37 13327Author: Adam Jackson <ajax@benzedrine.nwnk.net> 13328Date: Fri May 12 14:49:17 2006 -0400 13329 13330 Bump to 1.0.1 13331 13332commit 80d88557626fae9debc404de33d7fb5d69a6049d 13333Author: Adam Jackson <ajax@benzedrine.nwnk.net> 13334Date: Thu May 11 14:06:28 2006 -0400 13335 13336 libXcursor.so.1, not libXcursor.so 13337 13338commit 5384f27dfe3c94c462c137ab3540eaa5646ca4c6 13339Author: Adam Jackson <ajax@benzedrine.nwnk.net> 13340Date: Thu May 11 14:04:48 2006 -0400 13341 13342 libXcursor.so.1, not libXcursor.so 13343 13344commit 01f4d433eed6b70c6e9636157acac022054fdeb6 13345Author: Jamey Sharp <jamey@minilop.net> 13346Date: Wed May 10 17:02:52 2006 -0700 13347 13348 Count any partial request towards the current Xlib sequence number. 13349 13350commit 770cfbd1fcc80a83a9be0c4f68727b8af2c8f4a4 13351Author: Daniel Stone <daniels@preemptive.fooishbar.org> 13352Date: Wed May 10 18:06:03 2006 +0300 13353 13354 XKBMisc.c: use Xfree, not xfree 13355 Use Xfree() instead of xfree() when freeing interps. 13356 13357commit 22a5255b80b80772612279bc840a953edd0e3442 13358Author: Daniel Stone <daniels@preemptive.fooishbar.org> 13359Date: Wed May 10 14:51:37 2006 +0300 13360 13361 locale.alias.pre: bg_BG typo fix 13362 Fix typo (be_BG.UTF-8 rather than bg_BG.UTF-8) in locale.alias.pre. 13363 13364commit 9cac8c9824874ca7d835f001a4efa910b7fdd822 13365Merge: 19b8840a e514bc87 13366Author: Daniel Stone <daniels@preemptive.fooishbar.org> 13367Date: Wed May 10 14:50:37 2006 +0300 13368 13369 Merge branch 'master' of git+ssh://git.freedesktop.org/srv/git.freedesktop.org/git/xorg/lib/libX11 13370 13371commit e514bc875f27f4bf197b06b8315eeca526195915 13372Author: Jamey Sharp <jamey@minilop.net> 13373Date: Tue May 9 12:41:59 2006 -0700 13374 13375 Assert that dpy->request does not go backwards. Catches #5839 earlier. 13376 13377commit fc1159137365a599bf611ee001f439416952c4e0 13378Author: Jamey Sharp <jamey@minilop.net> 13379Date: Sun May 7 17:40:01 2006 -0700 13380 13381 In _XPutXCBBuffer, set aside any trailing partial request until the last byte is available. 13382 13383commit c394480a4247213239822808e3f6e7c6cd6decd9 13384Author: Jamey Sharp <jamey@minilop.net> 13385Date: Sun May 7 16:58:13 2006 -0700 13386 13387 Update for XCB ConnSetupSuccessRep name change. 13388 13389commit 7672bf93bc1200905461aeb0a2dc2c2696410b93 13390Author: Daniel Stone <daniels@endtroducing.localdomain> 13391Date: Sun Apr 9 22:22:03 2006 +0300 13392 13393 Coverity #203, #204: Fix potential NULL dereferences. 13394 13395commit cfcafbe48d22d9a0cd50eb9454ce0ff88f0129d3 13396Author: Daniel Stone <daniels@endtroducing.localdomain> 13397Date: Sun Apr 9 22:20:25 2006 +0300 13398 13399 Coverity #205: Fix potential NULL dereference. 13400 13401commit b6771501feea98d037032f82117b6d4f15779f07 13402Author: Daniel Stone <daniels@endtroducing.localdomain> 13403Date: Sun Apr 9 22:18:20 2006 +0300 13404 13405 Coverity #209: Fix potential NULL dereference. (Alan Coopersmith) 13406 13407commit 19b8840af241087bb17b1edabcaa9b28fdd0a1dc 13408Author: Daniel Stone <daniels@preemptive.research.nokia.com> 13409Date: Fri Apr 7 18:11:52 2006 +0300 13410 13411 Coverity #826: Fix potential memory leak. 13412 13413commit 3a16f262abe48b44ed641525e894bc22e13bf72a 13414Author: Daniel Stone <daniels@preemptive.research.nokia.com> 13415Date: Fri Apr 7 17:49:41 2006 +0300 13416 13417 Bug #1625: Include keysym.h from Xutil.h. 13418 13419commit 2481b767ae96e2f2503c0390545932c8397b090f 13420Author: Eric Anholt <anholt@leguin.anholt.net> 13421Date: Wed Apr 5 17:12:15 2006 -0700 13422 13423 Check if visualList == NULL, not nVisualsMatched == 0. NULL happens in more 13424 cases (allocation failure) than nVisualsMatched == 0. Noticed from inspection 13425 of Coverity #599, #600. 13426 13427commit 152b17e47d878c2d928eb74581aa69d925a29123 13428Author: Eric Anholt <anholt@leguin.anholt.net> 13429Date: Wed Apr 5 16:42:26 2006 -0700 13430 13431 Coverity #558: Free newly-allocated Database in error path. 13432 13433commit bc62b99ef36edb34035911c42104be7f6f9d2333 13434Author: Eric Anholt <anholt@leguin.anholt.net> 13435Date: Wed Apr 5 16:38:52 2006 -0700 13436 13437 Coverity #582: Free newly-allocated region in error path. 13438 13439commit d47f0b3cec1388f7ce60ab2af91df0dea0f221c5 13440Author: Jamey Sharp <jamey@minilop.net> 13441Date: Fri Mar 31 22:53:07 2006 -0800 13442 13443 Fix buggy interaction with XCB when running out of XIDs. 13444 13445commit e3f452571824d6a875bbf582946de185de9e01e9 13446Author: Jamey Sharp <jamey@minilop.net> 13447Date: Fri Mar 31 22:52:14 2006 -0800 13448 13449 Add explicit include of Xmd.h to work around bug including both xcb.h and Xmd.h simultaneously. 13450 13451commit 2363b74ca795c1b3a73c9e572532ba5191adec5b 13452Author: Daniel Stone <daniels@preemptive.research.nokia.com> 13453Date: Fri Mar 17 15:58:39 2006 +0200 13454 13455 Properly clip bounds when only one point is defining an outline. 13456 13457commit e876efb8aa410f2f5c87aaaa7042f847c4ff96f7 13458Merge: be266b20 f71ea0bc 13459Author: Matthieu Herrb <matthieu@bluenote.herrb.com> 13460Date: Sat Mar 11 15:40:35 2006 +0100 13461 13462 Merge branch 'master' of git+ssh://herrb@git.freedesktop.org/git/xorg/lib/libX11 13463 13464commit be266b201dc13530a302a7572283ccd3f32aad87 13465Author: Matthieu Herrb <matthieu@bluenote.herrb.com> 13466Date: Sat Mar 11 15:39:15 2006 +0100 13467 13468 Fix prototype of XConfigureWindow(). Bugzilla #6023. 13469 13470commit f71ea0bc737c5a42e9e022b86e7ec3b4f846d31c 13471Author: Jamey Sharp <jamey@minilop.net> 13472Date: Fri Mar 3 11:08:41 2006 -0800 13473 13474 Update for XCBSendRequest sequence number API changes. 13475 13476commit a11d1b0ae674320cf9897f6a83ec08c65eca8d9b 13477Author: Jamey Sharp <jamey@minilop.net> 13478Date: Fri Mar 3 01:42:49 2006 -0800 13479 13480 Use the full_sequence from XCBGenericError/Event for setting last_request_read, and quit replacing _XSetLastRequestRead with an XCB-specific version. 13481 13482commit d8ba4ae7045b227f8b675628b9094dded02f1c08 13483Author: Jamey Sharp <jamey@minilop.net> 13484Date: Thu Mar 2 23:43:26 2006 -0800 13485 13486 Bugfix: Rely on XCBSendRequest to leave iov in a well-defined state, and place the spare iovecs at the beginning of the array. 13487 13488commit f9afb5a54435c30961306080e9358d4240ecb844 13489Author: Jamey Sharp <jamey@minilop.net> 13490Date: Thu Mar 2 23:34:19 2006 -0800 13491 13492 assert() that we will not infinite loop or read uninitialized memory. 13493 13494commit d3512ef3aae5b036a8ce6579318108f1ec20ee22 13495Author: Jamey Sharp <jamey@minilop.net> 13496Date: Thu Mar 2 15:58:52 2006 -0800 13497 13498 Quit relying on XCBSendRequest to pad to 4-byte boundaries and do it ourselves. 13499 13500commit fb590c15a740264ee867d15a2547072e43b21eed 13501Author: Jamey Sharp <jamey@minilop.net> 13502Date: Thu Mar 2 12:06:04 2006 -0800 13503 13504 Handle errors correctly when Xlib owns the event queue and XCB has the checked error feature. 13505 13506commit 8356ba37d307a9eda895a6bf41ef727bbfc9a695 13507Author: Jamey Sharp <jamey@minilop.net> 13508Date: Mon Feb 27 11:51:47 2006 -0800 13509 13510 Use the new XCBSendRequest flag, XCB_REQUEST_RAW, to hand a bag-o-bytes down uninterpreted. 13511 13512commit 07bdf1fbbf2418f866df1a2140d514dd3f035139 13513Author: Jamey Sharp <jamey@minilop.net> 13514Date: Sun Feb 26 15:46:01 2006 -0800 13515 13516 Update for new XCBSendRequest API. 13517 13518commit 409a08cff8347d39e0e6c53c9f380d21f221f5ac 13519Author: Jamey Sharp <jamey@minilop.net> 13520Date: Thu Feb 23 18:12:31 2006 -0800 13521 13522 Performance fix: Replace calls to XCBGetRequestRead with the new XCBGetQueuedRequestRead. Cuts a lot of syscalls. 13523 13524commit ec30a27341b97620b07dd886f98d1d7664a67685 13525Author: Jamey Sharp <jamey@minilop.net> 13526Date: Thu Feb 23 18:01:46 2006 -0800 13527 13528 Minor performance fix: Access dpy->xcl->connection directly instead of calling XCBConnectionOfDisplay. It happens a lot. 13529 13530commit 53c471c6a835d5cedeca99f2c97058d196a3fd7e 13531Author: Jamey Sharp <jamey@minilop.net> 13532Date: Thu Feb 23 11:46:09 2006 -0800 13533 13534 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. 13535 13536commit 41c0121a8718b530feaf7fe315b673d9b8defce2 13537Author: Jamey Sharp <jamey@minilop.net> 13538Date: Tue Feb 21 21:25:41 2006 -0800 13539 13540 Refactor the code that passes requests down to XCB into a separate issue_complete_request function. 13541 13542commit 67d06e0fe468dca22847aa14d3f917128f89f9cf 13543Author: Jamey Sharp <jamey@minilop.net> 13544Date: Tue Feb 21 15:33:05 2006 -0800 13545 13546 If we have not actually put the buffer back, deferred invariants may not hold. This is OK. 13547 13548commit 434bf80b4053ff1ba82adf65de1f76b4d3731bf1 13549Author: Jeremy C. Reed <reed@reedmedia.net> 13550Date: Tue Feb 21 14:10:22 2006 -0800 13551 13552 Set XTHREADLIB correctly for dragonfly platforms. 13553 13554commit b24834762e975bd319f9ab5c7cf790b2a02a9474 13555Author: Jamey Sharp <jamey@minilop.net> 13556Date: Tue Feb 21 14:03:26 2006 -0800 13557 13558 Sometimes functions other than _XUnlockDisplay call _XPutXCBBuffer. Some invariants appropriate for Unlock are not appropriate otherwise: move them to _XUnlockDisplay. 13559 13560commit 99b8defd0d5e6993071e21638128c9de2574b37d 13561Author: Jamey Sharp <jamey@minilop.net> 13562Date: Tue Feb 21 13:04:21 2006 -0800 13563 13564 Execute BeforeFlush hooks on complete buffers, not request-at-a-time. 13565 Traditional Xlib worked this way; I dunno why I changed it. 13566 13567commit 9b01e7849775749182052fe324df9d8e6ceeee99 13568Author: Jamey Sharp <jamey@minilop.net> 13569Date: Tue Feb 21 12:51:44 2006 -0800 13570 13571 Factor the XCBSendRequest call out of the conditional in _XPutXCBBuffer. 13572 13573commit 7ce7ac882de128955751a5307889db9d712d8a72 13574Author: Jamey Sharp <jamey@minilop.net> 13575Date: Tue Feb 21 12:44:30 2006 -0800 13576 13577 Quit using a triple-pointer. Almost as if I were a sensible person. 13578 13579commit 35a858be218cdbfa4593d44a67663d5c25297016 13580Author: Jamey Sharp <jamey@minilop.net> 13581Date: Tue Feb 21 12:21:01 2006 -0800 13582 13583 Remove the XCL_PAD macro. 13584 13585commit e741b70ed2542c5463c57dac44bc37328616733b 13586Author: Jamey Sharp <jamey@minilop.net> 13587Date: Sun Feb 19 12:29:27 2006 -0800 13588 13589 Update .gitignores for *.o and nls/locale.dir*. 13590 13591commit f25b4b00e1683b0d97dba46dac46d65a9c2270a6 13592Author: Jamey Sharp <jamey@minilop.net> 13593Date: Sun Feb 19 12:28:41 2006 -0800 13594 13595 Move .cvsignore to .gitignore. 13596 13597commit c7cda56eebaf6ab11403363be14d4948d7d8be38 13598Author: Jamey Sharp <jamey@minilop.net> 13599Date: Sun Feb 19 11:49:15 2006 -0800 13600 13601 Land XCB support on X.org HEAD. 13602 13603commit 881467b3032261791ef5ec61b3879bb68d0a3d8c 13604Author: Jamey Sharp <jamey@minilop.net> 13605Date: Sun Feb 19 02:14:11 2006 +0000 13606 13607 Merge the X11 and BIGREQS package sets: they were used in exactly the same places. 13608 13609commit 6b0158dfad714db5b89c04dbea3aedeafa0fb146 13610Author: Jamey Sharp <jamey@minilop.net> 13611Date: Tue Feb 14 19:37:36 2006 +0000 13612 13613 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. 13614 13615commit 010c3acbb3a6993d39274f42d88c00849acb0fb0 13616Author: Alan Coopersmith <alan.coopersmith@sun.com> 13617Date: Sun Feb 12 18:19:17 2006 +0000 13618 13619 Bug #5628 <https://bugs.freedesktop.org/show_bug.cgi?id=5628> Shadow pages not created correctly when MANDIR & MANSUFFIX don't match. 13620 13621commit fe8c01c80263457f01b70dc1511b2bd9466b7c96 13622Author: Alan Coopersmith <alan.coopersmith@sun.com> 13623Date: Fri Feb 3 23:34:43 2006 +0000 13624 13625 Fix typo in .TH line 13626 13627commit b091c217f3c3f60dde78b09a95c150df6c83d7ba 13628Author: Kevin E Martin <kem@kem.org> 13629Date: Thu Dec 15 00:24:28 2005 +0000 13630 13631 Update package version number for final X11R7 release candidate. 13632 13633commit e7c04e0e65a2a0c70c6ad29ec2d6f4350fd81c2a 13634Author: Kevin E Martin <kem@kem.org> 13635Date: Tue Dec 6 22:48:41 2005 +0000 13636 13637 Change *man_SOURCES ==> *man_PRE to fix autotools warnings. 13638 13639commit b5c495854d5270e64e6d588388ffa906bfcaac22 13640Author: Kevin E Martin <kem@kem.org> 13641Date: Sat Dec 3 05:49:42 2005 +0000 13642 13643 Update package version number for X11R7 RC3 release. 13644 13645commit 9e96dbc343c7f27ff47607acd75378ab23903e2a 13646Author: Kevin E Martin <kem@kem.org> 13647Date: Sat Dec 3 04:41:47 2005 +0000 13648 13649 Add check and cflags for malloc(0) returning NULL. 13650 13651commit 649c37b47909620ccafde3e983de8321cddd74ce 13652Author: Alan Coopersmith <alan.coopersmith@sun.com> 13653Date: Mon Nov 28 22:03:04 2005 +0000 13654 13655 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) 13656 13657commit 8d1500df66d796ebff2b0d8c02205e5fa6796d4a 13658Author: Alan Coopersmith <alan.coopersmith@sun.com> 13659Date: Wed Nov 23 22:33:06 2005 +0000 13660 13661 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 13662 13663commit 93cf3747f9ae8d30bd485b41c5ff10397f68f078 13664Author: Eric Anholt <anholt@freebsd.org> 13665Date: Sun Nov 20 23:17:39 2005 +0000 13666 13667 Add/improve libs .cvsignores. 13668 13669commit fa1f4a08112bfa14d3758f4702733dd3892966c3 13670Author: Kevin E Martin <kem@kem.org> 13671Date: Sat Nov 19 07:15:39 2005 +0000 13672 13673 Update pkgconfig files to separate library build-time dependencies from application build-time dependencies, and update package deps to work with separate build roots. 13674 13675commit 7012f9b56c594cf40855ba0dbf93af1263417a8c 13676Author: Kevin E Martin <kem@kem.org> 13677Date: Mon Nov 14 21:51:07 2005 +0000 13678 13679 Fix xf86bigfont pkgconfig dep typo. 13680 13681commit 60a72f47951f46b4e0505d9903a94af3b6bed8ca 13682Author: Kevin E Martin <kem@kem.org> 13683Date: Wed Nov 9 21:19:12 2005 +0000 13684 13685 Update package version number for X11R7 RC2 release. 13686 13687commit 6bb0c3796b6e1beddc376a896e865704886e1462 13688Author: Kean Johnson <kean@armory.com> 13689Date: Tue Nov 8 06:33:25 2005 +0000 13690 13691 See ChangeLog entry 2005-11-07 for details. 13692 13693commit 14be0098ad90c3e68bd2d21b00ffabb76f1fd780 13694Author: Kevin E Martin <kem@kem.org> 13695Date: Tue Nov 1 15:11:50 2005 +0000 13696 13697 Update pkgcheck dependencies to work with separate build roots. 13698 13699commit 1bf71462a972e0fc56de63f5c7fd613b37fc70f1 13700Author: Donnie Berkholz <spyderous@gentoo.org> 13701Date: Fri Oct 28 10:44:03 2005 +0000 13702 13703 Revert that, it's redundant. But it is worth noting that --disable-xkb is broken, if anyone cares. 13704 13705commit be627a39fe373e2e81fdc263780e70a271d9e0c5 13706Author: Donnie Berkholz <spyderous@gentoo.org> 13707Date: Fri Oct 28 08:28:08 2005 +0000 13708 13709 Add dependency on inputproto for XI.h. 13710 13711commit 5fae4cb456cb03fb70cd065dbc2ca94c8ed99082 13712Author: Adam Jackson <ajax@nwnk.net> 13713Date: Fri Oct 21 18:44:24 2005 +0000 13714 13715 Bug #4736: Error decoding for Damage extension. (Jonathan Lennox) 13716 13717commit 1171fa9dc77413f0e90933a565ec07068052afb4 13718Author: Kevin E Martin <kem@kem.org> 13719Date: Wed Oct 19 02:48:08 2005 +0000 13720 13721 Update package version number for RC1 release. 13722 13723commit 2a2d905706308b9d5a1c16af1067fb390f43850c 13724Author: Alan Coopersmith <alan.coopersmith@sun.com> 13725Date: Tue Oct 18 00:00:08 2005 +0000 13726 13727 Use @LIB_MAN_SUFFIX@ instead of $(LIB_MAN_SUFFIX) in macro substitutions to work better with BSD make 13728 13729commit 66d35b6971fb26762392a2a8e2c47db46c11116a 13730Author: Alan Coopersmith <alan.coopersmith@sun.com> 13731Date: Mon Oct 17 21:13:15 2005 +0000 13732 13733 Rename .shadows.DONE to shadows.DONE to avoid some make's thinking it's a suffix rule (reported by Matthieu Herrb) 13734 13735commit a316995a17c084e98ef1b7f25d287c2c08b6d749 13736Author: Donnie Berkholz <spyderous@gentoo.org> 13737Date: Sun Oct 16 03:03:35 2005 +0000 13738 13739 Change '==' to portable '='. 13740 13741commit b76a072530e884bcbea6ed8fed5aef39361dcfc0 13742Author: Alan Coopersmith <alan.coopersmith@sun.com> 13743Date: Wed Oct 12 00:04:50 2005 +0000 13744 13745 configure.ac Use XORG_MAN_SECTIONS instead of custom man section configuration. Add shadow man pages for man pages that document multiple functions. 13746 13747commit 8ee5c1429af98206e05a0536f87c0f21a529cdf0 13748Author: Eric Anholt <anholt@freebsd.org> 13749Date: Tue Oct 11 02:18:36 2005 +0000 13750 13751 Add appropriate pthread libs/flags for FreeBSD, fixing the build of ico and probably others. 13752 13753commit 41ff3b9d1f194a7b56437b650d5f589225c078c6 13754Author: Alan Coopersmith <alan.coopersmith@sun.com> 13755Date: Sun Oct 9 22:28:39 2005 +0000 13756 13757 Bug #3021 <https://bugs.freedesktop.org/show_bug.cgi?id=3021> Requests and Errors for XFixes are not in XErrorDB (Jonathan Lennox) 13758 13759commit 91ed79852e790049ab54e68f288afb3c953194c9 13760Author: Kevin E Martin <kem@kem.org> 13761Date: Fri Oct 7 15:00:00 2005 +0000 13762 13763 Clean up generated files 13764 Add missing dist tarball files 13765 13766commit 440399b470c97b159a530602fff11c315aca8d97 13767Author: Søren Sandmann Pedersen <sandmann@daimi.au.dk> 13768Date: Wed Oct 5 18:27:10 2005 +0000 13769 13770 Add el_GR.UTF-8 compose file 13771 13772commit 010f0647e25ac617d0f92c8d2b8dda684da545db 13773Author: Daniel Stone <daniel@fooishbar.org> 13774Date: Fri Sep 30 07:52:46 2005 +0000 13775 13776 Bug #2609: Add Kyrgyz locale (Ilyas Bakirov). 13777 13778commit 3ef2fb67bd8905b208ad7eb790c3843e14cea7ed 13779Author: Daniel Stone <daniel@fooishbar.org> 13780Date: Fri Sep 30 07:47:55 2005 +0000 13781 13782 Bug #1640: Kinyarwanda locale support. (Steve Murphy) 13783 13784commit 4ae0decabe0960870df0ec165f495166c10a053c 13785Author: Daniel Stone <daniel@fooishbar.org> 13786Date: Fri Sep 30 07:40:03 2005 +0000 13787 13788 Bug #2268: Add South African locales (Dwayne Bailey). Some whitespace cleanups, as the parser is a little touchy. 13789 13790commit 3f79eb4c99844f618f1889741d1631c2ffe5385f 13791Author: Daniel Stone <daniel@fooishbar.org> 13792Date: Fri Sep 30 07:11:19 2005 +0000 13793 13794 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. 13795 13796commit d1237d1483ff972c76a0ac344ec97d5280db0007 13797Author: Alan Coopersmith <alan.coopersmith@sun.com> 13798Date: Thu Sep 29 21:27:12 2005 +0000 13799 13800 Add Xcms.txt to lib/X11 13801 13802commit 4a86f299693f7376cbe98175f0b0c44d691802b3 13803Author: Alan Coopersmith <alan.coopersmith@sun.com> 13804Date: Sat Sep 24 20:11:06 2005 +0000 13805 13806 Add XQueryExtension.man 13807 13808commit a057a66e2041d45198a13a4ece7c07068f76f21b 13809Author: Alan Coopersmith <alan.coopersmith@sun.com> 13810Date: Sat Sep 24 00:16:32 2005 +0000 13811 13812 Add XTHREAD_CFLAGS for platforms that need special defines like 13813 -D_REENTRANT or -D_POSIX_whatever to get re-entrant function definitions. Set XDMCP_LIBS correctly for later libXdmcp tests. 13814 13815commit 3e920a65a7c376ad63eae2240fd06904d25d18bf 13816Author: Alan Coopersmith <alan.coopersmith@sun.com> 13817Date: Fri Sep 2 23:00:30 2005 +0000 13818 13819 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 13820 13821commit 3eb9f2d693af89d04e2fd92492c8205dce332c9c 13822Author: Kristian Høgsberg <krh@redhat.com> 13823Date: Thu Sep 1 19:24:13 2005 +0000 13824 13825 Use $(X11_LOCALEDATADIR) instead of @X11_LOCALEDATADIR@ so this install destination can be overridden at make install time. 13826 13827commit 7afa64325183b78d2d6a4862821f8b3e9866105c 13828Author: Matthieu Herrb <matthieu.herrb@laas.fr> 13829Date: Sun Aug 28 19:45:48 2005 +0000 13830 13831 OpenBSD needs -lpthread for threaded applications too. 13832 13833commit 2b2f3d3877cb7927f196d01a5df6a27bf8d0518a 13834Author: Daniel Stone <daniel@fooishbar.org> 13835Date: Fri Aug 26 05:16:46 2005 +0000 13836 13837 Define ERRORDB/KEYSYMDB to XERRORDB/XKEYSYMDB if the former is undefined but the latter is. (Gerte Hoogewerf) 13838 13839commit 07066da0902df91c71f2adb81d1a17ec29165553 13840Author: Matthieu Herrb <matthieu.herrb@laas.fr> 13841Date: Sun Aug 21 15:45:04 2005 +0000 13842 13843 update 13844 13845commit de44d8b111f57bd2f015e085fd8298c5f2a15ef3 13846Author: Matthieu Herrb <matthieu.herrb@laas.fr> 13847Date: Sun Aug 21 15:38:39 2005 +0000 13848 13849 Threads support for BSD systems: 13850 - need to check for gewtpwuid_r to define mtsafeapi 13851 - build UIThrstubs if needed. 13852 13853commit 60217fdb918bafb2082519efe5cba3b13ad3082a 13854Author: Adam Jackson <ajax@nwnk.net> 13855Date: Wed Aug 17 19:46:08 2005 +0000 13856 13857 Add xthreadlib variable to x11.pc. Bump to 0.99.1. 13858 13859commit e1f4c6f5e36c1511f66fa1fac76520fd97eecbad 13860Author: Alan Coopersmith <alan.coopersmith@sun.com> 13861Date: Wed Aug 17 01:27:08 2005 +0000 13862 13863 Fix more broken multi-line .ds macros. Remove extraneous ;'s . 13864 13865commit 1909786f4a7d686369edcfc05a938df115fab37c 13866Author: Alan Coopersmith <alan.coopersmith@sun.com> 13867Date: Tue Aug 16 19:23:15 2005 +0000 13868 13869 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) 13870 13871commit 83406d69c62070d2eeef23eb47f1ca887f711ee5 13872Author: Alan Coopersmith <alan.coopersmith@sun.com> 13873Date: Mon Aug 15 19:53:37 2005 +0000 13874 13875 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 13876 13877commit 5bb43de17de8e71d967488a713bf2b3448533444 13878Author: Alan Coopersmith <alan.coopersmith@sun.com> 13879Date: Sat Aug 6 18:59:49 2005 +0000 13880 13881 Typo fix in output message 13882 13883commit afe34b95862bb3c06cdbe724cb5ec3001a4a5215 13884Author: Alan Coopersmith <alan.coopersmith@sun.com> 13885Date: Thu Aug 4 02:55:49 2005 +0000 13886 13887 //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) 13888 13889commit 3979a0b88edf6475ce5cfaa386e18ef980bda13c 13890Author: Alan Coopersmith <alan.coopersmith@sun.com> 13891Date: Thu Aug 4 02:51:30 2005 +0000 13892 13893 //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) 13894 13895commit 34b454df192f4563499c453ccdb8c079f4a20cbe 13896Author: Alan Coopersmith <alan.coopersmith@sun.com> 13897Date: Sat Jul 30 20:30:46 2005 +0000 13898 13899 Include config.h so Xtrans knows which transport types to build code for 13900 13901commit cd9c9936b49c125eda779b99887d7e6ae4cf56cd 13902Author: Alan Coopersmith <alan.coopersmith@sun.com> 13903Date: Sat Jul 30 19:15:16 2005 +0000 13904 13905 Add -D flags to clear various warnings (Stefan Dirsch) 13906 13907commit e7fef67b4531faddd805d8f2157903006d3117ed 13908Author: Kevin E Martin <kem@kem.org> 13909Date: Fri Jul 29 21:22:50 2005 +0000 13910 13911 Various changes preparing packages for RC0: 13912 - Verify and update package version numbers as needed 13913 - Implement versioning scheme 13914 - Change bug address to point to bugzilla bug entry form 13915 - Disable loadable i18n in libX11 by default (use --enable-loadable-i18n to reenable it) 13916 - Fix makedepend to use pkgconfig and pass distcheck 13917 - Update build script to build macros first 13918 - Update modular Xorg version 13919 13920commit 2ebb00244928237088e68325b1032b3550455ce9 13921Author: Matthieu Herrb <matthieu.herrb@laas.fr> 13922Date: Sat Jul 23 20:19:31 2005 +0000 13923 13924 remove orphan TAB at begin of line 13925 13926commit dd7a9cdecda73e024ca84c5b9a22b18688038d94 13927Author: Kevin E Martin <kem@kem.org> 13928Date: Sat Jul 23 18:09:39 2005 +0000 13929 13930 Modify modular libs to use Xregion.h instead of region.h 13931 13932commit 6d635a88d91647b1b63611c3591f74916f88cd1c 13933Author: Kevin E Martin <kem@kem.org> 13934Date: Sat Jul 23 18:06:16 2005 +0000 13935 13936 lib/Xrender/Picture.c Change region.h to Xregion.h and modify internal references to include <X11/Xregion.h>. 13937 13938commit 36283f50fd9748733ae84cb7fb52ca8d9e661c15 13939Author: Daniel Stone <daniel@fooishbar.org> 13940Date: Sat Jul 16 06:25:35 2005 +0000 13941 13942 Set soversion to 6.2.0. 13943 13944commit 75fd5ae6e4683b9b9dcc13bc2f0faf223610a74f 13945Author: Keith Packard <keithp@keithp.com> 13946Date: Fri Jul 15 04:27:32 2005 +0000 13947 13948 Add missing Makefile.am to lib/X11/modules 13949 13950commit 6d84a8b1329af1fcfe86b198f1a6e7dd6ff616c3 13951Author: Keith Packard <keithp@keithp.com> 13952Date: Fri Jul 15 04:08:51 2005 +0000 13953 13954 Move i18n modules to top-level so they can be built in the right order (before xlib for non-loadable, after xlib for loadable). 13955 Link i18n modules against xlib to resolve Xlib symbols used by them. 13956 13957commit 45f40126a73295345bb5eb187b1167874842ab6e 13958Author: Alexander Gottwald <ago@freedesktop.org> 13959Date: Thu Jul 14 19:50:00 2005 +0000 13960 13961 Add $(top_srcdir)/src to include list 13962 13963commit 0aed7d91f5928d09d541617aad03709b5090658d 13964Author: Matthieu Herrb <matthieu.herrb@laas.fr> 13965Date: Thu Jul 14 17:04:49 2005 +0000 13966 13967 Build fix for non-GNU make. 13968 13969commit b79422ccb02ab44548d1038956ab0cd4e2638645 13970Author: Adam Jackson <ajax@nwnk.net> 13971Date: Thu Jul 14 15:12:44 2005 +0000 13972 13973 typo fixes (Matthieu Herrb) 13974 13975commit 419304cde2fda19457c667870edefc0b227651b3 13976Author: Alan Coopersmith <alan.coopersmith@sun.com> 13977Date: Wed Jul 13 02:41:36 2005 +0000 13978 13979 Add missing backslashes to xlocale_la_SOURCES 13980 13981commit d14cc5c8964c4539b57c6cb51ef653292e410b79 13982Author: Keith Packard <keithp@keithp.com> 13983Date: Mon Jul 11 20:32:55 2005 +0000 13984 13985 Ammend AM_CFLAGS with all needed includes; cannot figure out an easy way to automate this. 13986 13987commit 424c2d8905eb2ad0a2df15b1da2f96140bfbcffb 13988Author: Lars Knoll <lars@trolltech.com> 13989Date: Mon Jul 11 15:24:32 2005 +0000 13990 13991 compile 13992 13993commit de9784eb1bde46efc316da279e3da27c6cc288a7 13994Author: Keith Packard <keithp@keithp.com> 13995Date: Mon Jul 11 09:26:40 2005 +0000 13996 13997 Ignore built man page files 13998 13999commit 0c258c36d1523113790c599b16d2947d7aa6469a 14000Author: Keith Packard <keithp@keithp.com> 14001Date: Mon Jul 11 09:18:31 2005 +0000 14002 14003 Minor changes to help modular Xlib build i18n modules 14004 14005commit 6e752ea1203b786423e40f43340bce15ca3de0f0 14006Author: Keith Packard <keithp@keithp.com> 14007Date: Mon Jul 11 08:29:18 2005 +0000 14008 14009 Enable loadable i18n modules, making them configurable on the configure command line. 14010 Clean up conditionals for XKB, XCMS, XLOCALEDIR 14011 Create new lib directory for locale modules in ${X11_LIBDIR}/locale/lib. Add this to the default XLOCALEDIR search path. 14012 Create separate X11_LOCALEDATADIR variable pointing at ${datadir}/X11/locale for installing locale data. 14013 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. 14014 Display message at end of configure script with selected options. 14015 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. 14016 14017commit b46cf0d879f1dbf92dcf5a0305d18986c766ed84 14018Author: Daniel Stone <daniel@fooishbar.org> 14019Date: Sun Jul 10 22:37:33 2005 +0000 14020 14021 Fix segfault when _XimProtoCreateIC() fails to create a context; Debian #239991. (Chung-chieh Shan) 14022 14023commit 6f2132b18e61ca9755e4b45550f3f5097dd1fbb7 14024Author: Alan Coopersmith <alan.coopersmith@sun.com> 14025Date: Sat Jul 9 20:06:04 2005 +0000 14026 14027 Set __libmansuffix__ & __xorgversion__ correctly when cpp processing man pages 14028 14029commit 3939ac4410446b46071c9d714f4270c12bf904fe 14030Author: Alan Coopersmith <alan.coopersmith@sun.com> 14031Date: Sat Jul 9 18:44:14 2005 +0000 14032 14033 - 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 14034 - Don't assume $(CPP) can take gcc-only -traditional flag 14035 - CPP process man pages as is done in the monolithic tree 14036 14037commit 19ba9d0df86c688319377467254b9ea9c4b0eccc 14038Author: Keith Packard <keithp@keithp.com> 14039Date: Sat Jul 9 06:01:49 2005 +0000 14040 14041 Clean up .cvsignore files 14042 14043commit f4bba6fa9b9ce637be7662754750054567e9250a 14044Author: Adam Jackson <ajax@nwnk.net> 14045Date: Sat Jul 9 02:53:29 2005 +0000 14046 14047 typo fix. i suck. 14048 14049commit 3305da61a61695e24c1ea11d3f59dddb52873d47 14050Author: Adam Jackson <ajax@nwnk.net> 14051Date: Sat Jul 9 02:41:18 2005 +0000 14052 14053 Check for bigfont proto headers via pkgconfig (Arwed von Merkatz) 14054 14055commit afdae2e8ccb93de2987b5a5e850695af15ece7e0 14056Author: Keith Packard <keithp@keithp.com> 14057Date: Fri Jul 8 07:11:56 2005 +0000 14058 14059 Create and use XlibConf.h to match modular build which needs XTHREADS defined when building extensions 14060 14061commit 86fa88dc594ca2093030acf5c84973ee2b33eb4c 14062Author: Keith Packard <keithp@keithp.com> 14063Date: Fri Jul 8 06:57:06 2005 +0000 14064 14065 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. 14066 Add a bunch of .cvsignore files 14067 14068commit 30f6ffedeaf899e699f0c6b14c9471ce9bcc430c 14069Author: Chris Less <clee@c133.org> 14070Date: Mon Jul 4 23:01:48 2005 +0000 14071 14072 Fixing bug #380 - add a man page for XQueryExtension, XListExtensions, and XFreeExtensionList. 14073 14074commit 55328bb6caabd37885cd19d7a5821ed425daf321 14075Author: Eric Anholt <anholt@freebsd.org> 14076Date: Sun Jul 3 10:17:38 2005 +0000 14077 14078 Avoid a gmake-specific construct, and instead just write the name of the current directory into each Makefile.am. 14079 14080commit 726538ba21b631bfb0b8094a5546acdaf57379ff 14081Author: Daniel Stone <daniel@fooishbar.org> 14082Date: Sun Jul 3 07:37:33 2005 +0000 14083 14084 Fix more include paths; add dix-config.h to XKB code. 14085 14086commit 8c7677138e70e14eca0255f2168583f0ecc21994 14087Author: Daniel Stone <daniel@fooishbar.org> 14088Date: Sun Jul 3 07:00:55 2005 +0000 14089 14090 Add Xtrans definitions (FONT_t, TRANS_CLIENT) to clean up warnings. 14091 Add XSERV_t, TRANS_SERVER, TRANS_REOPEN to quash warnings. 14092 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>. 14093 14094commit 197697c92a63091a4cc3cc04dcb7fa29d2655758 14095Author: Daniel Stone <daniel@fooishbar.org> 14096Date: Fri Jul 1 22:13:35 2005 +0000 14097 14098 Fix objdir != srcdir, as well as make distcheck. 14099 Don't attempt to create Compose.pre files; formatting fixes. 14100 Added if not already present. 14101 14102commit c162d60ad8f124563f94a2a266de59373936266c 14103Author: Søren Sandmann Pedersen <sandmann@daimi.au.dk> 14104Date: Wed Jun 22 22:46:31 2005 +0000 14105 14106 Apply these patches from Theo van Klaveren: 14107 lib-dmx.patch lib-FS.patch lib-X11.patch lib-XRes.patch lib-XScrnSaver.patch lib-xtrans.patch 14108 to make the libraries distcheck. 14109 14110commit 9ee8abdab03ea605a6327118ab7dacab6adf8876 14111Author: Alan Coopersmith <alan.coopersmith@sun.com> 14112Date: Sat Jun 18 07:48:43 2005 +0000 14113 14114 Move Secure RPC flags from X11/configure.ac to xtrans/xtrans.m4 since multiple modules will need them 14115 14116commit 12afc57b7d455781eee305e9ed6a899ceec8729e 14117Author: Daniel Stone <daniel@fooishbar.org> 14118Date: Wed Jun 15 16:50:47 2005 +0000 14119 14120 Typo fix to locale/error/keysym location declarations. 14121 14122commit 9a895777e30762f61b98d25be3b5d8b1169baa17 14123Author: Daniel Stone <daniel@fooishbar.org> 14124Date: Wed Jun 15 13:37:43 2005 +0000 14125 14126 Typo in ImUtil.h commit -- I AM CAPTAIN SKILL. 14127 14128commit add49285663684875ab7a5c58ec7a2cf8b775f67 14129Author: Daniel Stone <daniel@fooishbar.org> 14130Date: Wed Jun 15 13:32:35 2005 +0000 14131 14132 Define locations for XErrorDB, XKeysymDB, and locale data in configure.ac. Add AC_DEFINE_DIR macro from autoconf-archive.cryp.to towards this end. 14133 Move ImUtil.h from src/ to include/X11/. 14134 14135commit 845dfc6b42b950890866ee4df27761e086f50dca 14136Author: Daniel Stone <daniel@fooishbar.org> 14137Date: Wed Jun 15 13:27:48 2005 +0000 14138 14139 Move ImUtil.h from src/ to include/X11/. Additionally, copy Cmap.h as a distribution file. 14140 14141commit bba117f0d98f62cfb060d0fab97b407a3a0bfda9 14142Author: Daniel Stone <daniel@fooishbar.org> 14143Date: Fri Jun 10 14:11:36 2005 +0000 14144 14145 Remove pointless include of Xlib.h. 14146 Fix #include path to bigreqstr.h. 14147 14148commit 1a0de49da1274882bab05b0f7240936b37955e5c 14149Author: Alexander Gottwald <ago@freedesktop.org> 14150Date: Thu Jun 9 21:30:15 2005 +0000 14151 14152 Use $(srcdir) for Compose.pre and XLC_LOCALE.pre 14153 14154commit af4f0f302644ebfbb0ca9f4016a4aee85c973d37 14155Author: Alexander Gottwald <ago@freedesktop.org> 14156Date: Thu Jun 9 15:55:33 2005 +0000 14157 14158 Replace <X11/transport.c> with <X11/Xtrans/transport.c> 14159 14160commit fd5f58e0baf692e34b9b622286f18762cc2500d3 14161Author: Alexander Gottwald <ago@freedesktop.org> 14162Date: Thu Jun 9 15:52:02 2005 +0000 14163 14164 Replace <X11/Xtrans.h> with <X11/Xtrans/Xtrans.h> 14165 Copy Xtrans.h to exports/include/X11/Xtrans only 14166 14167commit 44538f9940f969d46c0e5e4b201c684cde2ba611 14168Author: Alan Coopersmith <alan.coopersmith@sun.com> 14169Date: Sun Jun 5 03:29:33 2005 +0000 14170 14171 Port Imake flags to autoconf tests & --enable-* flags: HASSETUGID, HASGETRESUID, NO_XLOCALEDIR, HAS_SHM and XF86BIGFONT 14172 14173commit 588e30e9ec65fa6205a34be650b79d5e2243edec 14174Author: Alan Coopersmith <alan.coopersmith@sun.com> 14175Date: Sat Jun 4 22:53:21 2005 +0000 14176 14177 Add --enable-secure-rpc flag and checks for needed functions for Secure RPC ("SUN-DES-1") authentication method 14178 14179commit a547afee2ef49cc41bbb67f9cff5a52a283c0854 14180Author: Alan Coopersmith <alan.coopersmith@sun.com> 14181Date: Sat Jun 4 21:20:20 2005 +0000 14182 14183 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) 14184 14185commit ca93c761559ae464189c7ea7cf11c6a6679f2431 14186Author: Matthieu Herrb <matthieu.herrb@laas.fr> 14187Date: Sat May 28 01:02:32 2005 +0000 14188 14189 Don't use $< in explicit rules. This only works with GNU make. <https://bugs.freedesktop.org/show_bug.cgi?id=3383> 14190 14191commit 09ebb349359e3dd9131fa2fa8b07559faa173654 14192Author: Alan Coopersmith <alan.coopersmith@sun.com> 14193Date: Sun May 22 19:05:11 2005 +0000 14194 14195 Convert man pages to long file names in lib/X11, lib/Xt, & lib/Xext 14196 14197commit 761219b1ef9befc350c8a35b6f96d047e5f008cc 14198Author: Alan Coopersmith <alan.coopersmith@sun.com> 14199Date: Sat May 21 23:07:48 2005 +0000 14200 14201 xtrans: 14202 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 14203 ICE: 14204 Add ICE_t #define required by Xtrans headers. Replace static defines of LOCALCONN & UNIXCONN with new XTRANS_CONNECTION_FLAGS macro. 14205 X11: 14206 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. 14207 14208commit 4b1ba6eb975b547b808f4d5c8825a3261de5e02a 14209Author: Alan Coopersmith <alan.coopersmith@sun.com> 14210Date: Sat May 21 04:26:12 2005 +0000 14211 14212 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) 14213 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). 14214 14215commit 1d425d5e2092dd18a7dd599b37ed9af61cf59819 14216Author: Adam Jackson <ajax@nwnk.net> 14217Date: Thu May 19 00:22:32 2005 +0000 14218 14219 revert last change, didn't do right thing at all, sorry for the noise 14220 14221commit 1b0c46c1ae61d751dd3ca96de8e2c3fe21c5f4f2 14222Author: Adam Jackson <ajax@nwnk.net> 14223Date: Thu May 19 00:10:07 2005 +0000 14224 14225 Require automake 1.7 in AM_INIT_AUTOMAKE 14226 14227commit cd4657c175dbab6aaca36f18a0ca92c95b5567dd 14228Author: Søren Sandmann Pedersen <sandmann@daimi.au.dk> 14229Date: Tue May 17 22:32:09 2005 +0000 14230 14231 - Check for xproto as its CFLAGS are needed in the .pc file 14232 14233commit 46e8d8a65430dd87c10b066b5cff99a689c22241 14234Author: Egbert Eich <eich-at-freedesktop-dot-org> 14235Date: Tue May 17 08:10:10 2005 +0000 14236 14237 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). 14238 14239commit 23198d2bfbf0049b2630235cd4d4a4ffba7ec6c1 14240Author: <ssp@aware-of-vacuity.boston.redhat.com> 14241Date: Mon May 16 22:35:27 2005 +0000 14242 14243 Make Xdmcp unconditionally required, require various protocol modules. 14244 Mon May 16 17:48:03 2005 Søren Sandmann <sandmann@redhat.com> 14245 Check for kbproto if using XKB. 14246 Require xextproto rather than xextensions 14247 Remove the entries from the xlibs tree, as they are not relevant here. 14248 14249commit 8bd3aea84ce54b8b76a898f3ae00e2b499c14a5e 14250Author: Søren Sandmann Pedersen <sandmann@daimi.au.dk> 14251Date: Mon May 16 21:48:36 2005 +0000 14252 14253 Mon May 16 17:48:03 2005 Søren Sandmann <sandmann@redhat.com> 14254 Check for kbproto if using XKB. 14255 14256commit 9b1fa9ca3ed852ed40860f137511683f4bdae6fa 14257Author: <ssp@aware-of-vacuity.boston.redhat.com> 14258Date: Mon May 16 21:27:35 2005 +0000 14259 14260 Require xextproto rather than xextensions 14261 Remove the entries from the xlibs tree, as they are not relevant here. 14262 14263commit 7eee605e3aeed549d1053325a03027c5e8cbf71b 14264Author: Søren Sandmann Pedersen <sandmann@daimi.au.dk> 14265Date: Fri May 13 22:53:36 2005 +0000 14266 14267 - For now put xtrans in X11/Xtrans/X11, since libX11 is looking for it in <X11/...> 14268 - For Xcomposite and Xdamage, don't link the build system out of the xc tree 14269 - Link the public X11 headers into their own directory 14270 - Add links to XKeysymDB and XErrorDB 14271 - Add links to all the Xlib man pages 14272 - Add links to the lcUniConv subdirectory 14273 - Conditionally include config.h in Xlib source 14274 14275commit 6769ccda88caf27d1441d335ef2b318a047a612b 14276Author: Alan Coopersmith <alan.coopersmith@sun.com> 14277Date: Mon Mar 21 04:58:21 2005 +0000 14278 14279 xc/lib/X11/ErrDes.c 14280 //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> 14281 14282commit 3b9e8ece93b916c55a82df53e85f097418edf471 14283Author: Roland Mainz <roland.mainz@nrubsig.org> 14284Date: Sat Mar 19 22:04:55 2005 +0000 14285 14286 xc/nls/Compose/iso8859-2 14287 xc/nls/Compose/iso8859-3 14288 xc/nls/Compose/iso8859-9 14289 //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>. 14290 14291commit 0ce5950a08b9ab23ca8a32effdd40c421e92df84 14292Author: Alan Coopersmith <alan.coopersmith@sun.com> 14293Date: Tue Mar 8 02:53:36 2005 +0000 14294 14295 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>. 14296 14297commit df341cd2f2f263f13323e8c0936ea8aa0d7fbba1 14298Author: Roland Mainz <roland.mainz@nrubsig.org> 14299Date: Tue Feb 1 03:12:28 2005 +0000 14300 14301 xc/nls/Compose/pt_BR.UTF-8 14302 //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>. 14303 14304commit 483d3973f56dda51f9251d3ea808aaf7f3b48c10 14305Author: Markus Kuhn <Markus.Kuhn@cl.cam.ac.uk> 14306Date: Fri Jan 28 18:31:31 2005 +0000 14307 14308 cleaned up boundary-case handling for Uxxxx Unicode keysym notation 14309 14310commit f234188a4c1e6b655aef0e3957ccad20d4c5847f 14311Author: Roland Mainz <roland.mainz@nrubsig.org> 14312Date: Wed Jan 19 01:53:55 2005 +0000 14313 14314 xc/nls/compose.dir 14315 xc/nls/locale.dir 14316 xc/nls/Compose/Imakefile 14317 xc/nls/Compose/pt_BR.UTF-8 14318 xc/nls/XI18N_OBJS/Imakefile 14319 xc/nls/XI18N_OBJS/pt_BR.UTF-8 14320 xc/nls/XLC_LOCALE/Imakefile 14321 xc/nls/XLC_LOCALE/pt_BR.UTF-8 14322 //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. 14323 14324commit 7448ea7ef425d35cfc31eb41d46f4d879774f376 14325Author: Egbert Eich <eich-at-freedesktop-dot-org> 14326Date: Fri Jan 14 18:03:09 2005 +0000 14327 14328 Made some security enhancements: 14329 - no writing past end of buffer caused by bogus locale. 14330 - explicitely add a \0 character at end of string. (Bugzilla #2262) 14331 14332commit 5557d47fcf22a6f3adf327691158f2270e3d5094 14333Author: Roland Mainz <roland.mainz@nrubsig.org> 14334Date: Fri Jan 14 04:59:05 2005 +0000 14335 14336 xc/nls/compose.dir 14337 xc/nls/locale.alias 14338 xc/nls/locale.dir 14339 //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>. 14340 14341commit 1fa3737f042f798fa11a9ff5b03f3b3ba3529824 14342Author: Egbert Eich <eich-at-freedesktop-dot-org> 14343Date: Tue Jan 11 17:37:57 2005 +0000 14344 14345 '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. 14346 14347commit 642cd269f94a234aa470a1d43385bd42625d89a1 14348Author: Egbert Eich <eich-at-freedesktop-dot-org> 14349Date: Tue Dec 14 08:59:20 2004 +0000 14350 14351 Removed #ifdef'ed out code together with the comment explaining why it was #ifdef'ed out. 14352 Fixed typo. 14353 Added comment to a changed that's been committed with one of the previous commits. 14354 14355commit a07ccae36e629741d2e48de7730114d30a975a41 14356Author: Matthieu Herrb <matthieu.herrb@laas.fr> 14357Date: Sun Dec 12 08:42:50 2004 +0000 14358 14359 Fix missing XChangeProperty() prototype missing in synopsis section. 14360 14361commit c73adb1c8ad806c2f9f0ba32f4b449e7a871501c 14362Author: Alexander Gottwald <ago at freedesktop dot org> 14363Date: Wed Dec 8 13:42:01 2004 +0000 14364 14365 Bugzilla #1980 (https://bugs.freedesktop.org/show_bug.cgi?id=1980) Handle XERRORDB only on WIN32 platform 14366 14367commit d5e7ab194103e22fd6c5094aaa107d90210bb600 14368Author: Jim Gettys <jg@freedesktop.org> 14369Date: Thu Dec 2 16:18:16 2004 +0000 14370 14371 fix comment to indicate additional possible mode. i bug 1756 reported by Owen Taylor. 14372 14373commit 03940d7330cb1bbf93d49c650aefb19de457da7c 14374Author: Alexander Gottwald <ago at freedesktop dot org> 14375Date: Wed Dec 1 13:06:55 2004 +0000 14376 14377 Bugzilla #1980, https://bugs.freedesktop.org/show_bug.cgi?id=1980 Make location of XErrorDB configurable 14378 14379commit 11a03ab908bfcfab8a3492684e8e9320e492d552 14380Author: Alexander Gottwald <ago at freedesktop dot org> 14381Date: Wed Dec 1 12:42:17 2004 +0000 14382 14383 Bugzilla #1864, http://freedesktop.org/bugzilla/show_bug.cgi?id=1864 Initialize pointer to NULL to avoid freeing random memory 14384 14385commit f3d83ee153f42e8899b844377e6b842d93411e62 14386Author: Alexander Gottwald <ago@freedesktop.org> 14387Date: Mon Nov 15 15:06:54 2004 +0000 14388 14389 Bufzilla #1802, http://freedesktop.org/bugzilla/show_bug.cgi?id=1802 Added mingw (Win32) port 14390 14391commit b798ea11911ac58a8e6e7d15a2a643b023859749 14392Author: Alexander Gottwald <ago at freedesktop dot org> 14393Date: Mon Nov 15 13:29:56 2004 +0000 14394 14395 Bugzilla #1864, http://freedesktop.org/bugzilla/show_bug.cgi?id=1864 Initialize pointer to NULL to avoid freeing random memory 14396 14397commit 436108cd6c84053698e5ca629096f59b34f50c2a 14398Author: Kristian Høgsberg <krh@redhat.com> 14399Date: Thu Nov 11 15:37:01 2004 +0000 14400 14401 Fix #1818 14402 14403commit bf2e6ef66ba55f90efa4a4ba8c8b6d3ec0d1531c 14404Author: Roland Mainz <roland.mainz@nrubsig.org> 14405Date: Tue Nov 9 00:56:56 2004 +0000 14406 14407 xc/nls/compose.dir 14408 xc/nls/locale.alias 14409 xc/nls/locale.dir 14410 //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>. 14411 14412commit 443890ceefbd6dafe68e30d103ec4f9d316ed655 14413Author: Roland Mainz <roland.mainz@nrubsig.org> 14414Date: Fri Nov 5 00:58:49 2004 +0000 14415 14416 xc/nls/compose.dir 14417 xc/nls/locale.alias 14418 xc/nls/locale.dir 14419 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>. 14420 14421commit af7467ec734321f127b957921cce7792902b6794 14422Author: Egbert Eich <eich-at-freedesktop-dot-org> 14423Date: Mon Oct 18 17:29:03 2004 +0000 14424 14425 Correcting font encodings for GB18030, GBK and BIG5-HKSCS. Adding nls support for those encodings (Bugzilla 1573, James Su). 14426 14427commit 1b900b59cb24fe8be3db0d434b04d462c0eeb206 14428Author: Egbert Eich <eich-at-freedesktop-dot-xorg> 14429Date: Mon Oct 18 14:21:45 2004 +0000 14430 14431 Made handling of DevelDrivers for x86-64 more conformant to other platforms. 14432 Compress all font encodings (Stefan Dirsch). 14433 Fixed warnings. 14434 Turn on forwarding XNSpotLocation event to XIM server in OffTheSpot and Root mode (bugzilla #1580, James Su). 14435 Added another compose key combination for the Euro symbol (Stefan Dirsch). 14436 Added support for UTF-8 in ja_JP, ko_KR and zh_TW locales (Mike Fabian). 14437 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. 14438 Added explanation for DESTDIR to install to a different directory than /. 14439 Added some early bailouts to atiprobe if PCI structure pointer is NULL to prevent sig11. 14440 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. 14441 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(). 14442 Use /dev/xconsole (named pipe) or devpts for system logger (Werner Fink). 14443 Create missing links for backward compatibility to XFree86 (Stefan Dirsch). 14444 Changed comment to mention xorg. 14445 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). 14446 Added 'pic' to the man page rendering command pipeline (Werner Fink). 14447 Added missing return value (Stefan Dirsch, Roland Mainz) 14448 14449commit 1ba103c3cad2329db3a31f88d7798b913affc570 14450Author: Eric Anholt <anholt@freebsd.org> 14451Date: Wed Oct 13 07:38:00 2004 +0000 14452 14453 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>) 14454 14455commit d80237db627bf71ad5615ff4ba05e6ab436aa740 14456Author: Søren Sandmann Pedersen <sandmann@daimi.au.dk> 14457Date: Fri Oct 8 22:57:56 2004 +0000 14458 14459 Fri Oct 8 18:53:11 2004 Soeren Sandmann <sandmann@redhat.com> 14460 Move iso10646 last so the "fallback" fonts will actually be used if they are better matches. 14461 14462commit d1f76d17ecf418396627b1a58319f2b9b255548a 14463Author: Markus Kuhn <Markus.Kuhn@cl.cam.ac.uk> 14464Date: Sun Sep 26 22:54:57 2004 +0000 14465 14466 bug fix for previous patch 14467 14468commit 48932d9b71d10e15812f47d5b842ab6aa8dac625 14469Author: Markus Kuhn <Markus.Kuhn@cl.cam.ac.uk> 14470Date: Sun Sep 26 20:46:17 2004 +0000 14471 14472 The big keysym cleanup, to bring implementation in line with the recent revision of Appendix A of the protocol spec. (Markus Kuhn) 14473 14474commit 2e02a95dcc43dd3ec7bbaf4675ffb94f5074f543 14475Author: Egbert Eich <eich@freedesktop.org> 14476Date: Wed Sep 15 09:05:22 2004 +0000 14477 14478 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). 14479 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). 14480 14481commit 2d3afb68a104a80a21ee622b9abb9c95e83505d3 14482Author: Egbert Eich <eich@freedesktop.org> 14483Date: Tue Aug 31 11:37:03 2004 +0000 14484 14485 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). 14486 14487commit e689746c8d0e21e9011e8b91a3071d235d3a2a74 14488Author: Kevin E Martin <kem@kem.org> 14489Date: Thu Aug 19 06:48:06 2004 +0000 14490 14491 Fix header file to #ifdef the XKB keysyms when they are used. This fixes the X test suite build failure. 14492 14493commit d558a53a6f57eecfcaadce5141fe3a08860defcb 14494Author: Keith Packard <keithp@keithp.com> 14495Date: Sat Aug 14 07:12:36 2004 +0000 14496 14497 Use XLIB_SKIP_ARGB_VISUALS environment variable to disable all depth 32 visuals. Necessary to keep Flash from crashing. 14498 Must call ValidateGC/ValidatePicture on "real" GC/Picture to ensure pCompositeClip is set correctly. 14499 Need to take the composite clip from the "real" GC/Picture and turn it into the clientClip for the backing version. 14500 Adjust pixmap screen origin to account for drawable->x/y Change debugging output a bit (disabled by default) 14501 14502commit 85c2d81f299ed3444658011b7d6fb0a7ab8a6f55 14503Author: Alexander Gottwald <ago@freedesktop.org> 14504Date: Fri Aug 13 16:28:19 2004 +0000 14505 14506 Set most significant bit to be a one. (Bug #1024, Kensuke Matsuzaki) 14507 Fix conversion from sjis and euc. (Bug #1024, Toshio Takabe) 14508 14509commit c4d56e4e288d4e48b84b021a61638f46e9a45e27 14510Author: Adam Jackson <ajax@nwnk.net> 14511Date: Wed Aug 11 05:25:13 2004 +0000 14512 14513 Bug #372: Prevent a crash in XPolygonRegion when called with a bogus point count. Reported by Andreas Luik. 14514 14515commit 92487437173f600f208d825f65756d3ad14a4f7e 14516Author: Kevin E Martin <kem@kem.org> 14517Date: Mon Aug 9 22:37:22 2004 +0000 14518 14519 Fix install problem on platforms not using xorg.cf/xfree86.cf (Bug #339, Harold L. Hunt II, Alexander Gottwald). 14520 Fix crash when using X core font in zh_CN.UTF-8 locale (Bug #368, Yu Shao, David Dawes). 14521 Fix glXMakeCurrent(Dpy, None, NULL) crash (Bug #719, Adam Jackson). 14522 HP-PA build fix (Bug #828, Guy Martin, Paul Anderson). 14523 Fix SDK build for GATOS and Wacom driver (Bug #829, Bryan Stine). 14524 Fix attempt to read video ROM before enabling it (Bug #843, Ivan Kokshaysky, Mike A. Harris). 14525 Fix detection of primary adapter (Bug #843, Ivan Kokshaysky, Mike A. Harris). 14526 Clarify xset man page description of how to use the keyboard repeat rate settings (Bug #846, Mike A. Harris). 14527 Fix problem where print-screen key would get remapped to sys-req in certain keymaps, which broke GNOME printscreen functionality (Bug #847, Owen Taylor). 14528 Fix several render problems: 14529 - MMIO mode support 14530 - Hang on IGP chips 14531 - VT switching hang 14532 - 3D render corruption (Bug #922, Hui Yu). 14533 14534commit 55c2ee568e7d3903258286a13bdf96ce5348ffda 14535Author: Matthieu Herrb <matthieu.herrb@laas.fr> 14536Date: Tue Jul 27 06:06:05 2004 +0000 14537 14538 - remove remaining AMOEBA references. 14539 - remove unused file. 14540 14541commit 6e884b12911eedfb003e90a3829ce66f7fc9cf2d 14542Author: Søren Sandmann Pedersen <sandmann@daimi.au.dk> 14543Date: Tue Jul 20 17:48:09 2004 +0000 14544 14545 Tue Jul 20 19:38:06 2004 Soeren Sandmann <sandmann@daimi.au.dk> 14546 Set font_data->xlfd_data to NULL after XFree(). (#837, patch from Bastien Nocera). 14547 Tue Jul 20 18:23:32 2004 Soeren Sandmann <sandmann@daimi.au.dk> 14548 Use /dev/urandom on Linux.(#761). 14549 14550commit 6f0bc97aa4e6de5a4b001f40ac10795cfdf09fc1 14551Author: Eric Anholt <anholt@freebsd.org> 14552Date: Fri May 28 23:26:44 2004 +0000 14553 14554 Forced commit to note repocopy from xc/lib/XThrStub, will be connected to the build after this. 14555 14556commit aa7010c43ae9f39fb84b5ff155f76117c9e527a0 14557Author: Egbert Eich <eich@pdx.freedesktop.org> 14558Date: Mon May 24 19:02:11 2004 +0000 14559 14560 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. 14561 14562commit 720702da29769d80ad1254d92edbad5b30f8a8da 14563Author: Alan Coopersmith <alan.coopersmith@sun.com> 14564Date: Sat May 22 03:47:42 2004 +0000 14565 14566 Bugzilla #658: XStringToKeysym fails for Greek_IOTAdiaeresis (Fixes VSW5 testcase XStringToKeysym-7 failure) 14567 14568commit 3aed873292424b497d9a7dcee2975b95bf5ac966 14569Author: Alan Coopersmith <alan.coopersmith@sun.com> 14570Date: Sat Apr 24 23:39:25 2004 +0000 14571 14572 XOpenDisplay should try tcp connection if local connections fail (aka Sun bug id #4624183). 14573 Also includes fix from NetBSD Problem Report #25098 (Michael van Elst) (Xlib segfaults with IPv6 if compiled with HASXDMAUTH). 14574 xc/config/cf/sunLib.tmpl 14575 xc/lib/FS/Imakefile Add missing shared library dependencies for Solaris 14576 14577commit c6349f43193b74a3c09945f3093a871b0157ba47 14578Author: Egbert Eich <eich@freedesktop.org> 14579Date: Fri Apr 23 18:42:09 2004 +0000 14580 14581 Merging XORG-CURRENT into trunk 14582 14583commit c3c4ddc682950a01b80825021f3e2503ab01ea7f 14584Author: Kaleb Keithley <kaleb@freedesktop.org> 14585Date: Tue Nov 25 19:28:07 2003 +0000 14586 14587 Initial revision 14588 14589commit dc4268a7dadc8da0d561757a68461246728613d3 14590Author: Kaleb Keithley <kaleb@freedesktop.org> 14591Date: Fri Nov 14 16:48:47 2003 +0000 14592 14593 Initial revision 14594 14595commit deae12c6b683898f5213992d561a59d4ea889cca 14596Author: Kaleb Keithley <kaleb@freedesktop.org> 14597Date: Fri Nov 14 15:54:30 2003 +0000 14598 14599 R6.6 is the Xorg base-line 14600