commit 39a5f8e67615f443e76146769d5f5f9abc5ebd2f Author: Alan Coopersmith Date: Sun Feb 4 14:06:06 2024 -0800 libxkbfile 1.1.3 Signed-off-by: Alan Coopersmith commit c0888158e30bfcd0ae6881b9d78c8122ce2d5f4e Author: Alan Coopersmith Date: Sat Nov 4 15:40:40 2023 -0700 Add a meson build system Signed-off-by: Alan Coopersmith commit 752d9cbc0efc51bdef2ea25fba2b92974327f6a6 Author: Alan Coopersmith Date: Sun Oct 8 13:32:21 2023 -0700 Fix -Wsign-compare warnings in xkbtext.c & xkmread.c xkbtext.c: In function ‘XkbNKNDetailMaskText’: xkbtext.c:588:37: warning: comparison of integer expressions of different signedness: ‘int’ and ‘long unsigned int’ [-Wsign-compare] 588 | for (len = 0, i = 0, bit = 1; i < NUM_NKN; i++, bit <<= 1) { | ^ xkbtext.c:597:37: warning: comparison of integer expressions of different signedness: ‘int’ and ‘long unsigned int’ [-Wsign-compare] 597 | for (len = 0, i = 0, bit = 1; i < NUM_NKN; i++, bit <<= 1) { | ^ xkmread.c: In function ‘XkmSkipPadding’: xkmread.c:118:19: warning: comparison of integer expressions of different signedness: ‘int’ and ‘unsigned int’ [-Wsign-compare] 118 | for (i = 0; i < pad; i++) { | ^ xkmread.c: In function ‘ReadXkmKeycodes’: xkmread.c:254:54: warning: comparison of integer expressions of different signedness: ‘int’ and ‘unsigned int’ [-Wsign-compare] 254 | for (pAl = xkb->names->key_aliases, i = 0; i < nAl; i++, pAl++) { | ^ xkmread.c: In function ‘ReadXkmCompatMap’: xkmread.c:452:19: warning: comparison of integer expressions of different signedness: ‘int’ and ‘unsigned int’ [-Wsign-compare] 452 | for (i = 0; i < num_si; i++, interp++) { | ^ Signed-off-by: Alan Coopersmith commit f908dc6c1205feb66f3538096f24e2ee22947893 Author: Alan Coopersmith Date: Sun Oct 8 13:26:51 2023 -0700 XkbIndentText: Fix -Wsign-compare warning xkbtext.c: In function ‘XkbIndentText’: xkbtext.c:1529:19: warning: comparison of integer expressions of different signedness: ‘int’ and ‘unsigned int’ [-Wsign-compare] 1529 | for (i = 0; i < size; i++) { | ^ Signed-off-by: Alan Coopersmith commit 8a91517ca6ea77633476595b0eb5b213357c60e5 Author: Alan Coopersmith Date: Sun Oct 8 13:22:13 2023 -0700 xkbtext.c: Add tbGetBufferString helper function Handles common case of allocating & copying string to temporary buffer As a side effect, clears up gcc warning: xkbtext.c: In function ‘XkbBehaviorText’: xkbtext.c:1476:19: warning: declaration of ‘tmp’ shadows a previous local [-Wshadow] 1476 | char *tmp; | ^~~ xkbtext.c:1457:21: note: shadowed declaration is here 1457 | char buf[256], *tmp; | ^~~ Signed-off-by: Alan Coopersmith commit 4e7bae89a887b189aa4c5e551ce0fba4a763df1a Author: Alan Coopersmith Date: Sun Oct 8 12:45:41 2023 -0700 DefaultParser: avoid -Wimplicit-fallthrough warnings Clears up 24 warnings from gcc 12 of the form: xkbconfig.c: In function ‘DefaultParser’: xkbconfig.c:469:36: warning: this statement may fall through [-Wimplicit-fallthrough=] 469 | case _XkbCF_RulesFile: if (!str) str = &rtrn->rules_file; | ^ xkbconfig.c:470:5: note: here 470 | case _XkbCF_Model: if (!str) str = &rtrn->model; | ^~~~ Signed-off-by: Alan Coopersmith commit 8f5e188675d81a8310a1f50f0675a7d421cc53e9 Author: Alan Coopersmith Date: Sun Oct 8 12:20:59 2023 -0700 XkbWriteCFile: stop leaking header file ifdef name Found by gcc 12 analyzer: cout.c:1106:8: warning: leak of ‘hdrdef’ [CWE-401] [-Wanalyzer-malloc-leak] 1106 | if (!ok) { | ^ Signed-off-by: Alan Coopersmith commit d4eef750160356c8a9dc55d5e28c3546f8ef5418 Author: Alan Coopersmith Date: Sun Oct 8 12:12:30 2023 -0700 XkbCFReportError: avoid -Wformat-nonliteral warning xkbconfig.c: In function ‘XkbCFReportError’: xkbconfig.c:1344:5: warning: format not a string literal, argument types not checked [-Wformat-nonliteral] 1344 | fprintf(file, msg, line); | ^~~~~~~ Signed-off-by: Alan Coopersmith commit 340dd95c6a566b01bfaf9ce2baa0b49f07e3ac22 Author: Alan Coopersmith Date: Sun Oct 8 12:02:58 2023 -0700 XkbChangeAtomDisplay: stop leaking atom name Found by gcc 12 analyzer: xkbatom.c: In function ‘XkbChangeAtomDisplay’: xkbatom.c:218:16: warning: leak of ‘tmp’ [CWE-401] [-Wanalyzer-malloc-leak] xkbatom.c:220:12: warning: leak of ‘tmp’ [CWE-401] [-Wanalyzer-malloc-leak] 220 | return XInternAtom(dpy, name, onlyIfExists); | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Fixes: 5e5bd09 ("Fix offline operation.") Signed-off-by: Alan Coopersmith commit a8c782571d3b2419404f3a623f4b5396cd5e7aa4 Author: Alan Coopersmith Date: Sun Oct 8 11:34:00 2023 -0700 _XkbInitAtoms: check for malloc() failure Handles gcc 12 analyzer warning: xkbatom.c: In function ‘_XkbInitAtoms’: xkbatom.c:194:21: warning: dereference of possibly-NULL ‘nodeTable’ [CWE-690] [-Wanalyzer-possible-null-dereference] 194 | nodeTable[None] = (NodePtr) NULL; | ^ Signed-off-by: Alan Coopersmith commit d44b8926620bf6d033062557441d1aa935a0ac02 Author: Alan Coopersmith Date: Sun Oct 8 11:24:05 2023 -0700 _XkbMakeAtom: remove check for impossible case nd->string is always the result of a new allocation, so can never be equal to string. This resolves a warning from the gcc 12 analyzer, which reported a memory leak if the impossible condition was ever true: In file included from xkbatom.c:85: xkbatom.c: In function ‘_XkbMakeAtom’: XKBfileInt.h:51:33: warning: leak of ‘’ [CWE-401] [-Wanalyzer-malloc-leak] [...] | 158 | if (!table) { | | ^ | | | | | (15) following ‘true’ branch (when ‘table’ is NULL)... | 159 | if (nd->string != string) | | ~~ ~ | | | | | | | (17) following ‘false’ branch... | | (16) ...to here | 161 | _XkbFree(nd); | | ^~~~~~~~ Signed-off-by: Alan Coopersmith commit 20b6672a6d7d5531ff1db1e5af762c052bf883bf Author: Alan Coopersmith Date: Sat Mar 25 13:13:44 2023 -0700 Set close-on-exec when opening files Signed-off-by: Alan Coopersmith commit 8f8a0a4f798bddcf402fecb0ac60e18f027ff276 Author: Alan Coopersmith Date: Sat Mar 4 10:44:45 2023 -0800 configure: Use LT_INIT from libtool 2 instead of deprecated AC_PROG_LIBTOOL AC_PROG_LIBTOOL was replaced by LT_INIT in libtool 2 in 2008, so it's time to rely on it. Clears autoconf warnings: configure.ac:35: warning: The macro `AC_PROG_LIBTOOL' is obsolete. configure.ac:35: You should run autoupdate. aclocal.m4:3465: AC_PROG_LIBTOOL is expanded from... configure.ac:35: the top level libtoolize: Consider adding 'AC_CONFIG_MACRO_DIRS([m4])' to configure.ac, libtoolize: and rerunning libtoolize and aclocal. Signed-off-by: Alan Coopersmith commit 3c0bca45d61982295ae0051fb874d57dc3d6f327 Author: Matt Turner Date: Thu Dec 8 10:39:07 2022 -0500 libxkbfile 1.1.2 Signed-off-by: Matt Turner commit b7c76402831a91a4f0867c03e2f403c9c4c7dca1 Author: Matt Turner Date: Tue Nov 29 12:07:53 2022 -0500 configure: Use AC_SYS_LARGEFILE to enable large file support Signed-off-by: Matt Turner commit f855ea9cf3aecc74c3b07da924ff2e36944e4be1 Author: Alan Coopersmith Date: Mon Oct 17 19:00:30 2022 -0700 libxkbfile 1.1.1 Signed-off-by: Alan Coopersmith commit 04336c9260b2d130f57fcf3dedc3ba73bb45889d Author: Ran Benita Date: Wed Aug 29 12:33:33 2012 +0300 Fix check for appending '|' character when applying rules There are two ways to separate multiple files in XKB include statements: '+' will cause the later file to override the first in case of conflict, while '|' will cause it augment it (this is done by xkbcomp). '!' is unrelated here. Currently, if someone tries to use '|' in a rule instead of '+', it won't have any effect. Since '|' is practically never used, this wasn't noticed. Signed-off-by: Ran Benita commit 6fa239504743475d566f53c278dae0f651ea199c Author: Alan Coopersmith Date: Sun Jul 17 15:41:39 2022 -0700 gitlab CI: add a basic build test Signed-off-by: Alan Coopersmith commit 4939a3e9d584ab46f1d082f6a61b3cd307614150 Author: Alan Coopersmith Date: Sun Jul 17 15:40:34 2022 -0700 Fix spelling/wording issues Found by using: codespell --builtin clear,rare,usage,informal,code,names Signed-off-by: Alan Coopersmith commit 849d0b22ec46bee1f72170722bde8d493ce163ba Author: Alan Coopersmith Date: Sun Jul 17 15:39:10 2022 -0700 Build xz tarballs instead of bzip2 Signed-off-by: Alan Coopersmith commit e51e5c704c5bd7a91233b37f0cf4beaef6f06a5d Author: Benno Schulenberg Date: Sun Jun 5 09:15:05 2022 +0200 fix an off-by-one error in copying the name of a virtual modifier This fixes issue #9. Bug existed since commit 816a8db326 from sixteen years ago. Signed-off-by: Benno Schulenberg commit 8e45c7f55dcb35ae710a223a28fb6d6443c711c6 Author: Peter Hutterer Date: Wed Sep 2 14:19:44 2020 +1000 unifdef NOTYET This has been ifdef'd out since at least 2003, time to accept that it won't be handled. One part was unreachable code anyway, the second part affects GeomDoodads which are unnecessary and barely used anyway. Signed-off-by: Peter Hutterer commit 81e8b72daf3ad0a3f36e4ae0ef6b38e427e251b5 Author: Peter Hutterer Date: Fri Jun 19 14:34:51 2020 +1000 Escape non-printable characters correctly This is the equivalent patch to xserver commit eaf1f72ed8994b708d94ec2de7b1a99f5c4a39b8: XkbStringText escapes non-printable characters using octal numbers. Such escape sequence would be at most 5 characters long ("\0123"), so it reserves 5 bytes in the buffer. Due to char->unsigned int conversion, it would print much longer string for negative numbers. Fixes https://gitlab.freedesktop.org/xorg/lib/libxkbfile/-/issues/8 Signed-off-by: Peter Hutterer commit 6c4de3386ee102040fc567708958a60a9d254b02 Author: Alan Coopersmith Date: Fri Mar 29 19:07:43 2019 -0700 Convert check for strcasecmp to normal autoconf style Signed-off-by: Alan Coopersmith commit 2d017a68e12acf2463edc9cfbdae0aea3ce477b1 Author: Alan Coopersmith Date: Fri Mar 29 19:02:51 2019 -0700 Use strndup if available to avoid -Wstringop-overflow warning from gcc 9 Reported in https://gitlab.freedesktop.org/xorg/lib/libxkbfile/issues/5 Signed-off-by: Alan Coopersmith commit 261992d42905f209cd5bf6afcf8a7ae3aa30b3ff Author: Alan Coopersmith Date: Sat Mar 16 11:30:41 2019 -0700 libxkbfile 1.1.0 Signed-off-by: Alan Coopersmith commit 306087b60496d6493323433573ee9b9fb392dd7b Author: Alan Coopersmith Date: Sat Mar 16 11:22:06 2019 -0700 Add description of libxkbfile to README.md Signed-off-by: Alan Coopersmith commit 28822317438b6800435145a0312dbce59a03eaa3 Author: Alan Coopersmith Date: Fri Dec 7 19:44:24 2018 -0800 Update configure.ac bug URL for gitlab migration Signed-off-by: Alan Coopersmith commit 340581e83d57414b5f33fd2f9f22fdfebf0d4b8d Author: Alan Coopersmith Date: Mon Nov 19 23:07:00 2018 -0800 Update README for gitlab migration Signed-off-by: Alan Coopersmith commit b660c757e308b7c561dba16d45d18863bfa2973e Author: Alan Coopersmith Date: Sat Nov 10 13:21:42 2018 -0800 Remove obsolete B16 & B32 tags in struct definitions Signed-off-by: Alan Coopersmith commit d2ec504fec2550f4fd046e801b34317ef4a4bab9 Author: Martin Burggraf Date: Thu Aug 13 21:16:40 2015 +0200 correcting mathematical nonsense V2: Fixing the issue with numbers between 0 -1 Reviewed-by: Alan Coopersmith Signed-off-by: Alan Coopersmith commit 1c070d1153e293169909b0fc8e9ff65be9121fa0 Author: Mihail Konev Date: Thu Jan 26 13:52:49 2017 +1000 autogen: add default patch prefix Signed-off-by: Mihail Konev commit 9e39e36316f3dd28b1fd6f71562ec93bce2da35a Author: Emil Velikov Date: Mon Mar 9 12:00:52 2015 +0000 autogen.sh: use quoted string variables Place quotes around the $srcdir, $ORIGDIR and $0 variables to prevent fall-outs, when they contain space. Signed-off-by: Emil Velikov Reviewed-by: Peter Hutterer Signed-off-by: Peter Hutterer commit cfea939bb7d61d51b74493d77294010ddef490f0 Author: Peter Hutterer Date: Tue Jan 24 10:32:07 2017 +1000 autogen.sh: use exec instead of waiting for configure to finish Syncs the invocation of configure with the one from the server. Signed-off-by: Peter Hutterer Reviewed-by: Emil Velikov commit 56fa447282c47bf23d05e18a42bbd0184dbd8302 Author: Andreas Wettstein Date: Sat Feb 15 17:35:50 2014 +0100 Fix mistyped argument of sizeof A pointer rather than the buffer was given to sizeof. As the data to be written is only one or two bytes, a pointer size is at least four bytes, and the buffer has 32 bytes, this error did not have negative effects. Signed-off-by: Andreas Wettstein Reviewed-by: Alan Coopersmith Signed-off-by: Alan Coopersmith commit a594dde52b7903feab839f5cfe08755753aca20e Author: Andreas Wettstein Date: Sat Feb 15 17:35:29 2014 +0100 Add support for genKeyEvent flag ActionMessage has an optional flag genKeyEvent. This change makes sure this flag is printed when it is set. Signed-off-by: Andreas Wettstein Reviewed-By: Ran Benita Signed-off-by: Alan Coopersmith commit 6223ec08213cb8cc546418690c27e0fdd4f0addd Author: Andreas Wettstein Date: Sat Feb 15 17:35:09 2014 +0100 Add missing support for NoLock and NoUnlock flags The LockMods, ISOLock and LockControls support an "affect" flag to selectively enable and disable locking and unlocking for these actions. This change adds output of these flags. Signed-off-by: Andreas Wettstein Reviewed-By: Ran Benita Signed-off-by: Alan Coopersmith commit de4f2307448583988a55a587cb6a3f43e4868378 Author: Alan Coopersmith Date: Thu Apr 30 22:24:39 2015 -0700 libxkbfile 1.0.9 Signed-off-by: Alan Coopersmith commit 9fa04388dcbb5bf205319569f540a62c03754688 Author: Jörg Sonnenberger Date: Wed Nov 26 14:33:38 2014 +0100 Remove unnecessary check. The vmods member of XkbNamesPtr is an array and thus never NULL. Signed-off-by: Thomas Klausner Signed-off-by: Peter Hutterer commit 8a2381c13aecfdb42d85967e060c8818b86119d2 Author: Alan Coopersmith Date: Sat Nov 8 09:33:35 2014 -0800 Remove check to see if SEEK_SET is defined before using it Other references to SEEK_SET in this file are made without checking, since they assume everyone has either reached C89 by now or will use the fallback #define at the top of the file, so we can stop checking here as well. Signed-off-by: Alan Coopersmith commit 3b460259d0d21f9876cacd7e1f305d77b76724f7 Author: Alan Coopersmith Date: Sun Oct 20 12:05:15 2013 -0700 Constify atom name argument to XkbInternAtom Matches XInternAtom, which it wraps, and quiets a bunch of const warnings in xkbcomp. Signed-off-by: Alan Coopersmith Reviewed-by: Ran Benita commit 390acfe5bb88cdab509b5eaae4041f265e969d2b Author: Alan Coopersmith Date: Sun Oct 20 12:04:58 2013 -0700 Convert sprintf calls to snprintf Signed-off-by: Alan Coopersmith Reviewed-by: Ran Benita commit 455c2f3715456fd88c2741bd2028a9f0a702bb28 Author: Alan Coopersmith Date: Sun Oct 20 01:11:21 2013 -0700 Don't dereference xkb pointer until after checking it for NULL Some compilers can perform mind-twistingly evil optimizations if you check for NULL after using it, others just let you segv. Signed-off-by: Alan Coopersmith Reviewed-by: Ran Benita commit 7544a9eb35d5850ae2e68d8cdab50f25ce7cd5d9 Author: Alan Coopersmith Date: Sun Oct 20 01:01:37 2013 -0700 unifdef -UXKB_IN_SERVER Xserver has its own copy of this code now, so we don't need to keep an unused copy in libxkbfile too. Signed-off-by: Alan Coopersmith Reviewed-by: Ran Benita commit a945540e6eea9b9303c8f611412ecb58129180e7 Author: Alan Coopersmith Date: Sun Oct 20 00:56:20 2013 -0700 Convert to X.Org standard indentation style Signed-off-by: Alan Coopersmith commit 7381c2f9013ef7784c78091fa671e652a62ca706 Author: Alan Coopersmith Date: Fri Jan 18 23:08:24 2013 -0800 Replace deprecated Automake INCLUDES variable with AM_CPPFLAGS Excerpt https://lists.gnu.org/archive/html/automake/2012-12/msg00038.html - Support for the long-deprecated INCLUDES variable will be removed altogether in Automake 1.14. The AM_CPPFLAGS variable should be used instead. This variable was deprecated in Automake releases prior to 1.10, which is the current minimum level required to build X. Signed-off-by: Alan Coopersmith commit 875d8f2504b62e4a536269e54f685eb8ff96df3a Author: Colin Walters Date: Wed Jan 4 17:37:06 2012 -0500 autogen.sh: Implement GNOME Build API http://people.gnome.org/~walters/docs/build-api.txt Signed-off-by: Adam Jackson commit c66aabd6b95f8e1fd3428f048c9847912eefe450 Author: Adam Jackson Date: Tue Jan 15 14:28:48 2013 -0500 configure: Remove AM_MAINTAINER_MODE Signed-off-by: Adam Jackson commit 5e3da29093ff5d5b6b8805467a523d5cb7663965 Author: Alan Coopersmith Date: Wed Mar 7 20:37:20 2012 -0800 libxkbfile 1.0.8 Signed-off-by: Alan Coopersmith commit 7b6123644fe23c2eb9816cf00729253b2dd53b23 Author: Alan Coopersmith Date: Wed Sep 28 18:17:15 2011 -0700 Add const attributes to fix gcc -Wwrite-strings warnings Does not fix all of them, as some affect the API and thus need more analysis. Signed-off-by: Alan Coopersmith Reviewed-by: Jeremy Huddleston commit 0c2c504819b8788075115f848343bd45a3bb6605 Author: Jeremy Huddleston Date: Fri Nov 11 10:37:49 2011 -0800 Include strings.h for strcasecmp Our minimum requirement for X11 is currently Unix98. Unix98 provides strcasecmp in . This commit fixes implicit declarations of this function on systems that closely adhere to the standard. Signed-off-by: Jeremy Huddleston commit 9ffdecdfa0a832a129a97735eaf1d22ec6defc13 Author: Alan Coopersmith Date: Fri Sep 16 22:45:06 2011 -0700 Strip trailing whitespace Performed with: find * -type f | xargs perl -i -p -e 's{[ \t]+$}{}' git diff -w & git diff -b show no diffs from this change Signed-off-by: Alan Coopersmith commit cfc92c9b8e5f511010a2e406b147dec3ce64c6fd Author: Gaetan Nadon Date: Wed Feb 2 11:43:46 2011 -0500 config: comment, minor upgrade, quote and layout configure.ac Group statements per section as per Autoconf standard layout Quote statements where appropriate. Autoconf recommends not using dnl instead of # for comments Use AC_CONFIG_FILES to replace the deprecated AC_OUTPUT with parameters. Add AC_CONFIG_SRCDIR([Makefile.am]) Remove redundant AC_SUBST(*_CFLAGS) and/or *_LIBS Update minimum version of util-macros to at least 1.8. No functional configuration changes This helps automated maintenance and release activities. Details can be found in http://wiki.x.org/wiki/NewModuleGuidelines commit f83b3bda908cd6d0e15287d15739344620f12d27 Author: Gaetan Nadon Date: Fri Jan 28 19:41:37 2011 -0500 config: replace deprecated AM_CONFIG_HEADER with AC_CONFIG_HEADERS Signed-off-by: Gaetan Nadon commit edc2a2beea14adef6c833bef456474039e2afab2 Author: Gaetan Nadon Date: Thu Jan 27 18:50:15 2011 -0500 config: remove AC_PROG_CC as it overrides AC_PROG_C_C99 XORG_STRICT_OPTION from XORG_DEFAULT_OPTIONS calls AC_PROG_C_C99. This sets gcc with -std=gnu99. If AC_PROG_CC macro is called afterwards, it resets CC to gcc. Signed-off-by: Gaetan Nadon commit 5eea77b2c35c10baf899d2b03a85a462fdcf8f93 Author: Alan Coopersmith Date: Fri Oct 29 18:16:00 2010 -0700 libxkbfile 1.0.7 Signed-off-by: Alan Coopersmith commit ce593fce1f7930135d1c52711ef1945a3e7418b0 Author: Jesse Adkins Date: Tue Sep 28 13:30:04 2010 -0700 Purge cvs tags. Signed-off-by: Jesse Adkins Signed-off-by: Alan Coopersmith commit 57c03e52e6b4e3ed54df5fdd778865467d08e119 Author: Fernando Carrijo Date: Thu Jul 1 06:59:48 2010 -0300 Purge macro NEED_EVENTS Signed-off-by: Fernando Carrijo Acked-by: Tiago Vignatti Reviewed-by: Alan Coopersmith commit 2db176bf5c644cf974f9137bda19e997500d04b1 Author: Gaetan Nadon Date: Mon Mar 29 16:50:34 2010 -0400 config: update AC_PREREQ statement to 2.60 Unrelated to the previous patches, the new value simply reflects the reality that the minimum level for autoconf to configure all x.org modules is 2.60 dated June 2006. ftp://ftp.gnu.org/gnu/autoconf/autoconf-2.60.tar.gz Signed-off-by: Gaetan Nadon commit bce9d460a8759c866908c945ceb609de6bf03921 Author: Gaetan Nadon Date: Mon Mar 29 14:53:49 2010 -0400 config: remove the pkgconfig pc.in file from EXTRA_DIST Automake always includes it in the tarball. Signed-off-by: Gaetan Nadon commit 79cb4add177bee5dd451a8d459cb344451ea04a8 Author: Gaetan Nadon Date: Fri Nov 27 20:56:05 2009 -0500 Makefile.am: add ChangeLog and INSTALL on MAINTAINERCLEANFILES Now that the INSTALL file is generated. Allows running make maintainer-clean. commit 8f2565e71d91a81ab0fe11ac7052c9f4bdfcd8fa Author: Gaetan Nadon Date: Wed Oct 28 14:09:11 2009 -0400 INSTALL, NEWS, README or AUTHORS files are missing/incorrect #24206 Add missing INSTALL file. Use standard GNU file on building tarball README may have been updated Remove AUTHORS file as it is empty and no content available yet. Remove NEWS file as it is empty and no content available yet. commit 6e0c505690db8bedc6cbce726bc02b049e1dafa6 Author: Gaetan Nadon Date: Tue Oct 27 15:07:25 2009 -0400 Deploy the new XORG_DEFAULT_OPTIONS #24242 This macro aggregate a number of existing macros that sets commmon X.Org components configuration options. It shields the configuration file from future changes. commit 5b797b80804946573313e1202c0ef89ce8980bf8 Author: Gaetan Nadon Date: Mon Oct 26 22:08:43 2009 -0400 Makefile.am: ChangeLog not required: EXTRA_DIST or *CLEANFILES #24432 ChangeLog filename is known to Automake and requires no further coding in the makefile. commit fd0dd9539d3bb2471c26187c96b55a542d754c30 Author: Gaetan Nadon Date: Thu Oct 22 12:34:20 2009 -0400 .gitignore: use common defaults with custom section # 24239 Using common defaults will reduce errors and maintenance. Only the very small or inexistent custom section need periodic maintenance when the structure of the component changes. Do not edit defaults. commit 2ce3061947dfaf113d6c324efb2b82be2fae028e Author: Jeremy Huddleston Date: Wed Oct 21 12:47:27 2009 -0700 This is not a GNU project, so declare it foreign. On Wed, 2009-10-21 at 13:36 +1000, Peter Hutterer wrote: > On Tue, Oct 20, 2009 at 08:23:55PM -0700, Jeremy Huddleston wrote: > > I noticed an INSTALL file in xlsclients and libXvMC today, and it > > was quite annoying to work around since 'autoreconf -fvi' replaces > > it and git wants to commit it. Should these files even be in git? > > Can I nuke them for the betterment of humanity and since they get > > created by autoreconf anyways? > > See https://bugs.freedesktop.org/show_bug.cgi?id=24206 As an interim measure, replace AM_INIT_AUTOMAKE([dist-bzip2]) with AM_INIT_AUTOMAKE([foreign dist-bzip2]). This will prevent the generation of the INSTALL file. It is also part of the 24206 solution. Signed-off-by: Jeremy Huddleston commit fa9520d5a63e181c05dd850223a1916e37e71a13 Author: Alan Coopersmith Date: Tue Oct 6 17:08:58 2009 -0700 libxkbfile 1.0.6 Signed-off-by: Alan Coopersmith commit a3d95aedf3a6d1859387fb08b46cd66cd61cec83 Author: Alan Coopersmith Date: Tue Oct 6 17:05:00 2009 -0700 Migrate to xorg macros 1.3 & XORG_DEFAULT_OPTIONS Signed-off-by: Alan Coopersmith commit d36a99d961c6649ca1b0319c2aadc6763edb07ad Author: Adam Jackson Date: Fri May 8 14:15:21 2009 -0400 Semi-revert 33b839e16fe681ba915658f824ceb1b252084ea4 _XkbDupString() checks for NULL, strdup doesn't. Still, implement in terms of real strdup and skip the calloc. commit 29f27b16dbe511a27a0e953b32913f9d9bf24f2d Author: Adam Jackson Date: Thu May 7 16:59:59 2009 -0400 Use flockfile if available. Not really a huge improvement, but we might as well. commit 33b839e16fe681ba915658f824ceb1b252084ea4 Author: Adam Jackson Date: Thu May 7 16:31:39 2009 -0400 s/_XkbDupString/strdup/ Super special bonus lols edition: _XkbDupString would allocate the new string with calloc, just to be extra sure. commit 4f8dd1aa10a36700bf1f2b05931cd29151b9fee4 Author: Alan Coopersmith Date: Mon Feb 2 20:34:39 2009 -0800 Add README with pointers to mailing list, bugzilla & git repos Signed-off-by: Alan Coopersmith commit d17cd6e80f1ec78b69ba11ee55465420e6d7e9a9 Author: Paulo Cesar Pereira de Andrade Date: Thu Jan 29 19:52:34 2009 -0200 Janitor: distcheck, compiler warnings, .gitignore. commit dd9514fe714d81b881a1bd6bd88d4287adc5fc7e Author: Kees Cook Date: Tue Jan 13 15:40:37 2009 -0800 Fix static buffer overflow in "xkbcomp -C :0" This patch uses dynamically allocated strings instead of the fixed-length buffers to avoid stack overflows. https://bugs.freedesktop.org/show_bug.cgi?id=19490 https://bugs.launchpad.net/ubuntu/+source/x11-xkb-utils/+bug/309013 Signed-off-by: Kees Cook Signed-off-by: Peter Hutterer commit e695be2ab7eb1361b204f98c3da872eff58ad6b5 Author: Alexey Ten Date: Thu Jan 15 01:39:01 2009 +0300 Apply partial matches for option (#19563) Rules which match star (*) and option, like one below, should be applied layout[2] option = symbols * misc:typo = +typo(base) X.Org bug 19563 Signed-off-by: Sergey V. Udaltsov commit 415a513387748e1763a477a486a9789f88784ec5 Author: Alan Coopersmith Date: Mon Mar 17 19:44:07 2008 -0700 Version bump: 1.0.5 commit 4505577c4d6b5d32c276366ce6bc3eda1cd59ad7 Author: James Cloos Date: Thu Dec 6 16:38:53 2007 -0500 Replace static ChangeLog with dist-hook to generate from git log commit 492cd9bfc642443d92f419964334f59b89329a36 Author: Daniel Drake Date: Tue May 29 12:51:00 2007 -0800 Bug #11094: libxkbfile COPYING file X.Org Bugzilla #11094 commit 360c792528d614a8aa90ad665081d5bd6ae6197c Author: Adam Jackson Date: Fri Oct 13 16:19:53 2006 -0400 Bump to 1.0.4 commit f587c01ee30c2814d199d3782b53834161cfa2b7 Author: Alan Coopersmith Date: Thu Sep 28 11:12:11 2006 -0700 Do not have to have "have have" in config.h comment if we don't have strcasecmp commit 62c3534debc688a39ccf34e60f7bf4d56fef0c11 Author: Alan Coopersmith Date: Thu Sep 28 11:10:16 2006 -0700 Add *~ to gitignore to skip over emacs droppings commit 1ea09901056ecc74e8554a4225366a7ba633e834 Author: Alan Coopersmith Date: Thu Jul 13 14:59:19 2006 -0700 renamed: .cvsignore -> .gitignore commit b221428cfe5ca036398571372b88cf07da7c58d8 Author: Adam Jackson Date: Thu Apr 27 00:16:37 2006 +0000 Bump to 1.0.3 commit 5e5bd096ba38294f43a071def16f8a397e22eb79 Author: Daniel Stone Date: Wed Apr 12 11:29:43 2006 +0000 Fix offline operation. commit 5f400a68ee489a1d9206605870b8d4306236170e Author: Daniel Stone Date: Mon Apr 10 10:11:35 2006 +0000 Really fix typos. commit 3885559f436ed4ee84ebf90bf3d39648e16f5b3b Author: Daniel Stone Date: Mon Apr 10 08:47:40 2006 +0000 Fix stupid typos. (Shang-Feng Yang) commit c3bc59c223ce4de8d6cce98c005a8f44bfa600c6 Author: Daniel Stone Date: Sun Apr 9 13:45:31 2006 +0000 Coverity #265: Fix potential NULL dereference. commit 816a8db3264bc0752a8befd865b802ac4a2382ce Author: Daniel Stone Date: Sun Apr 9 13:16:44 2006 +0000 Coverity #776, #777: Fix memory leaks. commit 405ef7f445a41eb9995304b4c68b1c966a16bc20 Author: Daniel Stone Date: Fri Apr 7 16:19:02 2006 +0000 Coverity #787, 788: Fix memory leaks. commit d173f9d6561b223de0bf79603d303427da668a98 Author: Daniel Stone Date: Fri Apr 7 16:01:03 2006 +0000 Coverity #979, #980, #981: Avoid potential NULL dereferences. commit bf3fad9eff30bba4587548303dd3d96f3da5d494 Author: Daniel Stone Date: Fri Apr 7 15:58:58 2006 +0000 Coverity #982: Fix potential NULL dereference. commit 25e8b874b9f58e5e8035957465252539df13a85d Author: Daniel Stone Date: Fri Apr 7 15:44:40 2006 +0000 Fix signed vs unsigned char hilarity. (Bill Crawford) commit 47dfc83937ed98e964716345cb4c8d817ae13e61 Author: Daniel Stone Date: Mon Mar 27 21:11:01 2006 +0000 Bug #3819: Fix serious botching of _XkbStrCaseCmp commit. commit e61dfbf6c72369f83a833d3a5a04c306a6b289f8 Author: Daniel Stone Date: Sat Mar 25 23:15:58 2006 +0000 Bug #3819: Change open-coded _XkbStrCaseCmp to strcmp + tolower. commit 4b0ad25354d5807fc9e77fda3397ee78332502c1 Author: Adam Jackson Date: Tue Feb 28 22:44:54 2006 +0000 Bump to 1.0.2. commit 514262ec90db007dfce2c1523b2bc67988f395f1 Author: Daniel Stone Date: Tue Feb 28 16:55:26 2006 +0000 Bug #5216: Allow options to appear with other components. commit 46a7219986b402cb2ad4cfef2aa69d27f5508b6f Author: Kevin E Martin Date: Wed Dec 21 02:30:06 2005 +0000 Update package version for X11R7 release. commit 4949a1f5d3de102195033e5f6513a595c06326cd Author: Adam Jackson Date: Mon Dec 19 16:28:28 2005 +0000 Stub COPYING files commit 8e69b154d42e77f91135382047b9df668406a972 Author: Kevin E Martin Date: Thu Dec 15 00:24:36 2005 +0000 Update package version number for final X11R7 release candidate. commit fa100dc7f5ee32ae37afc0323d72ff521bd5371a Author: Kevin E Martin Date: Sat Dec 3 05:49:46 2005 +0000 Update package version number for X11R7 RC3 release. commit 26d800bab72f25e0088bf048b220eb96d6d1cf3f Author: Kevin E Martin Date: Sat Nov 19 07:15:48 2005 +0000 Update pkgconfig files to separate library build-time dependencies from application build-time dependencies, and update package deps to work with separate build roots. commit b6e194b20a83f9f059037aa17fbb00a6d34e53a6 Author: Kevin E Martin Date: Wed Oct 19 02:48:13 2005 +0000 Update package version number for RC1 release. commit da83a9c6e3a85adcd30949f3c1ccd0d57a6a2bfa Author: Kevin E Martin Date: Mon Oct 3 15:20:29 2005 +0000 magic lives in src, so add it to EXTRA_DIST there instead commit 8b1f515abc3e5c54103ea04ce1de856dcf0a2865 Author: Alan Coopersmith Date: Sat Oct 1 06:22:01 2005 +0000 Add magic to EXTRA_DIST commit 2baa710ffb0cb1567df8740e52477228e251a990 Author: Adam Jackson Date: Wed Aug 3 03:28:04 2005 +0000 Do PKG_CHECK_MODULES on a unique token instead of on "DEP", so builds with a global configure cache don't get confused. commit cb43c4a949dc657abd9b0f52d4d6307e00a72ddf Author: Kevin E Martin Date: Fri Jul 29 21:22:54 2005 +0000 Various changes preparing packages for RC0: - Verify and update package version numbers as needed - Implement versioning scheme - Change bug address to point to bugzilla bug entry form - Disable loadable i18n in libX11 by default (use --enable-loadable-i18n to reenable it) - Fix makedepend to use pkgconfig and pass distcheck - Update build script to build macros first - Update modular Xorg version commit 494e792dc3328787fd7a4598454dc19115aac856 Author: Daniel Stone Date: Sat Jul 16 07:52:50 2005 +0000 Set soversion to 1.0.0 using -version-number. commit c0b9196c7148715dde385d2f0d41d56d23839825 Author: Keith Packard Date: Sat Jul 9 21:20:35 2005 +0000 Add .cvsignore files Switch _la_CFLAGS for AM_CFLAGS to clean up directory commit bf6ca6fc3ef9bd61284dc48059d10a560e5c1f28 Author: Daniel Stone Date: Sun Jul 3 07:37:33 2005 +0000 Fix more include paths; add dix-config.h to XKB code. commit 70a39df3be6fcfea3746e0e127f3cde03a538869 Author: Daniel Stone Date: Sun Jul 3 07:01:01 2005 +0000 Add Xtrans definitions (FONT_t, TRANS_CLIENT) to clean up warnings. Add XSERV_t, TRANS_SERVER, TRANS_REOPEN to quash warnings. Add #include or , as appropriate, to all source files in the xserver/xorg tree, predicated on defines of HAVE_{DIX,XORG}_CONFIG_H. Change all Xfont includes to . commit abca6e76c667a201bf23b73bd681a8c4da892e62 Author: Kevin E Martin Date: Sat Jul 2 06:35:04 2005 +0000 Add appropriate lib*_CFLAGS to Makefile.am's -- fixes build problems commit e5ddd6b3020045b7d8426618fd2515bc02ca045d Author: Søren Sandmann Pedersen Date: Mon Jun 13 22:54:28 2005 +0000 Makefile.am: Add $(top_srcdir)/include to INCLUDES commit 019fc282d476d3dd8f79e0472d3868f6a0785a56 Author: Søren Sandmann Pedersen Date: Mon Jun 13 21:51:46 2005 +0000 Add xkbfile to symlink.sh, conditionally include "config.h" in xc/lib/xkbfile commit 43a2d4898c64c11101b500ab12466570d747ce5f Author: Søren Sandmann Pedersen Date: Mon Jun 13 21:49:05 2005 +0000 - Add xkbfile build system commit adef71d31514413062d20858b270801627e32cad Author: Egbert Eich Date: Fri Apr 23 18:44:26 2004 +0000 Merging XORG-CURRENT into trunk commit 33f9904e1895629319e58ac55da537771cf5bfa5 Author: Egbert Eich Date: Sun Mar 14 08:32:39 2004 +0000 Importing vendor version xf86-4_4_99_1 on Sun Mar 14 00:26:39 PST 2004 commit 672fe3b619cec43314adff06401e83046f4bc59f Author: Egbert Eich Date: Wed Mar 3 12:11:45 2004 +0000 Importing vendor version xf86-4_4_0 on Wed Mar 3 04:09:24 PST 2004 commit ca6597857e417ee89ca15889e87211421b0df842 Author: Egbert Eich Date: Thu Feb 26 13:35:36 2004 +0000 readding XFree86's cvs IDs commit 084119505a1927600985675a54b40316edd50c63 Author: Egbert Eich Date: Thu Feb 26 09:22:54 2004 +0000 Importing vendor version xf86-4_3_99_903 on Wed Feb 26 01:21:00 PST 2004 commit 91ac80641f0e04536ffe9d4168a19ba3d7ee050d Author: Kaleb Keithley Date: Tue Nov 25 19:28:21 2003 +0000 XFree86 4.3.99.16 Bring the tree up to date for the Cygwin folks commit cb45b671537b25c832428c0a75cb7d7712dea3e5 Author: Kaleb Keithley Date: Fri Nov 14 16:48:50 2003 +0000 XFree86 4.3.0.1 commit 52a8406aaba4ed1f9fa5e78bfa5da7af659bce01 Author: Kaleb Keithley Date: Fri Nov 14 15:54:40 2003 +0000 R6.6 is the Xorg base-line