1 commit 540c3ceef2be3e513b18002a858c7a9591dd749a 2 Author: Alan Coopersmith <alan.coopersmith (a] oracle.com> 3 Date: Sun Jan 25 16:14:47 2026 -0800 4 5 libXrandr 1.5.5 6 7 Signed-off-by: Alan Coopersmith <alan.coopersmith (a] oracle.com> 8 9 commit 592eafbb33a67a0bc22d054fcd9f95bb27d825bb 10 Author: Alan Coopersmith <alan.coopersmith (a] oracle.com> 11 Date: Sun Jan 11 11:20:41 2026 -0800 12 13 gitlab CI: drop the ci-fairy check-mr job 14 15 The only thing this checked was the checkbox for allowing maintainers to 16 edit the MR. Changed permissions checks now fail this job but luckily 17 the setting it checked has been the default for years anyway so we can 18 drop it. 19 20 https://gitlab.freedesktop.org/freedesktop/ci-templates/-/issues/81 21 22 Signed-off-by: Alan Coopersmith <alan.coopersmith (a] oracle.com> 23 24 commit 242fae8378b213f8e477bde1c4be2fb654201b3d 25 Author: Alan Coopersmith <alan.coopersmith (a] oracle.com> 26 Date: Tue Jul 15 12:30:04 2025 -0700 27 28 Improve man page formatting 29 30 More closely follow common style as described on 31 https://man7.org/linux/man-pages/man7/man-pages.7.html 32 and fix warnings raised by `mandoc -T lint` and `groff -rCHECKSTYLE=10` 33 34 Signed-off-by: Alan Coopersmith <alan.coopersmith (a] oracle.com> 35 Part-of: <https://gitlab.freedesktop.org/xorg/lib/libxrandr/-/merge_requests/9> 36 37 commit 8bf72e84e3cf0106532c5c7b8b30154ce48c70e0 38 Author: Alan Coopersmith <alan.coopersmith (a] oracle.com> 39 Date: Sun Feb 16 13:42:31 2025 -0800 40 41 meson: Add option to build with meson 42 43 Also updates the gitlab CI config to test both build types 44 and compare the generated output/installed files. 45 46 Signed-off-by: Alan Coopersmith <alan.coopersmith (a] oracle.com> 47 Part-of: <https://gitlab.freedesktop.org/xorg/lib/libxrandr/-/merge_requests/8> 48 49 commit 512bf0b15b5597c721ff8c61083616ca9040fa72 50 Author: Alan Coopersmith <alan.coopersmith (a] oracle.com> 51 Date: Wed Oct 4 15:58:32 2023 -0700 52 53 libXrandr 1.5.4 54 55 Signed-off-by: Alan Coopersmith <alan.coopersmith (a] oracle.com> 56 57 commit 17581a1364ae11060a9c9531882d1be9634d4365 58 Author: Alan Coopersmith <alan.coopersmith (a] oracle.com> 59 Date: Mon Sep 18 15:06:30 2023 -0700 60 61 XRRGetMonitors(): free correct pointer in error path 62 63 If we are dumping an invalid response from the server, make sure 64 to free the pointer returned by malloc, not our pointer to somewhere 65 later in that buffer. 66 67 Fixes: a0df3e1 ("Avoid out of boundary accesses on illegal responses") 68 Reported-by: Gregory James DUCK <gjduck (a] gmail.com> 69 Signed-off-by: Alan Coopersmith <alan.coopersmith (a] oracle.com> 70 71 commit 5b96863cf2a34ee9e72ffc4ec6415bc59b6121fc 72 Author: Alan Coopersmith <alan.coopersmith (a] oracle.com> 73 Date: Tue Mar 7 09:49:14 2023 -0800 74 75 configure: Use LT_INIT from libtool 2 instead of deprecated AC_PROG_LIBTOOL 76 77 AC_PROG_LIBTOOL was replaced by LT_INIT in libtool 2 in 2008, 78 so it's time to rely on it. 79 80 Clears autoconf warnings: 81 82 configure.ac:42: warning: The macro `AC_PROG_LIBTOOL' is obsolete. 83 configure.ac:42: You should run autoupdate. 84 aclocal.m4:3465: AC_PROG_LIBTOOL is expanded from... 85 configure.ac:42: the top level 86 87 libtoolize: Consider adding 'AC_CONFIG_MACRO_DIRS([m4])' to configure.ac, 88 libtoolize: and rerunning libtoolize and aclocal. 89 90 Signed-off-by: Alan Coopersmith <alan.coopersmith (a] oracle.com> 91 92 commit 1ef3ad373c796897f770bba6fb16befddc3146a3 93 Author: Alan Coopersmith <alan.coopersmith (a] oracle.com> 94 Date: Sat Feb 25 09:29:25 2023 -0800 95 96 Remove "All rights reserved" from Oracle copyright notices 97 98 Oracle no longer includes this term in our copyright & license notices. 99 100 Signed-off-by: Alan Coopersmith <alan.coopersmith (a] oracle.com> 101 102 commit 3387129532899eaeee3477a2d92fa662d7292a84 103 Author: Alan Coopersmith <alan.coopersmith (a] oracle.com> 104 Date: Sun Nov 20 08:54:24 2022 -0800 105 106 libXrandr 1.5.3 107 108 Signed-off-by: Alan Coopersmith <alan.coopersmith (a] oracle.com> 109 110 commit 7181160b2c32b1bb804792990783fa25c1122bae 111 Author: Alan Coopersmith <alan.coopersmith (a] oracle.com> 112 Date: Mon Oct 17 17:57:19 2022 -0700 113 114 Remove unnecessary casts of return values from malloc() 115 116 Not needed in C89 and later 117 118 Signed-off-by: Alan Coopersmith <alan.coopersmith (a] oracle.com> 119 120 commit 8710ed270fbb9ec905b906826cb09095c57003f8 121 Author: Alan Coopersmith <alan.coopersmith (a] oracle.com> 122 Date: Mon Oct 17 17:24:23 2022 -0700 123 124 Variable scope reductions as recommended by cppcheck 125 126 Signed-off-by: Alan Coopersmith <alan.coopersmith (a] oracle.com> 127 128 commit 684ed1b997f9e8a2fe2219524c1dea04b20a7e25 129 Author: Alan Coopersmith <alan.coopersmith (a] oracle.com> 130 Date: Mon Oct 17 16:45:38 2022 -0700 131 132 XRRGetProviderInfo: Remove unneeded ProviderInfoExtra 133 134 It was always 0, hence caused gcc warnings: 135 136 XrrProvider.c: In function XRRGetProviderInfo: 137 XrrProvider.c:133:49: warning: comparison of unsigned expression < 0 is always false [-Wtype-limits] 138 if (rep.length > INT_MAX >> 2 || rep.length < ProviderInfoExtra >> 2) 139 ^ 140 XrrProvider.c:135:17: warning: comparison of unsigned expression < 0 is always false [-Wtype-limits] 141 if (rep.length < ProviderInfoExtra >> 2) 142 ^ 143 XrrProvider.c:135:5: warning: this condition has identical branches [-Wduplicated-branches] 144 if (rep.length < ProviderInfoExtra >> 2) 145 ^ 146 147 Signed-off-by: Alan Coopersmith <alan.coopersmith (a] oracle.com> 148 149 commit 8ddb2aefcda77709cf98f15fbcb7d97a2d00ab7d 150 Author: Alan Coopersmith <alan.coopersmith (a] oracle.com> 151 Date: Mon Oct 17 16:36:01 2022 -0700 152 153 Xrandr.h: remove misleading comment for XRRGetScreenSizeRange() 154 155 Closes: #7 156 Fixes: 5e94f07 ("GetScreenSizeRange: Document funky return code in the header") 157 158 Signed-off-by: Alan Coopersmith <alan.coopersmith (a] oracle.com> 159 160 commit d66693441f688867e6fd4a5d4a4bdade9a338755 161 Author: Alan Coopersmith <alan.coopersmith (a] oracle.com> 162 Date: Sun Jul 17 17:32:18 2022 -0700 163 164 gitlab CI: add a basic build test 165 166 Signed-off-by: Alan Coopersmith <alan.coopersmith (a] oracle.com> 167 168 commit e4c7841eb916f8ad65bfe63daef0f1e81252c704 169 Author: Alan Coopersmith <alan.coopersmith (a] oracle.com> 170 Date: Sun Jul 17 17:31:20 2022 -0700 171 172 Fix spelling/wording issues 173 174 Found by using: 175 codespell --builtin clear,rare,usage,informal,code,names 176 177 Signed-off-by: Alan Coopersmith <alan.coopersmith (a] oracle.com> 178 179 commit be3c7a7621e89bbde2884585179b9e4c5b9e6639 180 Author: Alan Coopersmith <alan.coopersmith (a] oracle.com> 181 Date: Sun Jul 17 17:29:30 2022 -0700 182 183 Build xz tarballs instead of bzip2 184 185 Signed-off-by: Alan Coopersmith <alan.coopersmith (a] oracle.com> 186 187 commit 55dcda4518eda8ae03ef25ea29d3c994ad71eb0a 188 Author: Alan Coopersmith <alan.coopersmith (a] oracle.com> 189 Date: Sat Mar 16 13:54:20 2019 -0700 190 191 libXrandr 1.5.2 192 193 Signed-off-by: Alan Coopersmith <alan.coopersmith (a] oracle.com> 194 195 commit 2a03e8d069fce635981aad248e1cab14ed93e176 196 Author: Alan Coopersmith <alan.coopersmith (a] oracle.com> 197 Date: Sat Mar 16 13:53:42 2019 -0700 198 199 Add description of libXrandr to README.md 200 201 Signed-off-by: Alan Coopersmith <alan.coopersmith (a] oracle.com> 202 203 commit 583d4f114d36e4df87ba3ed1201acae4aefb68dc 204 Author: Alan Coopersmith <alan.coopersmith (a] oracle.com> 205 Date: Fri Dec 7 19:48:28 2018 -0800 206 207 Update configure.ac bug URL for gitlab migration 208 209 Signed-off-by: Alan Coopersmith <alan.coopersmith (a] oracle.com> 210 211 commit 08fab8367ea5357314d1c54edac04bc6a38da074 212 Author: Alan Coopersmith <alan.coopersmith (a] oracle.com> 213 Date: Mon Nov 19 22:35:01 2018 -0800 214 215 Update README for gitlab migration 216 217 Signed-off-by: Alan Coopersmith <alan.coopersmith (a] oracle.com> 218 219 commit 87227e5fc79750d3eccc3c3482a3c5b3f2af2e90 220 Author: Tobias Stoeckmann <tobias (a] stoeckmann.org> 221 Date: Sat Jan 28 15:37:57 2017 +0100 222 223 Fix memory leak on error paths 224 225 Introduced in commit a0df3e1c7728205e5c7650b2e6dce684139254a6 "Avoid out 226 of boundary accesses on illegal responses" 227 228 Signed-off-by: Julien Cristau <jcristau (a] debian.org> 229 230 commit 5fb14f7a2c6da81c8e6bb325b354141233ab7d0a 231 Author: Mihail Konev <k.mvc (a] ya.ru> 232 Date: Thu Jan 26 13:52:49 2017 +1000 233 234 autogen: add default patch prefix 235 236 Signed-off-by: Mihail Konev <k.mvc (a] ya.ru> 237 238 commit e0303d9c61d55081ffe4365a24107d851f457948 239 Author: Emil Velikov <emil.l.velikov (a] gmail.com> 240 Date: Mon Mar 9 12:00:52 2015 +0000 241 242 autogen.sh: use quoted string variables 243 244 Place quotes around the $srcdir, $ORIGDIR and $0 variables to prevent 245 fall-outs, when they contain space. 246 247 Signed-off-by: Emil Velikov <emil.l.velikov (a] gmail.com> 248 Reviewed-by: Peter Hutterer <peter.hutterer (a] who-t.net> 249 Signed-off-by: Peter Hutterer <peter.hutterer (a] who-t.net> 250 251 commit f26e07fa0fdb7f5cb5c82a3bb0ab5494fe3faa29 252 Author: Peter Hutterer <peter.hutterer (a] who-t.net> 253 Date: Tue Jan 24 10:32:07 2017 +1000 254 255 autogen.sh: use exec instead of waiting for configure to finish 256 257 Syncs the invocation of configure with the one from the server. 258 259 Signed-off-by: Peter Hutterer <peter.hutterer (a] who-t.net> 260 Reviewed-by: Emil Velikov <emil.velikov (a] collabora.com> 261 262 commit 54ac1eb5d14636002b018607227c6d52cca0b754 263 Author: Matthieu Herrb <matthieu.herrb (a] laas.fr> 264 Date: Tue Oct 4 21:23:23 2016 +0200 265 266 libXrandr 1.5.1 267 268 Signed-off-by: Matthieu Herrb <matthieu.herrb (a] laas.fr> 269 270 commit a0df3e1c7728205e5c7650b2e6dce684139254a6 271 Author: Tobias Stoeckmann <tobias (a] stoeckmann.org> 272 Date: Sun Sep 25 22:21:40 2016 +0200 273 274 Avoid out of boundary accesses on illegal responses 275 276 The responses of the connected X server have to be properly checked 277 to avoid out of boundary accesses that could otherwise be triggered 278 by a malicious server. 279 280 Signed-off-by: Tobias Stoeckmann <tobias (a] stoeckmann.org> 281 Reviewed-by: Matthieu Herrb <matthieu (a] herrb.eu> 282 283 commit 8ac94020b018105240ea45a87df2603d1eb5808b 284 Author: walter harms <wharms (a] bfs.de> 285 Date: Thu Jul 28 19:32:46 2016 +0200 286 287 fix: redundant null check on calling free() 288 289 janitorial patch: remove some unneeded if() before free() 290 291 Signed-off-by: Hans de Goede <hdegoede (a] redhat.com> 292 293 commit 4ed36e386b21c1a65d614d5bf2b2c82d1e74ae2e 294 Author: walter harms <wharms (a] bfs.de> 295 Date: Thu Jul 28 19:31:10 2016 +0200 296 297 fix: doGetScreenResources() info: redundant null check on calling free() 298 299 janitorial patch: remove some unneeded if() before free() 300 301 Signed-off-by: Hans de Goede <hdegoede (a] redhat.com> 302 303 commit 4437436906cbba5121115e552d564262e8b4c784 304 Author: Keith Packard <keithp (a] keithp.com> 305 Date: Tue Dec 16 01:55:30 2014 -0800 306 307 Add monitors, update to version 1.5 (v2) 308 309 v2: [airlied] 310 xrandr was giving the outputs from 0 for each monitor instead of 311 incrementing the pointer. 312 add get_active support. 313 314 Reviewed-by: Dave Airlie <airlied (a] redhat.com> 315 Signed-off-by: Keith Packard <keithp (a] keithp.com> 316 317 commit 7402eaa0185110a60cf4aae32d7b470c1372b45b 318 Author: Keith Packard <keithp (a] keithp.com> 319 Date: Tue Dec 16 17:05:18 2014 -0800 320 321 libXrandr: Clean up compiler warnings 322 323 This removes warnings about shadowing local variables with the same 324 name, and type mismatches with _XRead32. 325 326 Reviewed-by: Dave Airlie <airlied (a] redhat.com> 327 Signed-off-by: Keith Packard <keithp (a] keithp.com> 328 329 commit bc00b4fb0b52ed2f6f8544fa3b5da9693ee7ed90 330 Author: Michael Joost <mehl (a] michael-joost.de> 331 Date: Mon Nov 18 16:11:26 2013 +0100 332 333 Remove fallback for _XEatDataWords, require libX11 1.6 for it 334 335 _XEatDataWords was orignally introduced with the May 2013 security 336 patches, and in order to ease the process of delivering those, 337 fallback versions of _XEatDataWords were included in the X extension 338 library patches so they could be applied to older versions that didn't 339 have libX11 1.6 yet. Now that we're past that hurdle, we can drop 340 the fallbacks and just require libX11 1.6 for building new versions 341 of the extension libraries. 342 343 Reviewed-by: Alan Coopersmith <alan.coopersmith (a] oracle.com> 344 Signed-off-by: Alan Coopersmith <alan.coopersmith (a] oracle.com> 345 346 commit 30a7b506ae2071b8d265ce4eaeed1af60bc7ee7b 347 Author: Alan Coopersmith <alan.coopersmith (a] oracle.com> 348 Date: Sat Sep 7 21:50:49 2013 -0700 349 350 libXrandr 1.4.2 351 352 Signed-off-by: Alan Coopersmith <alan.coopersmith (a] oracle.com> 353 354 commit 293d6b579b243574d98bd5974cce6e5fe48e7613 355 Author: Alan Coopersmith <alan.coopersmith (a] oracle.com> 356 Date: Sat Sep 7 21:49:52 2013 -0700 357 358 Add copyright notice from src/XrrProvider.c to COPYING 359 360 Signed-off-by: Alan Coopersmith <alan.coopersmith (a] oracle.com> 361 362 commit 4e4bbb85499cff052ce03e173b88f1083ba83f86 363 Author: Pauli Nieminen <ext-pauli.nieminen (a] nokia.com> 364 Date: Mon Jun 14 13:45:08 2010 +0300 365 366 XRRUpdateConfiguration: Check if getting screen for root fails 367 368 XRRRootToScreen might return -1 if it fails to find screen for the root 369 window. Following code uses screen number unconditionally to index the 370 screen array. 371 372 Signed-off-by: Pauli Nieminen <ext-pauli.nieminen (a] nokia.com> 373 Reviewed-by: Alan Coopersmith <alan.coopersmith (a] oracle.com> 374 Signed-off-by: Alan Coopersmith <alan.coopersmith (a] oracle.com> 375 376 commit 9e4abe746786f0f632d1f82f99fe0c6b8ffedf9e 377 Author: Alan Coopersmith <alan.coopersmith (a] oracle.com> 378 Date: Sun Jun 30 16:52:59 2013 -0700 379 380 XRRGetProviderInfo returned bad associated_capability list in 64-bit 381 382 Unlike most of the values returned by this function, which are arrays 383 of XIDs (long int), associated_capability is defined as an array of 384 unsigned int. _XRead32 reads 32-bit values from the wire protocol 385 and writes them to the provided buffer as an array of long ints, even 386 if that means expanding them from 32-bit to 64-bit. Doing that for 387 associated_capability resulted in a garbage value between each actual 388 value, and overflowing the provided buffer into the space for the 389 provider name (which is written later and would overwrite the overflowed 390 data). 391 392 Created xhiv libXrandr/XRRGetProviderInfo test case to test & confirm. 393 394 Signed-off-by: Alan Coopersmith <alan.coopersmith (a] oracle.com> 395 Reviewed-by: Dave Airlie <airlied (a] redhat.com> 396 397 commit f97d44f8fb9f90ce3227cca8affd3b947e9b08ca 398 Author: Alan Coopersmith <alan.coopersmith (a] oracle.com> 399 Date: Fri May 31 15:52:23 2013 -0700 400 401 libXrandr 1.4.1 402 403 Signed-off-by: Alan Coopersmith <alan.coopersmith (a] oracle.com> 404 405 commit c90f74497dbcb96854346435349c6e2207b530c5 406 Author: Alan Coopersmith <alan.coopersmith (a] oracle.com> 407 Date: Sat May 4 21:47:50 2013 -0700 408 409 Make XRRGet*Property() always initialize returned values 410 411 Avoids memory corruption and other errors when callers access them 412 without checking to see if the calls returned an error value. 413 414 Callers are still required to check for errors, this just reduces the 415 damage when they don't. 416 417 (Same as reported against libX11 XGetWindowProperty by Ilja Van Sprundel) 418 419 Signed-off-by: Alan Coopersmith <alan.coopersmith (a] oracle.com> 420 421 commit 4254bf0ee4c7a8f9d03841cf0d8e16cbb201dfbd 422 Author: Alan Coopersmith <alan.coopersmith (a] oracle.com> 423 Date: Sat May 4 21:37:49 2013 -0700 424 425 integer overflow in XRRGetProviderProperty() [CVE-2013-1986 4/4] 426 427 If the reported number of properties is too large, the calculations 428 to allocate memory for them may overflow, leaving us returning less 429 memory to the caller than implied by the value written to *nitems. 430 431 (Same as reported against libX11 XGetWindowProperty by Ilja Van Sprundel) 432 433 Signed-off-by: Alan Coopersmith <alan.coopersmith (a] oracle.com> 434 435 commit 289a1927949e6f278c18d115772e454837702e35 436 Author: Alan Coopersmith <alan.coopersmith (a] oracle.com> 437 Date: Sat May 4 21:37:49 2013 -0700 438 439 integer overflow in XRRGetOutputProperty() [CVE-2013-1986 3/4] 440 441 If the reported number of properties is too large, the calculations 442 to allocate memory for them may overflow, leaving us returning less 443 memory to the caller than implied by the value written to *nitems. 444 445 (Same as reported against libX11 XGetWindowProperty by Ilja Van Sprundel) 446 447 Signed-off-by: Alan Coopersmith <alan.coopersmith (a] oracle.com> 448 449 commit 1da5b838c2a8565d4d95a4e948f951ce6b466345 450 Author: Alan Coopersmith <alan.coopersmith (a] oracle.com> 451 Date: Fri Apr 12 21:44:59 2013 -0700 452 453 integer overflow in XRRQueryProviderProperty() [CVE-2013-1986 2/4] 454 455 Same problem as XRRQueryOutputProperty() that it was cloned from 456 457 Signed-off-by: Alan Coopersmith <alan.coopersmith (a] oracle.com> 458 459 commit 0e79d96c36aef5889ae2e2a3fc2e96e93f30dc21 460 Author: Alan Coopersmith <alan.coopersmith (a] oracle.com> 461 Date: Fri Apr 12 21:44:59 2013 -0700 462 463 integer overflow in XRRQueryOutputProperty() [CVE-2013-1986 1/4] 464 465 rep.length is a CARD32, while rbytes was a signed int, so 466 rbytes = sizeof (XRRPropertyInfo) + rep.length * sizeof (long); 467 could result in integer overflow, leading to an undersized malloc 468 and reading data off the connection and writing it past the end of 469 the allocated buffer. 470 471 Reported-by: Ilja Van Sprundel <ivansprundel (a] ioactive.com> 472 Signed-off-by: Alan Coopersmith <alan.coopersmith (a] oracle.com> 473 474 commit 1c7ad6773ce6be00dcd6e51e9be08f203abe5071 475 Author: Alan Coopersmith <alan.coopersmith (a] oracle.com> 476 Date: Fri May 3 23:29:22 2013 -0700 477 478 Use _XEatDataWords to avoid overflow of rep.length bit shifting 479 480 rep.length is a CARD32, so rep.length << 2 could overflow in 32-bit builds 481 482 Signed-off-by: Alan Coopersmith <alan.coopersmith (a] oracle.com> 483 484 commit 99a63d10cbbab7d69a52d25d78795a3278506ea9 485 Author: Alan Coopersmith <alan.coopersmith (a] oracle.com> 486 Date: Fri Jan 18 23:14:01 2013 -0800 487 488 Replace deprecated Automake INCLUDES variable with AM_CPPFLAGS 489 490 Excerpt https://lists.gnu.org/archive/html/automake/2012-12/msg00038.html 491 492 - Support for the long-deprecated INCLUDES variable will be removed 493 altogether in Automake 1.14. The AM_CPPFLAGS variable should be 494 used instead. 495 496 This variable was deprecated in Automake releases prior to 1.10, which is 497 the current minimum level required to build X. 498 499 Signed-off-by: Alan Coopersmith <alan.coopersmith (a] oracle.com> 500 501 commit 150cf8788a94fc5fb519764e1d46cb520c1d4043 502 Author: Colin Walters <walters (a] verbum.org> 503 Date: Wed Jan 4 17:37:06 2012 -0500 504 505 autogen.sh: Implement GNOME Build API 506 507 http://people.gnome.org/~walters/docs/build-api.txt 508 509 Signed-off-by: Adam Jackson <ajax (a] redhat.com> 510 511 commit c3486bccee2aaa2668f7d24d3e1bc01f3832f301 512 Author: Adam Jackson <ajax (a] redhat.com> 513 Date: Tue Jan 15 14:28:48 2013 -0500 514 515 configure: Remove AM_MAINTAINER_MODE 516 517 Signed-off-by: Adam Jackson <ajax (a] redhat.com> 518 519 commit 6dfe7d4fa04a5054ee3daeb654ac5a763f37fed1 520 Author: Alan Coopersmith <alan.coopersmith (a] oracle.com> 521 Date: Fri Aug 31 21:39:10 2012 -0700 522 523 Constify a couple string arguments that are just copied, not modified 524 525 Fixes compiler warnings when building app/xrandr: 526 527 xrandr.c: In function crtc_set_transform: 528 xrandr.c:1459:9: warning: passing argument 4 of XRRSetCrtcTransform discards qualifiers from pointer target type 529 X11/extensions/Xrandr.h:419:1: note: expected char * but argument is of type const char * 530 531 Signed-off-by: Alan Coopersmith <alan.coopersmith (a] oracle.com> 532 Reviewed-by: Aaron Plattner <aplattner (a] nvidia.com> 533 534 commit 39976a7d1cc9e737e662695ae5326af805c50a27 535 Author: Dave Airlie <airlied (a] redhat.com> 536 Date: Thu Jul 26 14:15:18 2012 +1000 537 538 libXrandr: bump to 1.4.0 for release 539 540 This adds support for the provider queries and events. 541 542 Signed-off-by: Dave Airlie <airlied (a] redhat.com> 543 544 commit 5d2edde0bf8460aab250dd83743aedb5c66a243e 545 Author: Dave Airlie <airlied (a] redhat.com> 546 Date: Fri Jan 20 17:40:10 2012 +0000 547 548 libXrandr: add support for provider objects. 549 550 This adds the client side libXrandr support for randr 1.4, 551 and provider objects. 552 553 Signed-off-by: Dave Airlie <airlied (a] redhat.com> 554 555 commit a9457b44539420c0b7a082ef6ecc5fd3391e8801 556 Author: Daniel Stone <daniel (a] fooishbar.org> 557 Date: Tue Jul 27 17:47:12 2010 +0100 558 559 Fill in nameLen in XRROutputInfo 560 561 Even though it probably makes more sense to just strlen() the name, for 562 some reason there's a nameLen field in XRROutputInfo, so might as well 563 actually fill it in. 564 565 Signed-off-by: Daniel Stone <daniel (a] fooishbar.org> 566 Reported-by: Leif Middelschulte <leif.middelschulte (a] gmail.com> 567 568 commit a0e20c08bbe18b41ea54c319bd83874b5a7f9788 569 Author: Alan Coopersmith <alan.coopersmith (a] oracle.com> 570 Date: Fri Sep 16 22:50:38 2011 -0700 571 572 Strip trailing whitespace 573 574 Performed with: find * -type f | xargs perl -i -p -e 's{[ \t]+$}{}' 575 git diff -w & git diff -b show no diffs from this change 576 577 Signed-off-by: Alan Coopersmith <alan.coopersmith (a] oracle.com> 578 579 commit 754b492ddf490682c5fff2518a36d0afb5655a36 580 Author: Alan Coopersmith <alan.coopersmith (a] oracle.com> 581 Date: Wed Jun 29 21:50:39 2011 -0700 582 583 libXrandr 1.3.2 584 585 Signed-off-by: Alan Coopersmith <alan.coopersmith (a] oracle.com> 586 587 commit 2a8e4e3b6c28d095e315da6874a72e05ef113edb 588 Author: Cyril Brulebois <kibi (a] debian.org> 589 Date: Thu Mar 31 03:43:57 2011 +0200 590 591 Xrandr.man: Document how to request notifications. 592 593 Reviewed-by: Peter Hutterer <peter.hutterer (a] who-t.net> 594 Reviewed-by: Alan Coopersmith <alan.coopersmith (a] oracle.com> 595 Signed-off-by: Cyril Brulebois <kibi (a] debian.org> 596 597 commit 7613d6e70c4af791bdb3e005a6231f1d4d14745c 598 Author: Cyril Brulebois <kibi (a] debian.org> 599 Date: Thu Mar 3 16:17:51 2011 +0100 600 601 Xrandr.man: Fix parenthesis escaping. 602 603 Reviewed-by: Peter Hutterer <peter.hutterer (a] who-t.net> 604 Reviewed-by: Alan Coopersmith <alan.coopersmith (a] oracle.com> 605 Signed-off-by: Cyril Brulebois <kibi (a] debian.org> 606 607 commit d0b9b06d2d0b85da3eb89adf4abd973b092201df 608 Author: Cyril Brulebois <kibi (a] debian.org> 609 Date: Thu Mar 3 16:01:56 2011 +0100 610 611 Xrandr.man: Fix missing closing parenthesis. 612 613 Also fix the closing tag (\fP instead of \fI). 614 615 Reviewed-by: Peter Hutterer <peter.hutterer (a] who-t.net> 616 Reviewed-by: Alan Coopersmith <alan.coopersmith (a] oracle.com> 617 Signed-off-by: Cyril Brulebois <kibi (a] debian.org> 618 619 commit cf351e133c71fdae77c961373e01258404a5ff7f 620 Author: Cyril Brulebois <kibi (a] debian.org> 621 Date: Thu Mar 3 15:54:58 2011 +0100 622 623 Xrandr.man: Build full sentences for easier reading. 624 625 Reviewed-by: Peter Hutterer <peter.hutterer (a] who-t.net> 626 Reviewed-by: Alan Coopersmith <alan.coopersmith (a] oracle.com> 627 Signed-off-by: Cyril Brulebois <kibi (a] debian.org> 628 629 commit e92474f36a2157ce8939b143e077d9342638e74a 630 Author: Cyril Brulebois <kibi (a] debian.org> 631 Date: Thu Mar 3 15:52:58 2011 +0100 632 633 Xrandr.man: Fix typo. 634 635 Reviewed-by: Peter Hutterer <peter.hutterer (a] who-t.net> 636 Reviewed-by: Alan Coopersmith <alan.coopersmith (a] oracle.com> 637 Signed-off-by: Cyril Brulebois <kibi (a] debian.org> 638 639 commit d77cd6cc30bd9ebaea7c3b1c97e6984844a607f9 640 Author: Cyril Brulebois <kibi (a] debian.org> 641 Date: Thu Mar 3 15:50:08 2011 +0100 642 643 Xrandr.man: Try to make some sense. 644 645 Reviewed-by: Peter Hutterer <peter.hutterer (a] who-t.net> 646 Reviewed-by: Alan Coopersmith <alan.coopersmith (a] oracle.com> 647 Reviewed-by: Magnus Kessler <Magnus.Kessler (a] gmx.net> 648 Signed-off-by: Cyril Brulebois <kibi (a] debian.org> 649 650 commit 58b664ba4c8c8d34a2c6169dbaf55f0d21fc0139 651 Author: Cyril Brulebois <kibi (a] debian.org> 652 Date: Thu Mar 3 15:49:57 2011 +0100 653 654 Xrandr.man: Build full sentences, possibly easier to read. 655 656 Reviewed-by: Peter Hutterer <peter.hutterer (a] who-t.net> 657 Reviewed-by: Alan Coopersmith <alan.coopersmith (a] oracle.com> 658 Signed-off-by: Cyril Brulebois <kibi (a] debian.org> 659 660 commit dfb543b9061428e745b7a1b5910c46ffa46fadf5 661 Author: Cyril Brulebois <kibi (a] debian.org> 662 Date: Thu Mar 3 15:34:41 2011 +0100 663 664 Xrandr.man: Fix grammar. 665 666 Reviewed-by: Peter Hutterer <peter.hutterer (a] who-t.net> 667 Reviewed-by: Alan Coopersmith <alan.coopersmith (a] oracle.com> 668 Signed-off-by: Cyril Brulebois <kibi (a] debian.org> 669 670 commit f340f5b117b69cccabf9b3a0f2834a4b6aae057e 671 Author: Cyril Brulebois <kibi (a] debian.org> 672 Date: Thu Mar 3 15:32:03 2011 +0100 673 674 Xrandr.man: Remove trailing spaces. 675 676 Reviewed-by: Peter Hutterer <peter.hutterer (a] who-t.net> 677 Reviewed-by: Alan Coopersmith <alan.coopersmith (a] oracle.com> 678 Signed-off-by: Cyril Brulebois <kibi (a] debian.org> 679 680 commit 2da3bb5e59db3ed5f689686774dd051766dd39a6 681 Author: Gaetan Nadon <memsize (a] videotron.ca> 682 Date: Wed Feb 2 11:43:44 2011 -0500 683 684 config: comment, minor upgrade, quote and layout configure.ac 685 686 Group statements per section as per Autoconf standard layout 687 Quote statements where appropriate. 688 Autoconf recommends not using dnl instead of # for comments 689 690 Use AC_CONFIG_FILES to replace the deprecated AC_OUTPUT with parameters. 691 Add AC_CONFIG_SRCDIR([Makefile.am]) 692 693 This helps automated maintenance and release activities. 694 Details can be found in http://wiki.x.org/wiki/NewModuleGuidelines 695 696 commit 04d5ffa04c2255025580ce1740c3f0bb2146e716 697 Author: Gaetan Nadon <memsize (a] videotron.ca> 698 Date: Fri Jan 28 19:41:37 2011 -0500 699 700 config: replace deprecated AM_CONFIG_HEADER with AC_CONFIG_HEADERS 701 702 Signed-off-by: Gaetan Nadon <memsize (a] videotron.ca> 703 704 commit ae18cc9cd98f4db512a21e0b4e1cb18a69fcf532 705 Author: Gaetan Nadon <memsize (a] videotron.ca> 706 Date: Fri Jan 28 16:34:14 2011 -0500 707 708 config: remove unrequired AC_CONFIG_AUX_DIR 709 710 The default location for the generation of configuation files is the current 711 package root directory. These files are config.* and friends. 712 713 Signed-off-by: Gaetan Nadon <memsize (a] videotron.ca> 714 715 commit c1c5283f37387fbae7772e1dcd56528a515f0a23 716 Author: Gaetan Nadon <memsize (a] videotron.ca> 717 Date: Thu Jan 27 18:50:15 2011 -0500 718 719 config: remove AC_PROG_CC as it overrides AC_PROG_C_C99 720 721 XORG_STRICT_OPTION from XORG_DEFAULT_OPTIONS calls 722 AC_PROG_C_C99. This sets gcc with -std=gnu99. 723 If AC_PROG_CC macro is called afterwards, it resets CC to gcc. 724 725 Signed-off-by: Gaetan Nadon <memsize (a] videotron.ca> 726 727 commit b7e31c69d345d3cba359d7648c304cff43ff7437 728 Author: Alan Coopersmith <alan.coopersmith (a] oracle.com> 729 Date: Thu Oct 28 12:34:26 2010 -0700 730 731 libXrandr 1.3.1 732 733 Signed-off-by: Alan Coopersmith <alan.coopersmith (a] oracle.com> 734 735 commit f490ed44a1c85c75183d87d034b94f9973b88abd 736 Author: Alan Coopersmith <alan.coopersmith (a] oracle.com> 737 Date: Thu Oct 28 12:30:27 2010 -0700 738 739 Fix configure.ac comment for RandR instead of Render 740 741 Signed-off-by: Alan Coopersmith <alan.coopersmith (a] oracle.com> 742 743 commit 95cf69bd452db86b6aefe3837e1f7010ebf21e80 744 Author: Alan Coopersmith <alan.coopersmith (a] oracle.com> 745 Date: Thu Oct 28 12:27:30 2010 -0700 746 747 Sun's copyrights now belong to Oracle 748 749 Signed-off-by: Alan Coopersmith <alan.coopersmith (a] oracle.com> 750 751 commit 12f22e0ae0cbd748b416c7e2486f289f89c5c77c 752 Author: Jesse Adkins <jesserayadkins (a] gmail.com> 753 Date: Tue Sep 28 13:30:03 2010 -0700 754 755 Purge cvs tags. 756 757 Signed-off-by: Jesse Adkins <jesserayadkins (a] gmail.com> 758 Signed-off-by: Alan Coopersmith <alan.coopersmith (a] oracle.com> 759 760 commit 247ad2a3865ba503e6c77444f855c71e7a210f13 761 Author: Gaetan Nadon <memsize (a] videotron.ca> 762 Date: Tue Aug 17 07:57:08 2010 -0400 763 764 man: store shadow man pages in git rather than generating them 765 766 Simplify the build process and the makefile. 767 768 Local fix in CVS for bug 5628 is not required 769 as the problem has been fixed in 770 util-macros d9062e4077ebfd0985baf8418f3d0f111b9ddbba 771 772 Signed-off-by: Gaetan Nadon <memsize (a] videotron.ca> 773 774 commit 8f23ad4703c7fcfdd7d53d52ddebb7590c3cb265 775 Author: Alan Coopersmith <alan.coopersmith (a] oracle.com> 776 Date: Thu Jul 8 14:40:39 2010 -0700 777 778 Use make rules instead of shell for loops to generate shadow man pages 779 780 Allows parallel make and simpler build logs/error reporting 781 782 Signed-off-by: Alan Coopersmith <alan.coopersmith (a] oracle.com> 783 784 commit 82bc24d6137cc4f03944af88e69c4d67b26d3cc9 785 Author: Alan Coopersmith <alan.coopersmith (a] oracle.com> 786 Date: Thu Jul 8 14:34:18 2010 -0700 787 788 config: upgrade to util-macros 1.8 for additional man page support 789 790 Use MAN_SUBST now supplied in XORG_MANPAGE_SECTIONS 791 The value of MAN_SUBST is the same for all X.Org packages. 792 793 Use AC_PROG_SED now supplied by XORG_DEFAULT_OPTIONS 794 The existing statement can now be removed from the configuration file. 795 796 Use automake provided $(AM_V_GEN) and XORG_DEFAULT_OPTIONS provided $(SED) 797 Enables silent rule and use platform appropriate version of sed. 798 799 Signed-off-by: Alan Coopersmith <alan.coopersmith (a] oracle.com> 800 801 commit 2e5c60f477fc68634f1fa31a2fc4a166642ab318 802 Author: Fernando Carrijo <fcarrijo (a] yahoo.com.br> 803 Date: Thu Jul 1 07:01:47 2010 -0300 804 805 Purge macros NEED_EVENTS and NEED_REPLIES 806 807 Signed-off-by: Fernando Carrijo <fcarrijo (a] yahoo.com.br> 808 Acked-by: Tiago Vignatti <tiago.vignatti (a] nokia.com> 809 Reviewed-by: Alan Coopersmith <alan.coopersmith (a] oracle.com> 810 811 commit 18517a55d08cdcf9e29bed6761cf4311e1d4109f 812 Author: Leif Middelschulte <leif.middelschulte (a] gmail.com> 813 Date: Tue May 25 14:52:50 2010 -0300 814 815 Add parameter safety check 816 817 As mentioned in bugzilla ticket 28150. 818 Calling '_XRRValidateCache' with 'improper' arguments results in a SEGV. 819 This patch adds a parameter validation to the mentioned function. 820 821 Signed-off-by: Leif Middelschulte <leif.middelschulte (a] gmail.com> 822 Signed-off-by: Peter Hutterer <peter.hutterer (a] who-t.net> 823 824 commit 7a7bac907ac15033c0ddb979202c7f3ddc368726 825 Author: Gaetan Nadon <memsize (a] videotron.ca> 826 Date: Mon Mar 29 16:50:34 2010 -0400 827 828 config: update AC_PREREQ statement to 2.60 829 830 Unrelated to the previous patches, the new value simply reflects 831 the reality that the minimum level for autoconf to configure 832 all x.org modules is 2.60 dated June 2006. 833 834 ftp://ftp.gnu.org/gnu/autoconf/autoconf-2.60.tar.gz 835 836 Signed-off-by: Gaetan Nadon <memsize (a] videotron.ca> 837 838 commit 883acff30b23c2bdf446988ff7b780cd61e49a5e 839 Author: Gaetan Nadon <memsize (a] videotron.ca> 840 Date: Mon Mar 29 14:53:49 2010 -0400 841 842 config: remove the pkgconfig pc.in file from EXTRA_DIST 843 844 Automake always includes it in the tarball. 845 846 Signed-off-by: Gaetan Nadon <memsize (a] videotron.ca> 847 848 commit 74bb9072015b8a785f6b6458ba0605287a1ffcaf 849 Author: Gaetan Nadon <memsize (a] videotron.ca> 850 Date: Tue Feb 16 10:37:21 2010 -0500 851 852 config: move CWARNFLAGS from configure.ac to Makefile.am 853 854 Compiler warning flags should be explicitly set in the makefile 855 rather than being merged with other packages compiler flags. 856 857 Signed-off-by: Gaetan Nadon <memsize (a] videotron.ca> 858 859 commit 449d22180549d990ad3164c98b22968359b55df2 860 Author: Gaetan Nadon <memsize (a] videotron.ca> 861 Date: Thu Jan 14 09:41:26 2010 -0500 862 863 COPYING: add missing copyright notices 864 865 Refer to: Xrandr.h XrrConfig.c 866 Copyright 2006 Intel Corporation 867 Copyright 2008 Red Hat, Inc. 868 Copyright 2006 Keith Packard 869 870 Signed-off-by: Gaetan Nadon <memsize (a] videotron.ca> 871 872 commit 51887f07a7722576933ddcc00c5380266d6fa37c 873 Author: Alan Coopersmith <alan.coopersmith (a] sun.com> 874 Date: Thu Jan 14 21:02:20 2010 -0800 875 876 Update Sun license notices to current X.Org standard form 877 878 Signed-off-by: Alan Coopersmith <alan.coopersmith (a] sun.com> 879 880 commit cd6fcaeaf0da7ca66ec0ab63ce282def37c21c3b 881 Author: Gaetan Nadon <memsize (a] videotron.ca> 882 Date: Fri Nov 27 20:56:04 2009 -0500 883 884 Makefile.am: add ChangeLog and INSTALL on MAINTAINERCLEANFILES 885 886 Now that the INSTALL file is generated. 887 Allows running make maintainer-clean. 888 889 commit 61c4a57286b601ff266a15565740aea31e68d1bb 890 Author: Gaetan Nadon <memsize (a] videotron.ca> 891 Date: Wed Oct 28 14:09:10 2009 -0400 892 893 INSTALL, NEWS, README or AUTHORS files are missing/incorrect #24206 894 895 Add missing INSTALL file. Use standard GNU file on building tarball 896 README may have been updated 897 Remove AUTHORS file as it is empty and no content available yet. 898 Remove NEWS file as it is empty and no content available yet. 899 900 commit 170a3efb274d473165a8d6085c185792b1c43005 901 Author: Gaetan Nadon <memsize (a] videotron.ca> 902 Date: Tue Oct 27 15:07:25 2009 -0400 903 904 Deploy the new XORG_DEFAULT_OPTIONS #24242 905 906 This macro aggregate a number of existing macros that sets commmon 907 X.Org components configuration options. It shields the configuration file from 908 future changes. 909 910 commit 8567a45cb36857a8b5e2699a3d3ed7850b053281 911 Author: Gaetan Nadon <memsize (a] videotron.ca> 912 Date: Mon Oct 26 22:08:43 2009 -0400 913 914 Makefile.am: ChangeLog not required: EXTRA_DIST or *CLEANFILES #24432 915 916 ChangeLog filename is known to Automake and requires no further 917 coding in the makefile. 918 919 commit 015687dbec93d954fb18981bc6e15937a206a4b7 920 Author: Gaetan Nadon <memsize (a] videotron.ca> 921 Date: Thu Oct 22 12:34:19 2009 -0400 922 923 .gitignore: use common defaults with custom section # 24239 924 925 Using common defaults will reduce errors and maintenance. 926 Only the very small or inexistent custom section need periodic maintenance 927 when the structure of the component changes. Do not edit defaults. 928 929 commit 2e07e9d4f300e8153e4e93cd78bc51e0d91dba6f 930 Author: Adam Jackson <ajax (a] redhat.com> 931 Date: Mon Nov 9 17:51:03 2009 -0500 932 933 GetCrtcGamma: Fix error handling. 934 935 We didn't treat _XReply failure as fatal. Parsing an xError as a gamma 936 ramp reply doesn't work that often. 937 938 Signed-off-by: Adam Jackson <ajax (a] redhat.com> 939 Reviewed-by: Jamey Sharp <jamey (a] minilop.net> 940 941 commit 7b41b589213293793182b61f20006229a89d5ba7 942 Author: Adam Jackson <ajax (a] redhat.com> 943 Date: Mon Nov 9 17:50:42 2009 -0500 944 945 GetCrtcGammaSize: Return 0, not garbage, on failure 946 947 Signed-off-by: Adam Jackson <ajax (a] redhat.com> 948 Reviewed-by: Jamey Sharp <jamey (a] minilop.net> 949 950 commit 5e94f071f45ca504ccafe083e2e289351ba6eab4 951 Author: Adam Jackson <ajax (a] redhat.com> 952 Date: Mon Nov 9 17:49:40 2009 -0500 953 954 GetScreenSizeRange: Document funky return code in the header 955 956 Signed-off-by: Adam Jackson <ajax (a] redhat.com> 957 Reviewed-by: Jamey Sharp <jamey (a] minilop.net> 958 959 commit f98cbea8b33356a0de1f777c3a862ecbf163cfd3 960 Author: Adam Jackson <ajax (a] redhat.com> 961 Date: Mon Nov 9 17:49:10 2009 -0500 962 963 SetScreenConfigAndRate: Document error handling better 964 965 Signed-off-by: Adam Jackson <ajax (a] redhat.com> 966 Reviewed-by: Jamey Sharp <jamey (a] minilop.net> 967 968 commit a8af918c0db758a667345b7c3055075124197f6c 969 Author: Adam Jackson <ajax (a] redhat.com> 970 Date: Mon Nov 9 17:48:22 2009 -0500 971 972 GetOutputProperty: Return the error code, not BadRequest 973 974 Signed-off-by: Adam Jackson <ajax (a] redhat.com> 975 Reviewed-by: Jamey Sharp <jamey (a] minilop.net> 976 977 commit 7f463b2a2221065c03b6122c0cffd2fa5cb13427 978 Author: Jeremy Huddleston <jeremyhu (a] freedesktop.org> 979 Date: Wed Oct 21 12:47:26 2009 -0700 980 981 This is not a GNU project, so declare it foreign. 982 983 On Wed, 2009-10-21 at 13:36 +1000, Peter Hutterer wrote: 984 > On Tue, Oct 20, 2009 at 08:23:55PM -0700, Jeremy Huddleston wrote: 985 > > I noticed an INSTALL file in xlsclients and libXvMC today, and it 986 > > was quite annoying to work around since 'autoreconf -fvi' replaces 987 > > it and git wants to commit it. Should these files even be in git? 988 > > Can I nuke them for the betterment of humanity and since they get 989 > > created by autoreconf anyways? 990 > 991 > See https://bugs.freedesktop.org/show_bug.cgi?id=24206 992 993 As an interim measure, replace AM_INIT_AUTOMAKE([dist-bzip2]) with 994 AM_INIT_AUTOMAKE([foreign dist-bzip2]). This will prevent the generation 995 of the INSTALL file. It is also part of the 24206 solution. 996 997 Signed-off-by: Jeremy Huddleston <jeremyhu (a] freedesktop.org> 998 999 commit e3036766916d55d0c8ae72d5752fd1699ae7390d 1000 Author: Matthias Hopf <mhopf (a] suse.de> 1001 Date: Fri Mar 6 15:13:56 2009 +0100 1002 1003 Bump to 1.3.0 1004 1005 commit 6bf8648e7e408be7a869fd4c4527a4fd73fc687d 1006 Author: Alan Coopersmith <alan.coopersmith (a] sun.com> 1007 Date: Mon Feb 2 20:34:36 2009 -0800 1008 1009 Add README with pointers to mailing list, bugzilla & git repos 1010 1011 Signed-off-by: Alan Coopersmith <alan.coopersmith (a] sun.com> 1012 1013 commit 70d641c6d170cda44856579dfdcb42d3bb1f8221 1014 Author: Keith Packard <keithp (a] keithp.com> 1015 Date: Fri Jan 30 20:12:43 2009 -0800 1016 1017 Send X_RRGetOutputPrimary when making an X_RRGetOutputPrimary request 1018 1019 Using X_RRGetOutputProperty does not yield success here. 1020 1021 Signed-off-by: Keith Packard <keithp (a] keithp.com> 1022 1023 commit bf284b043d4c5688da2207647126b095f8c2b0cd 1024 Author: Paulo Cesar Pereira de Andrade <pcpa (a] mandriva.com.br> 1025 Date: Fri Jan 30 16:38:03 2009 -0200 1026 1027 Janitor: make distcheck, compiler warnings, .gitignore 1028 1029 Warning corrections are either unused symbols or using an 1030 integer as a pointer (generated by sparse). 1031 1032 commit a0c45b798d2fa810167d64a92093840178f993b1 1033 Author: Julien Cristau <jcristau (a] debian.org> 1034 Date: Sun Dec 21 16:32:17 2008 +0100 1035 1036 Fix thinkos 1037 1038 * XRRExtensionInfo can be static 1039 * XRRExtensionName is not called XrandrExtensionName 1040 1041 commit 8574ffb20fa10b6f2e9a5f115f23506b93c64b12 1042 Author: Adam Jackson <ajax (a] redhat.com> 1043 Date: Wed Dec 17 11:33:37 2008 -0500 1044 1045 libXrandr 1.2.99.4 1046 1047 commit e2f075ea3927f83fb7ee8b359ef951222e8f894b 1048 Author: Adam Jackson <ajax (a] redhat.com> 1049 Date: Wed Dec 17 11:29:05 2008 -0500 1050 1051 Define _XRRHasRates internally. 1052 1053 commit 53bd07438d3671dca86df2bf3052f89ee8ce0891 1054 Author: Adam Jackson <ajax (a] redhat.com> 1055 Date: Wed Dec 17 11:27:19 2008 -0500 1056 1057 Be sure to return NULL when returning no properties. 1058 1059 commit 7c1ccb19bd2545ccdf7099489e946e772a25649f 1060 Author: Adam Jackson <ajax (a] redhat.com> 1061 Date: Wed Dec 17 11:25:20 2008 -0500 1062 1063 Use RRCheckExtension in function returning a value. 1064 1065 commit 2db939e82c29fa3ab868bac9d2b54de18419004b 1066 Author: Adam Jackson <ajax (a] redhat.com> 1067 Date: Wed Dec 17 11:24:33 2008 -0500 1068 1069 Fix type of GetReq() argument. 1070 1071 commit c79e2aecab080d8f47b258ae3c4dd9394280ae2a 1072 Author: Adam Jackson <ajax (a] redhat.com> 1073 Date: Wed Dec 17 11:23:51 2008 -0500 1074 1075 Use RRSimpleCheckExtension in functions returning void 1076 1077 commit dda80ea67e33d18f7cc869c6f828c444c8966704 1078 Author: Matthias Hopf <mhopf (a] suse.de> 1079 Date: Fri Dec 12 13:04:57 2008 +0100 1080 1081 Bump to 1.2.99.3 1082 1083 commit 59c8812099f33d56b43044f999ffe5df16adf5ff 1084 Author: Adam Jackson <ajax (a] redhat.com> 1085 Date: Mon Dec 8 15:37:53 2008 -0500 1086 1087 Add [GS]etOutputPrimary 1088 1089 commit 0f11922bdc0d4e3929df4dc967379ea0b48338b8 1090 Author: Matthias Hopf <mhopf (a] suse.de> 1091 Date: Thu Dec 4 18:24:42 2008 +0100 1092 1093 Bump to 1.2.99.2. 1094 1095 Note the .99 1096 1097 commit e788c1ed41e029e54470a2c79f1478c1be7bba92 1098 Author: Matthias Hopf <mhopf (a] suse.de> 1099 Date: Thu Dec 4 15:51:07 2008 +0100 1100 1101 Nuke config-timestamp for panning. 1102 1103 commit 1de7212d9a945403f13f4dc15a66ec115c3be44c 1104 Author: Matthias Hopf <mhopf (a] suse.de> 1105 Date: Fri Nov 28 17:26:43 2008 +0100 1106 1107 Panning support 1108 1109 commit 0dd24bd6ad3c437f320c5d8e922c479fb61b115f 1110 Author: Julien Cristau <jcristau (a] debian.org> 1111 Date: Mon Dec 1 21:19:35 2008 +0100 1112 1113 Bump to 1.2.91 1114 1115 commit 0fa7452220701ee44d8bafc57001e362afcedb0c 1116 Author: Julien Cristau <jcristau (a] debian.org> 1117 Date: Mon Dec 1 21:09:44 2008 +0100 1118 1119 RRNotify subevents have 'window' at different offsets, the sequel 1120 1121 f176b2bda103f6f38aabab8207f47a02cc797659 fixed XRRWireToEvent, but 1122 XRREventToWire had the same bug. 1123 1124 Signed-off-by: Julien Cristau <jcristau (a] debian.org> 1125 1126 commit 83e567f427f68dc4ae2de796a1184748bbe0238e 1127 Merge: 908de8f 00f2e30 1128 Author: Julien Cristau <jcristau (a] debian.org> 1129 Date: Mon Dec 1 20:59:39 2008 +0100 1130 1131 Merge branch 'transform-proposal' of git.freedesktop.org:/git/xorg/lib/libXrandr 1132 1133 Conflicts: 1134 1135 src/Xrandr.c 1136 1137 commit 00f2e30d0b8296668776d62a4c47f96bf95faa08 1138 Author: Julien Cristau <jcristau (a] debian.org> 1139 Date: Fri Nov 28 16:16:22 2008 +0100 1140 1141 Set attr->pendingNparams in XRRGetCrtcTransform() 1142 1143 commit 908de8fc7228ecc7b02825ebede5fb937f3abf1b 1144 Author: Adam Jackson <ajax (a] redhat.com> 1145 Date: Mon Nov 24 16:11:46 2008 -0500 1146 1147 Add GetScreenResourcesCurrent 1148 1149 commit 377126fdaf1094354d54b1743f9d2bf1f2de1e0c 1150 Author: Keith Packard <keithp (a] keithp.com> 1151 Date: Fri Sep 12 20:18:21 2008 -0700 1152 1153 Set NparamsFilter in XRRGetCrtcTransform return value. 1154 1155 Leaving this uninitialized isn't very helpful, and can cause segfaults. 1156 1157 commit f176b2bda103f6f38aabab8207f47a02cc797659 1158 Author: Tomas Carnecky <tom (a] dbservice.com> 1159 Date: Wed Aug 13 10:24:11 2008 -0400 1160 1161 RRNotify subevents have 'window' at different offsets. 1162 1163 commit d631e453d62104b4a4afdcf0b34e6f3aefd62644 1164 Author: Adam Jackson <ajax (a] redhat.com> 1165 Date: Wed Aug 13 10:21:51 2008 -0400 1166 1167 Remove RCS tags. 1168 1169 commit bf476779616b24c6456339bc77896460f1a2545a 1170 Author: Adam Jackson <ajax (a] redhat.com> 1171 Date: Wed Jul 2 15:28:08 2008 -0400 1172 1173 libXrandr 1.2.3 1174 1175 commit 203fc002b6948c3942f0461a0346dd07b633222d 1176 Author: thb <thb (a] openoffice.org> 1177 Date: Mon Jun 23 13:25:12 2008 -0400 1178 1179 Bug #16430: Ignore ConfigureNotify on non-root windows in UpdateConfiguration 1180 1181 commit 332eee90c4d00be3b11049e0261323abe89a96dc 1182 Author: Peter Hutterer <peter (a] cs.unisa.edu.au> 1183 Date: Mon May 19 17:34:36 2008 +0930 1184 1185 Rename parameters to clarify QueryVersion/QueryExtension. 1186 1187 These parameters are not treated as input. Rename them to make the inner 1188 workings slightly more obvious. 1189 1190 X.Org Bug 14511 <http://bugs.freedesktop.org/show_bug.cgi?id=14511> 1191 1192 commit 824f3d4a3a4669526a5c391c6668df0384b49cdb 1193 Author: Julien Cristau <jcristau (a] debian.org> 1194 Date: Tue Feb 5 15:37:32 2008 +0100 1195 1196 Bug #14388: Remove XRRScreenConfig() and XRRConfig() from Xrandr.h. 1197 1198 It seems that they were never actually implemented. 1199 Also remove the corresponding manpage symlinks. 1200 1201 commit 7a21e7bc994c5fa7d3ab15ba7201667e134f1512 1202 Author: Keith Packard <keithp (a] keithp.com> 1203 Date: Tue Mar 18 16:02:36 2008 -0700 1204 1205 Eliminate inverse matrix from randr transform protocol 1206 1207 It is easier, and potentially more precise, to compute the inverse in the 1208 server where everything can eventually be kept in floating point form. 1209 1210 commit a6e5fa4ceb72795380496fcfe62c083866791dc1 1211 Author: Keith Packard <keithp (a] keithp.com> 1212 Date: Sat Mar 15 00:33:30 2008 -0700 1213 1214 Support CRTC Transform filters 1215 1216 XRRGetCrtcTransform now returns a giant struct containing all of the 1217 transform and filter data. 1218 1219 XRRSetCrtcTransform now accepts filter parameters. 1220 1221 commit 2a5fb0e58ed6ee1ff1f0ff00b5bf5b2623991132 1222 Author: Keith Packard <keithp (a] keithp.com> 1223 Date: Tue Mar 4 08:17:48 2008 -0800 1224 1225 Add support for new Transform requests. 1226 1227 commit dc0ce2e363dbdac560fc2a8c1296c5468d75f644 1228 Author: Matthieu Herrb <matthieu.herrb (a] laas.fr> 1229 Date: Sun Mar 9 08:37:17 2008 +0100 1230 1231 nuke RCS Ids 1232 1233 commit 23a47035818390ca197179a9a69a54badb370990 1234 Author: Julien Cristau <jcristau (a] debian.org> 1235 Date: Tue Feb 5 15:35:30 2008 +0100 1236 1237 Hide some private symbols. 1238 1239 XExtensionInfo, XRRExtensionName, XRRFindDisplay, _XRRHasRates and 1240 _XRRVersionHandler are internal to libXrandr. Don't export them. 1241 1242 commit 732ae92882383b33384791c2e9136a54e0fd06f3 1243 Author: James Cloos <cloos (a] jhcloos.com> 1244 Date: Thu Dec 6 16:38:42 2007 -0500 1245 1246 Replace static ChangeLog with dist-hook to generate from git log 1247 1248 commit e56fa06624dc240dbe8d3e127cc3b65da580fe6e 1249 Merge: 27b91d1 0294912 1250 Author: James Cloos <cloos (a] jhcloos.com> 1251 Date: Sun Nov 11 10:27:35 2007 -0500 1252 1253 Merge branch 'master' of git://git.freedesktop.org/git/xorg/lib/libXrandr 1254 1255 commit 029491243b43c2e03a62c143ac21941449f335aa 1256 Author: Eric Anholt <eric (a] anholt.net> 1257 Date: Wed Sep 5 10:01:06 2007 -0700 1258 1259 Bump version to 1.2.2. 1260 1261 commit 27b91d1d62acb70da7d131ee4b6da265d64cb835 1262 Author: James Cloos <cloos (a] jhcloos.com> 1263 Date: Mon Sep 3 05:53:48 2007 -0400 1264 1265 Add *~ to .gitignore to skip patch/emacs droppings 1266 1267 commit 126143add5349fc34488b23d54d1bdcc7e8847b9 1268 Author: Keith Packard <keithp (a] neko.keithp.com> 1269 Date: Tue Jul 3 09:58:09 2007 -0700 1270 1271 CrtcChange event format conversion was using 'height' for 'width'. 1272 1273 CrtcChange events were getting the source 'height' value stored in the 1274 'width' target in both conversion directions. 1275 1276 commit 3e753542bcf0fd49fe977e56b7ab7e540bbd4282 1277 Author: Keith Packard <keithp (a] neko.keithp.com> 1278 Date: Sun Mar 4 20:03:59 2007 -0800 1279 1280 Set version to 1.2.1 for release. 1281 1282 commit c279b64ccca18b14974e413b0b1d55ac81abceda 1283 Author: Fredrik Hglund <fredrik (a] kde.org> 1284 Date: Tue Feb 20 22:30:00 2007 +0100 1285 1286 Fix the use of a C++ keyword as a parameter name in Xrandr.h 1287 1288 commit 75d9944484651d4180e3079a739be4edb36545fe 1289 Author: Keith Packard <keithp (a] neko.keithp.com> 1290 Date: Sun Feb 18 20:57:31 2007 -0800 1291 1292 Reset version from 1.2.0.0 to 1.2.0 1293 1294 commit ac82ee50f3938b7b4d6dbcec850d38500258bfe0 1295 Author: Keith Packard <keithp (a] neko.keithp.com> 1296 Date: Thu Feb 15 16:56:11 2007 -0800 1297 1298 Must pass size information in SetCrtcGamma request. 1299 1300 commit 9c4fea702a0382689898fc14cbdab456fb18c403 1301 Merge: c85237a 382b7a3 1302 Author: Keith Packard <keithp (a] neko.keithp.com> 1303 Date: Wed Jan 31 14:24:57 2007 -0800 1304 1305 Merge 64-bit fixes in 1306 1307 commit c85237a1651ae8e1abe9ae442ffa04dcb20c1d3e 1308 Author: Keith Packard <keithp (a] neko.keithp.com> 1309 Date: Wed Jan 31 14:20:33 2007 -0800 1310 1311 Fix read sizes for 64-bit machines. 1312 1313 Be consistent in variable usage: 1314 nbytes = network byte length. 1315 rbytes = memory byte length. 1316 nbytesRead = actual network bytes read. 1317 Malloc rbytes data to pass to _XRead*, but use nbytes as the 1318 amount of data to read (yes, this is insane, welcome to Xlib). 1319 Some of this patch is semi-gratuitous, but the goal is to be consistent 1320 everywhere. 1321 1322 commit 382b7a3cfabdd37a6231e18a2ac92bc8a3722b79 1323 Author: Eric Anholt <eric (a] anholt.net> 1324 Date: Tue Jan 16 13:10:49 2007 -0800 1325 1326 Return a valid property info even if we lack valid value sets. 1327 1328 Previously, XRRQueryOutputProperty90 would return an uninitialized pointer if 1329 num_values was 0. 1330 1331 commit 36a4a633a93a89bd854f49e670777925c9751de3 1332 Author: Keith Packard <keithp (a] neko.keithp.com> 1333 Date: Sat Jan 6 12:42:47 2007 -0800 1334 1335 Avoid nested LockDisplay calls. 1336 1337 XRRFindDisplay must make extension requests that use LockDisplay, so don't 1338 call it with the display locked, instead pass the info around to the 1339 internal functions that were calling it themselves, having acquired the info 1340 before the outer LockDisplay is called. 1341 1342 commit d70a3e7f111cb65c37edfa78ca66449338d3bb8f 1343 Author: Keith Packard <keithp (a] neko.keithp.com> 1344 Date: Sat Dec 30 13:11:10 2006 -0800 1345 1346 Failed to copy rotations from reply to XRRCrtcInfo. 1347 1348 XRRGetCrtcInfo was not moving the rotations value from the wire reply 1349 structure to the XRRCrtcInfo being returned, leaving the value uninitialized. 1350 1351 commit bc75a92cac23dad4a661a13e6af121f6072cecc8 1352 Merge: 7fcdcbb 370fa28 1353 Author: Dave Airlie <airlied (a] linux.ie> 1354 Date: Sat Dec 2 11:27:36 2006 +1100 1355 1356 Merge branch 'randr-1.2' 1357 1358 commit 370fa28a6afd70ec91411edf1413c0e448ae45b6 1359 Author: Keith Packard <keithp (a] neko.keithp.com> 1360 Date: Thu Nov 30 21:56:59 2006 -0800 1361 1362 Add initial implementation of crtc gamma and mode adding requests. 1363 1364 They build. More testing seems indicated. 1365 1366 commit 7fcdcbb0f9c4736bd678be7f9bf76d472293233f 1367 Merge: 875867f 0dba1be 1368 Author: Eric Anholt <eric (a] anholt.net> 1369 Date: Mon Nov 27 15:41:03 2006 -0800 1370 1371 Merge branch 'randr-1.2' 1372 1373 Conflicts: 1374 1375 configure.ac 1376 1377 commit 0dba1be7969aa56f934d93889cbd589b3dafd3d4 1378 Author: Keith Packard <keithp (a] neko.keithp.com> 1379 Date: Mon Nov 20 20:59:18 2006 -0800 1380 1381 Change properties to have a pending value and report valid values. 1382 1383 Pending values are transferred to current values at mode set, allowing a 1384 queue of values to accrue in preparation for the modeset operation while 1385 still reporting valid 'current' values for applications. 1386 1387 The set of valid values is also available so applications can present 1388 a reasonable list to the user during configuration. 1389 1390 commit 8edabfeba65562f026111b35ec14a9801b4b6a5c 1391 Author: Keith Packard <keithp (a] neko.keithp.com> 1392 Date: Thu Nov 16 13:35:46 2006 -0800 1393 1394 Remove RandR output options. 1395 1396 Options are to be implemented as properties instead. 1397 1398 commit 7ac8dba76fe33b13620e023699bf971fe8c99fb2 1399 Author: Eric Anholt <eric (a] anholt.net> 1400 Date: Thu Nov 9 20:26:33 2006 -0800 1401 1402 Return the right actual property type for XRRGetOutputProperty. 1403 1404 commit b49342b58d17267fae81205f1a89263ec4d3d114 1405 Author: Eric Anholt <eric (a] anholt.net> 1406 Date: Thu Nov 9 17:07:55 2006 -0800 1407 1408 Add support for various output property requests. 1409 1410 These should be reviewed by someone with proto clue, which I'm generally 1411 lacking. 1412 1413 commit 6676505b6012c97d2f711a84237fa14a62d1d33d 1414 Author: Keith Packard <keithp (a] mandolin.keithp.com> 1415 Date: Wed Nov 1 00:25:45 2006 -0800 1416 1417 Moving physical size from mode to output. 1418 1419 Follows protocol change which places physical size 1420 information in the output rather than (inappropriately) 1421 in each mode line. 1422 1423 commit 875867f275803682e58f0649f054a83293c6e02c 1424 Author: Adam Jackson <ajax (a] benzedrine.nwnk.net> 1425 Date: Fri Oct 13 17:09:57 2006 -0400 1426 1427 Bump to 1.1.2 1428 1429 commit 6eacf491a094add48363d530357dce0d25b8f244 1430 Author: Adam Jackson <ajax (a] benzedrine.nwnk.net> 1431 Date: Fri Oct 13 16:25:00 2006 -0400 1432 1433 Bump to 1.1.1 1434 1435 commit d914d05d34991b4cfa3af411fd2a3e281ea0e73b 1436 Author: Jamey Sharp <jamey (a] minilop.net> 1437 Date: Thu Oct 12 17:42:48 2006 -0700 1438 1439 Do not call UnlockDisplay without calling LockDisplay. 1440 1441 Thanks to Magnus Kessler <Magnus.Kessler (a] gmx.net> for reporting this 1442 bug and a correct fix. 1443 1444 commit ab4207db14d70384f017cc2a22379d7c358b60e0 1445 Author: Keith Packard <keithp (a] neko.keithp.com> 1446 Date: Wed Oct 4 20:04:09 2006 -0700 1447 1448 Remove mode origins. Add preferred mode count. 1449 1450 commit dd0fb435a0168d4041ecd81024d6493295651c61 1451 Author: Keith Packard <keithp (a] guitar.keithp.com> 1452 Date: Tue Oct 3 21:03:10 2006 -0700 1453 1454 Add mode origins and output options. 1455 1456 commit cb1dbb7c2446ddf514ee709fba940cc4e75438a0 1457 Author: Keith Packard <keithp (a] guitar.keithp.com> 1458 Date: Wed Sep 20 20:00:57 2006 -0700 1459 1460 XRRGetScreenSizeRange returns Status. Lots more requests added. 1461 1462 XRRGetCrtcInfo 1463 XRRSetCrtcConfig 1464 XRRGetScreenSizeRange 1465 XRRSetScreenSize 1466 1467 properties still to do. 1468 1469 commit c712df73eeb0cb84aad6a0bec2be0f480418c217 1470 Author: Keith Packard <keithp (a] guitar.keithp.com> 1471 Date: Tue Sep 19 00:42:49 2006 -0700 1472 1473 Start update to 1.2, splitting code across multiple files. 1474 1475 commit a8abbe92f0486f174fb89ca2c81eabede646bf32 1476 Author: Alan Coopersmith <alan.coopersmith (a] sun.com> 1477 Date: Thu Jul 13 14:59:05 2006 -0700 1478 1479 renamed: .cvsignore -> .gitignore 1480 1481 commit 88f4e37d937f171352dc0089a0903c0a3d9487d8 1482 Author: Alan Coopersmith <Alan.Coopersmith (a] sun.com> 1483 Date: Sun Feb 12 18:19:22 2006 +0000 1484 1485 Bug #5628 <https://bugs.freedesktop.org/show_bug.cgi?id=5628> Shadow pages 1486 not created correctly when MANDIR & MANSUFFIX don't match. 1487 1488 commit c6541af3ef1cfaba57a73369090b6ac1a38b9b1e 1489 Author: Kevin E Martin <kem (a] kem.org> 1490 Date: Thu Dec 15 00:24:33 2005 +0000 1491 1492 Update package version number for final X11R7 release candidate. 1493 1494 commit be2b102d0ce89f4ac2eb2c2aad5b2e3af947abba 1495 Author: Kevin E Martin <kem (a] kem.org> 1496 Date: Tue Dec 6 22:48:44 2005 +0000 1497 1498 Change *man_SOURCES ==> *man_PRE to fix autotools warnings. 1499 1500 commit 8f9937022d259917ea7f1a3fefab58607300756a 1501 Author: Kevin E Martin <kem (a] kem.org> 1502 Date: Sat Dec 3 05:49:45 2005 +0000 1503 1504 Update package version number for X11R7 RC3 release. 1505 1506 commit 127ec4993118efe56caef761febef86eae2b7300 1507 Author: Kevin E Martin <kem (a] kem.org> 1508 Date: Sat Dec 3 04:41:50 2005 +0000 1509 1510 Add check and cflags for malloc(0) returning NULL. 1511 1512 commit 89f4aca8d76806edf51d4999223011cbff1c3f55 1513 Author: Alan Coopersmith <Alan.Coopersmith (a] sun.com> 1514 Date: Mon Nov 28 22:03:06 2005 +0000 1515 1516 Change *mandir targets to use new *_MAN_DIR variables set by xorg-macros.m4 1517 update to fix bug #5167 (Linux prefers *.1x man pages in man1 subdir) 1518 1519 commit bf2fcad15b7bf2c505f5478648bf6ecbc0be701a 1520 Author: Kevin E Martin <kem (a] kem.org> 1521 Date: Sat Nov 19 07:15:43 2005 +0000 1522 1523 Update pkgconfig files to separate library build-time dependencies from 1524 application build-time dependencies, and update package deps to work 1525 with separate build roots. 1526 1527 commit a27c3d61d107fe4af33181a63f8ea951367ff418 1528 Author: Kevin E Martin <kem (a] kem.org> 1529 Date: Mon Nov 14 22:02:13 2005 +0000 1530 1531 Fix pkgconfig deps for separate build roots. 1532 1533 commit 1d690983d20e3d874b7f0e7f430e3d0cf2710c53 1534 Author: Kevin E Martin <kem (a] kem.org> 1535 Date: Wed Nov 9 21:19:13 2005 +0000 1536 1537 Update package version number for X11R7 RC2 release. 1538 1539 commit 090314b101b9d3626dc0dc970be68aec7e382d0f 1540 Author: Kevin E Martin <kem (a] kem.org> 1541 Date: Tue Nov 1 15:11:51 2005 +0000 1542 1543 Update pkgcheck dependencies to work with separate build roots. 1544 1545 commit 2deac5f213ee0a1cedccc721cd015691661b8002 1546 Author: Kevin E Martin <kem (a] kem.org> 1547 Date: Wed Oct 19 02:48:11 2005 +0000 1548 1549 Update package version number for RC1 release. 1550 1551 commit 33d17445401ec09bb0c2305d477b00c3abc2182a 1552 Author: Alan Coopersmith <Alan.Coopersmith (a] sun.com> 1553 Date: Tue Oct 18 00:00:09 2005 +0000 1554 1555 Use @LIB_MAN_SUFFIX@ instead of $(LIB_MAN_SUFFIX) in macro substitutions to 1556 work better with BSD make 1557 1558 commit a42c72fe8924e98f0794e37dec8e5ef49fd7423c 1559 Author: Alan Coopersmith <Alan.Coopersmith (a] sun.com> 1560 Date: Mon Oct 17 21:13:22 2005 +0000 1561 1562 Rename .shadows.DONE to shadows.DONE to avoid some make's thinking it's a 1563 suffix rule (reported by Matthieu Herrb) 1564 1565 commit 13ec5d5d689bb03e01d8f269d2c7a72e4cf0b5f1 1566 Author: Alan Coopersmith <Alan.Coopersmith (a] sun.com> 1567 Date: Thu Oct 13 05:06:10 2005 +0000 1568 1569 [lib/Xrandr] 1570 Use sed to fill in variables in man page Add shadow man pages for man pages 1571 that document multiple functions. 1572 1573 commit 544ec9ae021fecc6001df97a6000095f294b7422 1574 Author: Alan Coopersmith <Alan.Coopersmith (a] sun.com> 1575 Date: Thu Oct 13 02:56:42 2005 +0000 1576 1577 Fix troff macros from last commit to not generate cpp warnings 1578 1579 commit f678f6cc9b73960c3ad61cc93fc61acefbe40ef5 1580 Author: Alan Coopersmith <Alan.Coopersmith (a] sun.com> 1581 Date: Wed Oct 12 23:45:05 2005 +0000 1582 1583 Use troff macros to prevent cpp eating C comments & #defines that are 1584 supposed to appear in man page output. 1585 1586 commit a42516d3a5aa532ed7c19fa128afd63d159676f8 1587 Author: Aaron Plattner <aplattner (a] nvidia.com> 1588 Date: Fri Sep 30 04:25:14 2005 +0000 1589 1590 Bug #2965 <https://bugs.freedesktop.org/show_bug.cgi?id=2965> Patch #2994 1591 <https://bugs.freedesktop.org/attachment.cgi?id=2994> Swap the screen 1592 dimensions when handling XRRScreenChangeNotify events for 90- and 1593 270-degree rotations. This fixes KDE's panel placement for rotated 1594 screens. 1595 1596 commit f9c9043f2a6787cdb6ab130f66fd39b29e7f2506 1597 Author: Kevin E Martin <kem (a] kem.org> 1598 Date: Fri Jul 29 21:22:52 2005 +0000 1599 1600 Various changes preparing packages for RC0: 1601 - Verify and update package version numbers as needed 1602 - Implement versioning scheme 1603 - Change bug address to point to bugzilla bug entry form 1604 - Disable loadable i18n in libX11 by default (use --enable-loadable-i18n to 1605 reenable it) 1606 - Fix makedepend to use pkgconfig and pass distcheck 1607 - Update build script to build macros first 1608 - Update modular Xorg version 1609 1610 commit 6fd64a5c552ce5f0559838b2b4ae5a27b40e52f1 1611 Author: Kevin E Martin <kem (a] kem.org> 1612 Date: Sat Jul 23 05:27:00 2005 +0000 1613 1614 Fix distchecks 1615 1616 commit bceba127b9b671e378030b348f36602eb44278af 1617 Author: Daniel Stone <daniel (a] fooishbar.org> 1618 Date: Sat Jul 16 07:34:59 2005 +0000 1619 1620 Set soversion to 2.0.0 with -version-number. 1621 1622 commit 63538e6c68e1697e027e55a5015791de3af7bc8c 1623 Author: Keith Packard <keithp (a] keithp.com> 1624 Date: Sat Jul 9 06:48:05 2005 +0000 1625 1626 Add .cvsignore files Switch _la_CFLAGS for AM_CFLAGS to clean up directory 1627 1628 commit 3f5e389cb5bd5305cc45aca522086d3b92506265 1629 Author: Kevin E Martin <kem (a] kem.org> 1630 Date: Sat Jul 2 06:35:03 2005 +0000 1631 1632 Add appropriate lib*_CFLAGS to Makefile.am's -- fixes build problems 1633 1634 commit 48a3a08206e827a5af88d6a2d8ac62aa3bbbe122 1635 Author: Daniel Stone <daniel (a] fooishbar.org> 1636 Date: Fri Jun 10 14:10:29 2005 +0000 1637 1638 Bug #1976: Fix deadlock when attempting to initialise with threads. 1639 1640 commit 1279a7f95e654bb33c9057e25a291e2a093f2dee 1641 Author: Alexander Gottwald <alexander.gottwald (a] s1999.tu-chemnitz.de> 1642 Date: Thu Jun 9 12:52:44 2005 +0000 1643 1644 Require renderproto instead of render for pkgconfig 1645 1646 commit 9c36643810a7e837f325970ddd5964bbff4971b6 1647 Author: Sren Sandmann Pedersen <sandmann (a] daimi.au.dk> 1648 Date: Wed Jun 8 20:22:47 2005 +0000 1649 1650 - Don't search for non-autoconf'ed X libs in Xrandr 1651 - Rename man page Xrandr.3 1652 1653 commit 73b3dff9d12d417716c19a33a95eac5f73e5da13 1654 Author: Sren Sandmann Pedersen <sandmann (a] daimi.au.dk> 1655 Date: Wed Jun 8 19:19:31 2005 +0000 1656 1657 Add Xcursor 1658 conditionally include config.h 1659 1660 commit 32107cdd57b4796c3f41ac56c9ba683be3d894af 1661 Author: Sren Sandmann Pedersen <sandmann (a] daimi.au.dk> 1662 Date: Wed Jun 8 17:48:03 2005 +0000 1663 1664 Check in build system for Xrandr 1665 1666 commit 84264cf7a9ce88850f3bc18428e2c046ff0251ed 1667 Author: Markus Kuhn <Markus.Kuhn (a] cl.cam.ac.uk> 1668 Date: Sat Dec 4 00:42:48 2004 +0000 1669 1670 Encoding of numerous files changed to UTF-8 1671 1672 commit a9b18ca5a13816d4ffbbd00d3fc80a048e84e94f 1673 Author: Egbert Eich <eich (a] suse.de> 1674 Date: Mon May 24 19:06:58 2004 +0000 1675 1676 Fix build glitches when building modules independently using Imake. 1677 1678 commit 76f134caf8da6a08f0fb3587868efaec401c7e74 1679 Author: Egbert Eich <eich (a] suse.de> 1680 Date: Fri Apr 23 18:43:47 2004 +0000 1681 1682 Merging XORG-CURRENT into trunk 1683 1684 commit 634976e69c2d0cd014ac537acb1e52884c1d89b2 1685 Author: Egbert Eich <eich (a] suse.de> 1686 Date: Sun Mar 14 08:32:25 2004 +0000 1687 1688 Importing vendor version xf86-4_4_99_1 on Sun Mar 14 00:26:39 PST 2004 1689 1690 commit f07005c663731709ec6c5d7f36492ff3ac253845 1691 Author: Egbert Eich <eich (a] suse.de> 1692 Date: Wed Mar 3 12:11:30 2004 +0000 1693 1694 Importing vendor version xf86-4_4_0 on Wed Mar 3 04:09:24 PST 2004 1695 1696 commit e61377128a66342b8e39a4c5b7e2acd34f38799f 1697 Author: Egbert Eich <eich (a] suse.de> 1698 Date: Thu Feb 26 13:35:33 2004 +0000 1699 1700 readding XFree86's cvs IDs 1701 1702 commit 696a58bfcb75b56cad6e5994f8c974ac4bb884da 1703 Author: Egbert Eich <eich (a] suse.de> 1704 Date: Thu Feb 26 09:22:44 2004 +0000 1705 1706 Importing vendor version xf86-4_3_99_903 on Wed Feb 26 01:21:00 PST 2004 1707 1708 commit 731775dea70f37fd41e4a384d484236e9d0ce4ef 1709 Author: Kaleb Keithley <kaleb (a] freedesktop.org> 1710 Date: Thu Dec 4 22:02:57 2003 +0000 1711 1712 XFree86 4.3.99.901 (RC 1) 1713 1714 commit 35eca17cac066690575683bc1367b1fdaba1f4cc 1715 Author: Kaleb Keithley <kaleb (a] freedesktop.org> 1716 Date: Tue Nov 25 19:28:15 2003 +0000 1717 1718 XFree86 4.3.99.16 Bring the tree up to date for the Cygwin folks 1719 1720 commit 8a8b419755dd3c815cc70265ed0d44e5f31028cc 1721 Author: Kaleb Keithley <kaleb (a] freedesktop.org> 1722 Date: Fri Nov 14 16:48:49 2003 +0000 1723 1724 XFree86 4.3.0.1 1725 1726 commit 52d0891b9e3c51d43fd13d0b2680b7e24b2f2e2d 1727 Author: Kaleb Keithley <kaleb (a] freedesktop.org> 1728 Date: Fri Nov 14 16:48:49 2003 +0000 1729 1730 Initial revision 1731