1commit 5579ae02a6b44f3072955f3e2f3249d2bd1201e4 2Author: Alan Coopersmith <alan.coopersmith@oracle.com> 3Date: Sun Jul 10 15:49:43 2022 -0700 4 5 xmodmap 1.0.11 6 7 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 8 9commit 34df50af33d38621ce5d5a5510c7a4e70e1c17c1 10Author: Alan Coopersmith <alan.coopersmith@oracle.com> 11Date: Sun Apr 17 10:34:10 2022 -0700 12 13 PrintModifierMapping: stop leaking the map returned by XGetKeyboardMapping 14 15 Resolves issue reported by Oracle Parfait static analyzer: 16 17 Error: Memory leak 18 Memory leak [memory-leak] (CWE 401): 19 Memory leak of pointer pointer allocated with XGetKeyboardMapping(...) 20 at line 251 of app/xmodmap/exec.c in function 'PrintModifierMapping'. 21 pointer allocated at line 222 with XGetKeyboardMapping(...) 22 23 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 24 25commit 10eecbe868b5c898ea9cd05d014fbf13c29c3a26 26Author: Alan Coopersmith <alan.coopersmith@oracle.com> 27Date: Sun Apr 17 10:19:58 2022 -0700 28 29 handle.c: avoid leaks when realloc() fails 30 31 Resolves issues reported by Oracle Parfait static analyzer: 32 33 Error: Memory leak 34 Memory leak [memory-leak] (CWE 401): 35 Memory leak of pointer kclist allocated with malloc((n * 1)) 36 at line 698 of app/xmodmap/handle.c in function 'do_remove'. 37 kclist allocated at line 662 with malloc((n * 1)) 38 kclist leaks when num_kcs != 0 at line 676 39 and (j + 1) >= num_kcs at line 687 40 and (nc + num_kcs) > tot at line 691 41 and (num_kcs - 1) < 0 at line 701. 42 Memory leak [memory-leak] (CWE 401): 43 Memory leak of pointer kclist allocated with malloc((n * 1)) 44 at line 711 of app/xmodmap/handle.c in function 'do_remove'. 45 kclist allocated at line 662 with malloc((n * 1)) 46 kclist leaks when (i + 1) >= n at line 672. 47 Error: Memory leak 48 Memory leak [memory-leak] (CWE 401): 49 Memory leak of pointer kclist allocated with realloc(kclist, (tot * 1)) 50 at line 711 of app/xmodmap/handle.c in function 'do_remove'. 51 kclist allocated at line 693 with realloc(kclist, (tot * 1)) 52 kclist leaks when (num_kcs - 1) < 0 at line 701 53 and (i + 1) >= n at line 672. 54 55 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 56 57commit d14cb47d9e9a10d04b1a7de9d2799fef9b0436e0 58Author: Alan Coopersmith <alan.coopersmith@oracle.com> 59Date: Tue Dec 7 12:36:29 2021 -0800 60 61 Build xz tarballs instead of bzip2 62 63 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 64 65commit 90e2004549d79093ef7e1c17f99e64331c3e6661 66Author: Alan Coopersmith <alan.coopersmith@oracle.com> 67Date: Tue Dec 7 12:36:27 2021 -0800 68 69 gitlab CI: add a basic build test 70 71 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 72 73commit fa9c38e6e7f1caa12d38f35c5633735bcaef3ba1 74Author: Karl Fogel <kfogel@red-bean.com> 75Date: Sat Mar 16 21:29:04 2019 -0500 76 77 Fix warning about number of mouse buttons 78 79 Change a warning to distinguish between too few buttons and too many. 80 81 Before this change: 82 83 $ xmodmap -e "pointer = 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15" 84 Warning: Only changing the first 15 of 10 buttons. 85 $ 86 87 After this change: 88 89 $ xmodmap -e "pointer = 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15" 90 Warning: Not changing 5 extra buttons beyond 10. 91 $ 92 93 Fixes: https://gitlab.freedesktop.org/xorg/app/xmodmap/issues/2 94 Signed-off-by: Karl Fogel <kfogel@red-bean.com> 95 96commit c5a5fb06fd25c044f343f4571c645fd6c954d038 97Author: Alan Coopersmith <alan.coopersmith@oracle.com> 98Date: Tue Feb 19 15:33:29 2019 -0800 99 100 xmodmap 1.0.10 101 102 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 103 104commit d0d28d45a2479b4ddc3c5656ac75433cc922bf46 105Author: Alan Coopersmith <alan.coopersmith@oracle.com> 106Date: Wed Nov 21 17:16:14 2018 -0800 107 108 Update configure.ac bug URL for gitlab migration 109 110 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 111 112commit 0a4cc4af3d3fc38e10d3ff23c36380b5252bd520 113Author: Alan Coopersmith <alan.coopersmith@oracle.com> 114Date: Fri Nov 16 22:40:31 2018 -0800 115 116 Update README for gitlab migration 117 118 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 119 120commit 9be2acabde0364a3a6b506ea59db24d922844ccc 121Author: Wolfgang Pfeiffer <roto@gmx.net> 122Date: Mon Jul 9 10:20:35 2018 +1000 123 124 man: remove reference to the XKeysymDB 125 126 The XKeysymDB was removed around 2010 - please see: 127 https://cgit.freedesktop.org/xorg/lib/libX11/commit/?id=eb023c0f8919e809b8b609e1467b14d20a290aa7 128 129 Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net> 130 131commit c4df95c5075a728c0d089bed208042fdfa7a7765 132Author: Alan Coopersmith <alan.coopersmith@oracle.com> 133Date: Sat May 5 15:15:33 2018 -0700 134 135 Change fall through comment in xmodmap.c to match gcc's requirements 136 137 Needs to match one of the regexps shown under 138 https://gcc.gnu.org/onlinedocs/gcc-7.3.0/gcc/Warning-Options.html#index-Wimplicit-fallthrough 139 140 Silences warning from gcc 7.3.0: 141 142 xmodmap.c: In function ‘main’: 143 xmodmap.c:358:10: warning: this statement may fall through [-Wimplicit-fallthrough=] 144 arg[1] = tolower (arg[1]); 145 ~~~~~~~^~~~~~~~~~~~~~~~~~ 146 xmodmap.c:360:8: note: here 147 case 's': 148 ^~~~ 149 150 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 151 152commit 9067c5b2aac51cdd1e45d5652a2a43db6c440cac 153Author: Mihail Konev <k.mvc@ya.ru> 154Date: Thu Jan 26 14:00:21 2017 +1000 155 156 autogen: add default patch prefix 157 158 Signed-off-by: Mihail Konev <k.mvc@ya.ru> 159 160commit dd8de1b4eebd39b36566bdeb2c8bc594add7c1a8 161Author: Emil Velikov <emil.l.velikov@gmail.com> 162Date: Mon Mar 9 12:00:52 2015 +0000 163 164 autogen.sh: use quoted string variables 165 166 Place quotes around the $srcdir, $ORIGDIR and $0 variables to prevent 167 fall-outs, when they contain space. 168 169 Signed-off-by: Emil Velikov <emil.l.velikov@gmail.com> 170 Reviewed-by: Peter Hutterer <peter.hutterer@who-t.net> 171 Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net> 172 173commit 29e2bd5a257a4f60c1729ab823ed990597294ffc 174Author: Peter Hutterer <peter.hutterer@who-t.net> 175Date: Tue Jan 24 10:32:07 2017 +1000 176 177 autogen.sh: use exec instead of waiting for configure to finish 178 179 Syncs the invocation of configure with the one from the server. 180 181 Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net> 182 Reviewed-by: Emil Velikov <emil.velikov@collabora.com> 183 184commit 6d5aa481669cdbf2f0cb83bb0b8f142ba94307ae 185Author: Matthew Green <mrg@NetBSD.org> 186Date: Mon Jul 20 10:22:43 2015 +0200 187 188 Properly hide config.h behind HAVE_CONFIG_H. 189 190 Signed-off-by: Thomas Klausner <wiz@NetBSD.org> 191 Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com> 192 193commit 1e0d98566d01fb5da9836e1fc402fb28f8d8b499 194Author: Alan Coopersmith <alan.coopersmith@oracle.com> 195Date: Fri Apr 17 00:06:59 2015 -0700 196 197 xmodmap 1.0.9 198 199 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 200 201commit d50db4361a57062f9c0c0a1c6c18d296e11dd4bf 202Author: Alan Coopersmith <alan.coopersmith@oracle.com> 203Date: Fri Aug 1 23:20:34 2014 -0700 204 205 Remove unneeded casts on malloc, realloc, and free calls 206 207 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 208 209commit 02f145f175894399fed33992e4e7e5a87d7e7a2a 210Author: Alan Coopersmith <alan.coopersmith@oracle.com> 211Date: Fri Aug 1 23:15:29 2014 -0700 212 213 Avoid null pointer use if malloc() fails 214 215 Error: Null pointer dereference (CWE 476) 216 Read from null pointer str 217 at line 282 of handle.c in function 'parse_number'. 218 Function copy_to_scratch may return constant 'NULL' at line 98, 219 called at line 875 in function 'do_pointer'. 220 Constant 'NULL' passed into function parse_number, argument str, 221 from call at line 876. 222 Null pointer introduced at line 98 in function 'copy_to_scratch'. 223 224 [ This bug was found by the Parfait 1.4.0 bug checking tool. 225 http://labs.oracle.com/pls/apex/f?p=labs:49:::::P49_PROJECT_ID:13 ] 226 227 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 228 229commit e320555a2281ff6b5ad9409480a62c976a289dc1 230Author: Alan Coopersmith <alan.coopersmith@oracle.com> 231Date: Sun Jun 1 00:13:58 2014 -0700 232 233 Print which option was in error along with usage message 234 235 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 236 237commit 82f549d1c8780538fb115ee2768d2f4024d302b2 238Author: Alan Coopersmith <alan.coopersmith@oracle.com> 239Date: Sat May 31 23:49:27 2014 -0700 240 241 Add -version option to print program version 242 243 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 244 245commit 156921246c26f5e12790d52b8b9f395a56f61c87 246Author: Alan Coopersmith <alan.coopersmith@oracle.com> 247Date: Sat May 31 23:41:50 2014 -0700 248 249 autogen.sh: Honor NOCONFIGURE=1 250 251 See http://people.gnome.org/~walters/docs/build-api.txt 252 253 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 254 255commit c624c9c29ed4af8f941108368786ddb5f0d55ba6 256Author: Alan Coopersmith <alan.coopersmith@oracle.com> 257Date: Sat May 31 23:41:50 2014 -0700 258 259 configure: Drop AM_MAINTAINER_MODE 260 261 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 262 263commit e09a9195be80bd29c59f56e641dda52789d837b5 264Author: Alan Coopersmith <alan.coopersmith@oracle.com> 265Date: Sun Sep 8 10:05:00 2013 -0700 266 267 xmodmap 1.0.8 268 269 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 270 271commit 0a0818fd69cf7711e70a686758b8714f39ae1df1 272Author: Alan Coopersmith <alan.coopersmith@oracle.com> 273Date: Sun Sep 8 10:02:26 2013 -0700 274 275 Add missing copyright dates from xmodmap.man to COPYING 276 277 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 278 279commit 2d288dfa7fd5f9f88939f2842202e1b7eb7aca87 280Author: Alan Coopersmith <alan.coopersmith@oracle.com> 281Date: Fri Sep 6 15:56:02 2013 -0700 282 283 Allow printing -help & -grammar messages without a valid DISPLAY 284 285 If a user just wants to see syntax hints, don't require XOpenDisplay() 286 to succeed when we're not going to use it. 287 288 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 289 290commit bf4620e2d78d2a4766948f136f2372a596ac275d 291Author: Stéphane Aulery <lkppo@free.fr> 292Date: Sun Jun 30 01:50:58 2013 +0200 293 294 error in manpage example about swapping Control_L/Caps_Lock keys 295 296 Reported by Luca Capello at 297 http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=641588 298 299 Signed-off-by: Luca Capello <luca@pca.it> 300 Signed-off-by: Stéphane Aulery <lkppo@free.fr> 301 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 302 303commit f784ef30fdbd1b32aacf44537d9e7c85d268465b 304Author: Jon TURNEY <jon.turney@dronecode.org.uk> 305Date: Wed Jan 4 19:07:03 2012 +0000 306 307 Include X11/Xwindows.h on WIN32 308 309 Signed-off-by: Jon TURNEY <jon.turney@dronecode.org.uk> 310 Reviewed-by: Yaakov Selkowitz <yselkowitz@users.sourceforge.net> 311 312commit 42f99a7a7b836f6f9704a7b1747eb722c93446ec 313Author: Alan Coopersmith <alan.coopersmith@oracle.com> 314Date: Mon Apr 23 07:28:39 2012 -0700 315 316 include config.h before stdio.h & other system headers 317 318 Ensures definitions like _GNU_SOURCE are visible when needed. 319 320 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 321 Reviewed-by: Peter Hutterer <peter.hutterer@who-t.net> 322 323commit f857804dd904c69de447f4117220db149d9239ec 324Author: Alan Coopersmith <alan.coopersmith@oracle.com> 325Date: Fri Apr 20 14:09:31 2012 -0700 326 327 xmodmap 1.0.7 328 329 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 330 331commit 5d24213a01231345848d378cb55186fbe7996504 332Author: Alan Coopersmith <alan.coopersmith@oracle.com> 333Date: Sat Apr 14 14:37:55 2012 -0700 334 335 Add AC_USE_SYSTEM_EXTENSIONS to expose asprintf() in GNU libc headers 336 337 Fixes https://bugs.freedesktop.org/show_bug.cgi?id=48696 338 339 Reported-by: Dominique Leuenberger 340 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 341 Reviewed-by: Julien Cristau <jcristau@debian.org> 342 343commit 1aebb2e8b358c26b36ca4a9c063180479ee38557 344Author: Alan Coopersmith <alan.coopersmith@oracle.com> 345Date: Sat Apr 14 14:34:39 2012 -0700 346 347 config: Add missing AC_CONFIG_SRCDIR 348 349 Regroup AC statements under the Autoconf initialization section. 350 Regroup AM statements under the Automake initialization section. 351 352 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 353 354commit b355a23e6787f348db97faaa48085428277c659b 355Author: Alan Coopersmith <alan.coopersmith@oracle.com> 356Date: Thu Mar 22 23:04:32 2012 -0700 357 358 xmodmap 1.0.6 359 360 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 361 362commit d0dfd2128e6111b967c51136d97093d3b53ee6d6 363Author: Alan Coopersmith <alan.coopersmith@oracle.com> 364Date: Fri Nov 11 21:07:30 2011 -0800 365 366 Replace chk_malloc + sprintf with asprintf 367 368 Includes local private copy of asprintf for OS'es without it in libc. 369 Removes chk_malloc as no callers remain anymore. 370 371 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 372 Reviewed-by: Jeremy Huddleston <jeremyhu@apple.com> 373 374commit fecb1f5a0c2121de6d9209fc9525ac7d9b9555ea 375Author: Alan Coopersmith <alan.coopersmith@oracle.com> 376Date: Fri Nov 11 20:46:00 2011 -0800 377 378 Free copy of input line at end of process_line instead of leaking it 379 380 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 381 Reviewed-by: Jeremy Huddleston <jeremyhu@apple.com> 382 383commit 66c09c83aa2f64b31dc657f90447c269621545b7 384Author: Alan Coopersmith <alan.coopersmith@oracle.com> 385Date: Fri Nov 11 20:40:18 2011 -0800 386 387 Fix gcc -Wwrite-strings warnings 388 389 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 390 Reviewed-by: Jeremy Huddleston <jeremyhu@apple.com> 391 392commit 8751095511c7d9065ab12a40e90e38bdd9d728e4 393Author: Jeremy Huddleston <jeremyhu@apple.com> 394Date: Fri Nov 11 11:22:43 2011 -0800 395 396 Add missing _X_NORETURN to functions that need it 397 398 Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com> 399 400commit c71811ebe193cecc4add4c2d9cec751fc721343b 401Author: Jeremy Huddleston <jeremyhu@apple.com> 402Date: Fri Nov 11 11:21:45 2011 -0800 403 404 Include strings.h for strcasecmp 405 406 Our minimum requirement for X11 is currently Unix98. Unix98 provides 407 strcasecmp in <strings.h>. This commit fixes implicit declarations 408 of this function on systems that closely adhere to the standard. 409 410 Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com> 411 412commit b6b5bc9e9874934dd1c1b80a1aa0c0b1c454eab2 413Author: Jeremy Huddleston <jeremyhu@apple.com> 414Date: Sat May 7 22:05:16 2011 -0700 415 416 Improve error handling in copy_to_scratch 417 418 handle.c:95:5: warning: Array access (from variable 'buf') results in a null pointer dereference 419 buf[len] = '\0'; 420 ^~~ 421 422 Found-by: clang static analyzer 423 Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com> 424 425commit 1f801eea5f4d17b83aee1170423d65a74e01a138 426Author: Jeremy Huddleston <jeremyhu@apple.com> 427Date: Sat May 7 21:45:22 2011 -0700 428 429 Dead code removal 430 431 xmodmap.c:159:5: warning: Value stored to 'status' is never read 432 status = 0; 433 ^ ~ 434 435 Found-by: clang static analyzer 436 Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com> 437 438commit d427337286e0a8ac061d5acbc326e7bdb8b056a3 439Author: Gaetan Nadon <memsize@videotron.ca> 440Date: Fri Mar 4 20:50:41 2011 -0500 441 442 man: replace hard coded section with __appmansuffix__ 443 444 Signed-off-by: Gaetan Nadon <memsize@videotron.ca> 445 446commit 65011e8a86f64d5f7e9f39052e04e5ee7e57ce1b 447Author: Gaetan Nadon <memsize@videotron.ca> 448Date: Wed Jan 12 16:28:02 2011 -0500 449 450 config: replace deprecated AM_CONFIG_HEADER with AC_CONFIG_HEADERS 451 452 This silences an Autoconf warning 453 454commit ec2cab2dc9b6e7c804984320d8f560adbc3477ff 455Author: Jesse Adkins <jesserayadkins@gmail.com> 456Date: Tue Sep 28 13:29:50 2010 -0700 457 458 Purge cvs tags. 459 460 Signed-off-by: Jesse Adkins <jesserayadkins@gmail.com> 461 462commit 3fe64746bb6c3ede67c9967ebd216a8a39cdb2ea 463Author: Alan Coopersmith <alan.coopersmith@oracle.com> 464Date: Fri Sep 24 11:53:40 2010 -0700 465 466 xmodmap 1.0.5 467 468 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 469 470commit f6919f5958acc59d0b1936cc49900ea781bf2355 471Author: Alan Coopersmith <alan.coopersmith@oracle.com> 472Date: Fri Sep 24 11:52:18 2010 -0700 473 474 man page: Add setxkbmap & XStringToKeysym to the See Also list 475 476 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 477 478commit 663b798d1464be003b9659bbd00112d8b63f6f6f 479Author: Alan Coopersmith <alan.coopersmith@oracle.com> 480Date: Fri Sep 24 11:43:33 2010 -0700 481 482 config: Remove unnecessary calls from configure.ac 483 484 AC_PROG_CC & AC_PROG_INSTALL are provided by XORG_DEFAULT_OPTIONS now 485 PKG_CONFIG_MODULES handles AC_SUBST of the CFLAGS & LIBS variables 486 487 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 488 489commit 7ff4acd4c8cf2d97d321276d2616d199f81c7e16 490Author: Gaetan Nadon <memsize@videotron.ca> 491Date: Tue Jul 20 18:45:18 2010 -0400 492 493 config: update AC_PREREQ statement to 2.60 494 495 Unrelated to the previous patches, the new value simply reflects 496 the reality that the minimum level for autoconf to configure 497 all x.org modules is 2.60 dated June 2006. 498 499 ftp://ftp.gnu.org/gnu/autoconf/autoconf-2.60.tar.gz 500 501 Signed-off-by: Gaetan Nadon <memsize@videotron.ca> 502 503commit 22189c5be96e864b60f9c4cb8a0d9c3f142e849a 504Author: Alan Coopersmith <alan.coopersmith@oracle.com> 505Date: Tue Sep 21 18:12:09 2010 -0700 506 507 Sun's copyrights now belong to Oracle 508 509 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 510 511commit d1091f9fee901b5cdc589aa544c0a5616bf99d9d 512Author: Alan Coopersmith <alan.coopersmith@oracle.com> 513Date: Tue Sep 14 00:45:57 2010 -0700 514 515 Attempt to further improve keysym name info in man page 516 517 - Move it to the top of the grammar section since it applies to 518 multiple commands, not just the keysym KEYSYMNAME = KEYSYMNAME command 519 - Note that XKeysymDB supplements keysymdef.h, doesn't stand in place 520 of it. 521 - Add note about automatic mapping of Unicode characters to keysyms 522 523 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 524 525commit ffadc2376ede14285e2df8c43230d0d4ecca354f 526Author: Gaetan Nadon <memsize@videotron.ca> 527Date: Fri Aug 20 10:53:44 2010 -0400 528 529 config: upgrade to util-macros 1.8 for additional man page support 530 531 Use MAN_SUBST now supplied in XORG_MANPAGE_SECTIONS 532 The value of MAN_SUBST is the same for all X.Org packages. 533 534 Use AC_PROG_SED now supplied by XORG_DEFAULT_OPTIONS 535 Use the appropriate platform version of sed 536 537 Signed-off-by: Gaetan Nadon <memsize@videotron.ca> 538 539commit 5b493fd2d6edfca06113b09e6cbd6d6f1776399a 540Author: Alan Coopersmith <alan.coopersmith@sun.com> 541Date: Fri Jan 15 13:08:54 2010 -0800 542 543 Update Sun license notices to current X.Org standard form 544 545 Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com> 546 547commit bca4e6fdbe0e4f43c1c57dd9434c42741061407a 548Author: Julien Cristau <jcristau@debian.org> 549Date: Sun Dec 6 14:00:34 2009 +0100 550 551 Fix XKeysymDB path in manpage again 552 553 commit 4da097462b0b899e1790fd5a5f5e8ec811623c3d "Bug 21675 xmodmap 554 manpage states the wrong path to XKeysymDB" made it use the right path, 555 but had trailing whitespace in Makefile.am so the manpage ended up with 556 "/usr/share/X11 /XKeysymDB". 557 558commit 584cc13735613f7788e033707ff756937a787bfa 559Author: Gaetan Nadon <memsize@videotron.ca> 560Date: Thu Nov 26 09:19:54 2009 -0500 561 562 Makefile.am: add ChangeLog and INSTALL on MAINTAINERCLEANFILES 563 564 Now that the INSTALL file is generated. 565 Allows running make maintainer-clean. 566 567commit 27388cde37b85a4efe1e19715de4b574e350b81e 568Author: Gaetan Nadon <memsize@videotron.ca> 569Date: Wed Oct 28 14:09:08 2009 -0400 570 571 INSTALL, NEWS, README or AUTHORS files are missing/incorrect #24206 572 573 Add missing INSTALL file. Use standard GNU file on building tarball 574 README may have been updated 575 Remove AUTHORS file as it is empty and no content available yet. 576 Remove NEWS file as it is empty and no content available yet. 577 578commit 817f5345cf42ba4c903c62b5ff814e9c9e3fed3f 579Author: Gaetan Nadon <memsize@videotron.ca> 580Date: Tue Oct 27 15:07:25 2009 -0400 581 582 Deploy the new XORG_DEFAULT_OPTIONS #24242 583 584 This macro aggregate a number of existing macros that sets commmon 585 X.Org components configuration options. It shields the configuration file from 586 future changes. 587 588commit 775727681868d51ba82b7da429ca91f3af3783a0 589Author: Gaetan Nadon <memsize@videotron.ca> 590Date: Mon Oct 26 22:08:39 2009 -0400 591 592 Makefile.am: ChangeLog not required: EXTRA_DIST or *CLEANFILES #24432 593 594 ChangeLog filename is known to Automake and requires no further 595 coding in the makefile. 596 597commit ea18aba03dc1a8f14d63b43e1ce960f3cda2d7ea 598Author: Gaetan Nadon <memsize@videotron.ca> 599Date: Thu Oct 22 16:14:12 2009 -0400 600 601 Makefile.am: do not include autogen.sh in distribution #24183 602 603 This is a private build script that should not be distributed 604 605commit 719ab352112d53c113b45ed691e39c4411b8f653 606Author: Gaetan Nadon <memsize@videotron.ca> 607Date: Thu Oct 22 10:16:12 2009 -0400 608 609 .gitignore: use common defaults with custom section # 24239 610 611 Using common defaults will reduce errors and maintenance. 612 Only the very small or inexistent custom section need periodic maintenance 613 when the structure of the component changes. Do not edit defaults. 614 615commit 3a95c2e779ab94ad76a35f5800d2b72b5b73da45 616Author: Alan Coopersmith <alan.coopersmith@sun.com> 617Date: Sat Nov 7 15:11:33 2009 -0800 618 619 Add note to man page about mapping pointer buttons to 0 to disable 620 621 Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com> 622 623commit 95af7f0fa995ef1dd3a770c48ee3442f6279e936 624Author: Jeremy Huddleston <jeremyhu@freedesktop.org> 625Date: Wed Oct 21 12:47:21 2009 -0700 626 627 This is not a GNU project, so declare it foreign. 628 629 On Wed, 2009-10-21 at 13:36 +1000, Peter Hutterer wrote: 630 > On Tue, Oct 20, 2009 at 08:23:55PM -0700, Jeremy Huddleston wrote: 631 > > I noticed an INSTALL file in xlsclients and libXvMC today, and it 632 > > was quite annoying to work around since 'autoreconf -fvi' replaces 633 > > it and git wants to commit it. Should these files even be in git? 634 > > Can I nuke them for the betterment of humanity and since they get 635 > > created by autoreconf anyways? 636 > 637 > See https://bugs.freedesktop.org/show_bug.cgi?id=24206 638 639 As an interim measure, replace AM_INIT_AUTOMAKE([dist-bzip2]) with 640 AM_INIT_AUTOMAKE([foreign dist-bzip2]). This will prevent the generation 641 of the INSTALL file. It is also part of the 24206 solution. 642 643 Signed-off-by: Jeremy Huddleston <jeremyhu@freedesktop.org> 644 645commit 3f5223b0bc87b0b55d91ba8f1a8cedce0e25f974 646Author: Alan Coopersmith <alan.coopersmith@sun.com> 647Date: Mon Oct 5 20:41:49 2009 -0700 648 649 xmodmap 1.0.4 650 651 Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com> 652 653commit 6a24b39d0674ee35436bad6aa0fad8150cf2c427 654Author: Alan Coopersmith <alan.coopersmith@sun.com> 655Date: Mon Oct 5 20:40:45 2009 -0700 656 657 Add pointers to mailing lists, bugzilla, & git to README 658 659 Also delete empty INSTALL so automake installs the default one 660 661 Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com> 662 663commit 20a3ff72337c689ca46f140e594933df75d2bce4 664Author: Alan Coopersmith <alan.coopersmith@sun.com> 665Date: Mon Oct 5 20:38:40 2009 -0700 666 667 Migrate to xorg macros 1.3 & XORG_DEFAULT_OPTIONS 668 669 Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com> 670 671commit 4da097462b0b899e1790fd5a5f5e8ec811623c3d 672Author: Alan Coopersmith <alan.coopersmith@sun.com> 673Date: Mon May 11 10:16:29 2009 -0700 674 675 Bug 21675 xmodmap manpage states the wrong path to XKeysymDB 676 677 http://bugs.freedesktop.org/show_bug.cgi?id=21675 678 679 Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com> 680 681commit db17ca534037463051833eeaf6d09356c479565e 682Author: Paulo Cesar Pereira de Andrade <pcpa@mandriva.com.br> 683Date: Thu Jan 22 16:29:51 2009 -0200 684 685 Correct make distcheck. 686 687commit b45149922ee23a71efa013d3ef36ca4f6c6494be 688Author: Ben North <ben@redfrontdoor.org> 689Date: Tue Jan 20 18:26:27 2009 +0100 690 691 Skip whitespace for virtual button '0'. 692 693commit 8d9922bdc53c5538dbfbba65f5a3e15afc8aea91 694Author: Alan Coopersmith <alan.coopersmith@sun.com> 695Date: Mon Aug 6 15:58:57 2007 -0700 696 697 Version bump: 1.0.3 698 699commit 822b6bffce953041accc13f4633d2c5d4a8c8dcd 700Author: Alan Coopersmith <alan.coopersmith@sun.com> 701Date: Tue Jul 17 15:57:10 2007 -0700 702 703 Use strncasecmp if we can, instead of our own homegrown strncmp_nocase 704 705commit d76839f34692c7bc4ad1337ca23a3362534c1172 706Author: Alan Coopersmith <alan.coopersmith@sun.com> 707Date: Tue Jul 17 15:52:39 2007 -0700 708 709 Change usage messages from arrays of strings to simple const strings 710 711commit 658d0022a87c5d3afe3e006e539c5c1b981a8d73 712Author: Alan Coopersmith <alan.coopersmith@sun.com> 713Date: Tue Jul 17 13:27:50 2007 -0700 714 715 Constify some simple cases 716 717commit b7aafba248db5e9c3ba39e4819d0b9ae156d2c82 718Author: Alan Coopersmith <alan.coopersmith@sun.com> 719Date: Tue Jul 17 13:03:38 2007 -0700 720 721 sparse warning: non-ANSI definition of function 'process_file' & 'process_line' 722 723commit e1cb231b31be520b76aeb72acc1af9ff6682fa9d 724Author: Alan Coopersmith <alan.coopersmith@sun.com> 725Date: Tue Jul 17 13:01:07 2007 -0700 726 727 Add hooks for checking source code with lint/sparse/etc. 728 729commit eda127631001674cd40466fddb5225e618c2a327 730Author: Alan Coopersmith <alan.coopersmith@sun.com> 731Date: Tue Jul 17 12:54:16 2007 -0700 732 733 Remove unused code 734 735commit b57637a154a40e874a6bcb351aaa8335e86ae3c0 736Author: Alan Coopersmith <alan.coopersmith@sun.com> 737Date: Tue Jul 17 12:48:31 2007 -0700 738 739 Coverity #678: get_keysym_list: Returned without freeing storage "keysymlist" 740 741 Free allocated memory in error path when it's not being returned 742 743commit 72a01c6a3bae2cf113ab0ec812df41fec9b99a51 744Author: Alan Coopersmith <alan.coopersmith@sun.com> 745Date: Tue Jul 17 11:04:16 2007 -0700 746 747 Replace static ChangeLog with dist-hook to generate from git log 748 749commit 4dfbd74bda684bea748fbbcbfc172f6325423d12 750Author: Alan Coopersmith <alan.coopersmith@sun.com> 751Date: Tue Jul 17 10:37:57 2007 -0700 752 753 Use AM_CFLAGS instead of xmodmap_CFLAGS to avoid automake-1.10 warnings 754 755commit fd25acd688b86a1490198d61f66d2503a87883a0 756Author: Alan Coopersmith <alan.coopersmith@sun.com> 757Date: Wed Apr 11 15:30:16 2007 -0700 758 759 Bug 10616: manpage should note -pm is the default if no options are given 760 761 X.Org Bugzilla #10616 <https://bugs.freedesktop.org/show_bug.cgi?id=10616> 762 Reported upstream from 763 Debian Bug #236918 <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=236198> 764 765commit 15a83b060b9b4bd7d6a64eacc7191e33eb91b269 766Author: Adam Jackson <ajax@benzedrine.nwnk.net> 767Date: Fri Oct 13 17:55:42 2006 -0400 768 769 Bump to 1.0.2 770 771commit 27404e37e50fe637f33f6efac2fa73c9cfc1026c 772Author: Alan Coopersmith <alan.coopersmith@sun.com> 773Date: Wed Sep 13 15:08:59 2006 -0700 774 775 Add *~ to .gitignore to ignore emacs droppings 776 777commit 98063dc377dff55f1b057eda14ace69beed82c16 778Author: Alan Coopersmith <alan.coopersmith@sun.com> 779Date: Wed Sep 13 15:08:19 2006 -0700 780 781 renamed: .cvsignore -> .gitignore 782 783commit 86a4f2a2d66bbeb6c9deee9133eb335f593c47f9 784Author: Alan Coopersmith <alan.coopersmith@sun.com> 785Date: Wed Sep 13 15:07:16 2006 -0700 786 787 Sun bug 6459447: Add note on reversing CapsLock/Control swap to man page 788 789 http://bugs.opensolaris.org/bugdatabase/view_bug.do?bug_id=6459447 790 791commit 7410e78207ca01d70d9df14eb1e4e07e7fe5f237 792Author: Adam Jackson <ajax@nwnk.net> 793Date: Wed Apr 26 23:42:50 2006 +0000 794 795 Bump to 1.0.1 796 797commit e8a5353022f9e616c22a7a1659ff4d4d968f5d88 798Author: Matthias Hopf <mhopf@suse.de> 799Date: Wed Mar 22 15:14:31 2006 +0000 800 801 Allow changing of only a few buttons (not all). 802 803commit b9854ab5e66bf9ec8911d6573440738325cd51b4 804Author: Kevin E Martin <kem@kem.org> 805Date: Thu Dec 15 00:24:09 2005 +0000 806 807 Update package version number for final X11R7 release candidate. 808 809commit a01cd5fe1c387c62b11368e3fac100e24e7d841e 810Author: Kevin E Martin <kem@kem.org> 811Date: Tue Dec 6 22:48:24 2005 +0000 812 813 Change *man_SOURCES ==> *man_PRE to fix autotools warnings. 814 815commit d39efd733ad56391082b08f9f486cf147e931197 816Author: Kevin E Martin <kem@kem.org> 817Date: Sat Dec 3 05:49:26 2005 +0000 818 819 Update package version number for X11R7 RC3 release. 820 821commit 8a0747a21f9737212784c55b62044e86caf1fbc8 822Author: Alan Coopersmith <Alan.Coopersmith@sun.com> 823Date: Mon Nov 28 22:01:45 2005 +0000 824 825 Change *mandir targets to use new *_MAN_DIR variables set by xorg-macros.m4 826 update to fix bug #5167 (Linux prefers *.1x man pages in man1 subdir) 827 828commit 5e4dec81bffb5f296773c43aa45f52dc354c1886 829Author: Eric Anholt <anholt@freebsd.org> 830Date: Mon Nov 21 10:35:05 2005 +0000 831 832 Another pass at .cvsignores for apps. 833 834commit f9c0b2a947ea8690ac73e8f9ce857cd195551c01 835Author: Eric Anholt <anholt@freebsd.org> 836Date: Sun Nov 20 22:08:54 2005 +0000 837 838 Add/improve .cvsignore files for apps. 839 840commit 65fb2a168c968e486be090caad29349427e4d65e 841Author: Kevin E Martin <kem@kem.org> 842Date: Wed Oct 19 02:47:56 2005 +0000 843 844 Update package version number for RC1 release. 845 846commit 4c47648e4789efe03eec74c39b2ab6b9b27230fc 847Author: Alan Coopersmith <Alan.Coopersmith@sun.com> 848Date: Mon Oct 17 23:56:24 2005 +0000 849 850 Use @APP_MAN_SUFFIX@ instead of $(APP_MAN_SUFFIX) in macro substitutions to 851 work better with BSD make 852 853commit 356f26e95eb7003f9f65ffe480773f0d788dc871 854Author: Alan Coopersmith <Alan.Coopersmith@sun.com> 855Date: Fri Oct 14 00:25:47 2005 +0000 856 857 Use sed to fill in variables in man page 858 859commit c4483b314106bcd2bb13e49650cfd279f74da73e 860Author: Kristian Høgsberg <krh@redhat.com> 861Date: Wed Sep 28 19:28:15 2005 +0000 862 863 Copy bits from COPYING here. 864 Copy first paragraph from man page. 865 Add swap.km. 866 867commit 149fc373521b4ceb33e37c693834a27a702fcc2b 868Author: Kevin E Martin <kem@kem.org> 869Date: Fri Jul 29 21:22:36 2005 +0000 870 871 Various changes preparing packages for RC0: 872 - Verify and update package version numbers as needed 873 - Implement versioning scheme 874 - Change bug address to point to bugzilla bug entry form 875 - Disable loadable i18n in libX11 by default (use --enable-loadable-i18n to 876 reenable it) 877 - Fix makedepend to use pkgconfig and pass distcheck 878 - Update build script to build macros first 879 - Update modular Xorg version 880 881commit 327ffdf93fd0b8f7942c08653cb644be2062428c 882Author: Kevin E Martin <kem@kem.org> 883Date: Thu Jul 28 02:58:59 2005 +0000 884 885 Add build system for xmodmap Add xmodmap to build script 886 887commit 9145de293109ba96fc8b97ac59c16c51b992f416 888Author: Kristian Høgsberg <krh@redhat.com> 889Date: Thu Nov 11 15:37:01 2004 +0000 890 891 Fix #1818 892 893commit d9e41011e4477f581fb5592ad81fc081e0b606b9 894Author: Alan Coopersmith <Alan.Coopersmith@sun.com> 895Date: Sat Oct 30 20:33:44 2004 +0000 896 897 Add -d flag for compilers like the Sun C compilers that produce dependency 898 lists themselves. To use with the Sun compilers, add to host.def: # 899 define UseCCMakeDepend YES # define DependFlags -cc $(CC) -d -xM (Sun 900 bug id #4245688 - fix by Alan Coopersmith) 901 Add Solaris to the platforms on which mprotect is run to set execute 902 permissions when necessary. (Sun bug id #6175128 - fix by Alan 903 Coopersmith) 904 Internationalize digital output (Sun bug id #4119396 - fix by Steve 905 Swales), add -bgpixmap option to set XPM file as background (originally 906 from STSF project version of xclock by Alan Coopersmith) 907 xc/programs/xmodmap/handle.c,pf.c xmodmap was printing line numbers which 908 are one too low in error messages (Xorg bugzilla #1739, Sun bug id 909 4637857 - fix by Sam Lau) 910 911commit ce64b2b312a73b9a4f266da8810ab552af4fbb1e 912Author: Søren Sandmann Pedersen <sandmann@daimi.au.dk> 913Date: Fri Oct 15 00:44:08 2004 +0000 914 915 Thu Oct 14 20:43:03 2004 Søren Sandmann <sandmann@redhat.com> 916 Fix a write-to-constant-string issue. 917 Fix several buffer overruns. 918 919commit 8ad5d3b908d68353d407fa8f678c93320760eb12 920Author: Egbert Eich <eich@suse.de> 921Date: Fri Apr 23 19:54:59 2004 +0000 922 923 Merging XORG-CURRENT into trunk 924 925commit 536ef73f2a5310f25c99a9c3a41f71d032ef95a6 926Author: Egbert Eich <eich@suse.de> 927Date: Sun Mar 14 08:35:42 2004 +0000 928 929 Importing vendor version xf86-4_4_99_1 on Sun Mar 14 00:26:39 PST 2004 930 931commit 11073ef989618e076133b1f58be7a406ba373b1b 932Author: Egbert Eich <eich@suse.de> 933Date: Wed Mar 3 12:13:15 2004 +0000 934 935 Importing vendor version xf86-4_4_0 on Wed Mar 3 04:09:24 PST 2004 936 937commit e8ce00f47c06ea1bfcfd6538a80a10b868cee19e 938Author: Egbert Eich <eich@suse.de> 939Date: Thu Feb 26 13:36:26 2004 +0000 940 941 readding XFree86's cvs IDs 942 943commit 072ef0f49182d381ac7e630eccd1b5b6749334a7 944Author: Egbert Eich <eich@suse.de> 945Date: Thu Feb 26 09:24:14 2004 +0000 946 947 Importing vendor version xf86-4_3_99_903 on Wed Feb 26 01:21:00 PST 2004 948 949commit eb9faf624f11691c4ca7344f4169117718cea9c7 950Author: Kaleb Keithley <kaleb@freedesktop.org> 951Date: Thu Dec 4 22:03:56 2003 +0000 952 953 XFree86 4.3.99.901 (RC 1) 954 955commit d678c60d8b5bede9e61f532aa1740d741b8bbe90 956Author: Kaleb Keithley <kaleb@freedesktop.org> 957Date: Tue Nov 25 19:29:15 2003 +0000 958 959 XFree86 4.3.99.16 Bring the tree up to date for the Cygwin folks 960 961commit dc0f15394719e18bb9b01e70468f4d9908488d35 962Author: Kaleb Keithley <kaleb@freedesktop.org> 963Date: Fri Nov 14 16:49:23 2003 +0000 964 965 XFree86 4.3.0.1 966 967commit e29f1f1ed2128d7382a72ccb1684045fe4bc8183 968Author: Kaleb Keithley <kaleb@freedesktop.org> 969Date: Fri Nov 14 15:54:54 2003 +0000 970 971 R6.6 is the Xorg base-line 972