diff options
author | Matthieu Herrb <matthieu@cvs.openbsd.org> | 2010-08-21 09:35:17 +0000 |
---|---|---|
committer | Matthieu Herrb <matthieu@cvs.openbsd.org> | 2010-08-21 09:35:17 +0000 |
commit | 3ffa6e448b797bf8f6184c458a8c548e4503cc87 (patch) | |
tree | d2147f2a85054b5f26c7f4bf2f4d0d45646b3054 /proto | |
parent | b4a44f77d3b0fdc6e8d38be86043a47001c25d99 (diff) |
Update to kbproto 1.0.5
Diffstat (limited to 'proto')
-rw-r--r-- | proto/kbproto/ChangeLog | 98 | ||||
-rw-r--r-- | proto/kbproto/Makefile.am | 11 | ||||
-rw-r--r-- | proto/kbproto/README | 30 | ||||
-rw-r--r-- | proto/kbproto/XKB.h | 2 | ||||
-rw-r--r-- | proto/kbproto/configure.ac | 9 |
5 files changed, 140 insertions, 10 deletions
diff --git a/proto/kbproto/ChangeLog b/proto/kbproto/ChangeLog index 36328b818..f2542c213 100644 --- a/proto/kbproto/ChangeLog +++ b/proto/kbproto/ChangeLog @@ -1,3 +1,101 @@ +commit 2306fcd4c511d41ae4b31b9cbd9f79cf69287730 +Author: Dirk Wallenstein <halsmit@t-online.de> +Date: Fri Feb 5 20:42:43 2010 +0100 + + Use the correct value for XkbAllAccessXEventsMask + + Signed-off-by: Dirk Wallenstein <halsmit@t-online.de> + Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> + +commit 875e6f80e9ddcac010f6871214a92e4d50e8ee5e +Author: Gaetan Nadon <memsize@videotron.ca> +Date: Sun Mar 28 19:25:52 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 <memsize@videotron.ca> + +commit f6b32127be4c800f73bf68c6ac7d79c630cae1fa +Author: Gaetan Nadon <memsize@videotron.ca> +Date: Sun Mar 28 19:00:31 2010 -0400 + + config: remove the pkgconfig pc.in file from EXTRA_DIST + + Automake always includes it in the tarball. + + Signed-off-by: Gaetan Nadon <memsize@videotron.ca> + +commit cb489d131adb1d454e9f6196d7d766c0acde12e6 +Author: Gaetan Nadon <memsize@videotron.ca> +Date: Sun Nov 22 19:24:48 2009 -0500 + + Makefile.am: add ChangeLog and INSTALL on MAINTAINERCLEANFILES + + Now that the INSTALL file is generated. + Allows running make maintainer-clean. + +commit 9a83b903ba2586f16e770d4911c4d7e42957abb7 +Author: Gaetan Nadon <memsize@videotron.ca> +Date: Mon Nov 16 11:13:30 2009 -0500 + + README: file created or updated #24206 + + Contains a set of URLs to freedesktop.org. + +commit 0a358e01f7fcb903077137c4d3ab51ce9eeabcce +Author: Gaetan Nadon <memsize@videotron.ca> +Date: Sun Nov 15 19:45:27 2009 -0500 + + 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 c8078878abaa2d2489a3778c89af043901582eac +Author: Gaetan Nadon <memsize@videotron.ca> +Date: Sun Nov 15 18:31:28 2009 -0500 + + Makefile.am: INSTALL file is missing or incorrect #24206 + + The standard GNU file on building/installing tarball is copied + using the XORG_INSTALL macro contained in XORG_DEFAULT_OPTIONS + Add INSTALL target + +commit ab57a912460acb83302152bd91c6336d500bb9cd +Author: Gaetan Nadon <memsize@videotron.ca> +Date: Sun Nov 15 18:11:36 2009 -0500 + + configure.ac: 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 4ddefc3a86050e06056d79b78ae0a1be119c4131 +Author: Gaetan Nadon <memsize@videotron.ca> +Date: Sun Nov 15 13:55:25 2009 -0500 + + configure.ac: AM_MAINTAINER_MODE missing #24238 + + This turns off maintainer mode build rules in tarballs. + Works in conjunction with autogen.sh --enable-maintainer-mode + +commit eb3d96018f4c2e20c23b837aa42f71ebb36661b1 +Author: Gaetan Nadon <memsize@videotron.ca> +Date: Sat Nov 14 18:26:47 2009 -0500 + + .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 4e3ccd5b2144005af1d5d2f9b96275a01156aec5 Author: Alan Coopersmith <alan.coopersmith@sun.com> Date: Mon Oct 12 22:39:05 2009 -0700 diff --git a/proto/kbproto/Makefile.am b/proto/kbproto/Makefile.am index bbb5f3654..bbe8a1e71 100644 --- a/proto/kbproto/Makefile.am +++ b/proto/kbproto/Makefile.am @@ -9,14 +9,15 @@ kb_HEADERS = \ pkgconfigdir = $(libdir)/pkgconfig pkgconfig_DATA = kbproto.pc -EXTRA_DIST = kbproto.pc.in -EXTRA_DIST += ChangeLog -MAINTAINERCLEANFILES = ChangeLog +MAINTAINERCLEANFILES = ChangeLog INSTALL -.PHONY: ChangeLog +.PHONY: ChangeLog INSTALL + +INSTALL: + $(INSTALL_CMD) ChangeLog: $(CHANGELOG_CMD) -dist-hook: ChangeLog +dist-hook: ChangeLog INSTALL diff --git a/proto/kbproto/README b/proto/kbproto/README new file mode 100644 index 000000000..49fa4f935 --- /dev/null +++ b/proto/kbproto/README @@ -0,0 +1,30 @@ + X Keyboard Extension + +This extension defines a protcol to provide a number of new capabilities +and controls for text keyboards. + +Extension name: XKEYBOARD + +All questions regarding this software should be directed at the +Xorg mailing list: + + http://lists.freedesktop.org/mailman/listinfo/xorg + +Please submit bug reports to the Xorg bugzilla: + + https://bugs.freedesktop.org/enter_bug.cgi?product=xorg + +The master development code repository can be found at: + + git://anongit.freedesktop.org/git/xorg/proto/kbproto + + http://cgit.freedesktop.org/xorg/proto/kbproto + +For patch submission instructions, see: + + http://www.x.org/wiki/Development/Documentation/SubmittingPatches + +For more information on the git code manager, see: + + http://wiki.x.org/wiki/GitPage + diff --git a/proto/kbproto/XKB.h b/proto/kbproto/XKB.h index a91531719..a3b3bc0ec 100644 --- a/proto/kbproto/XKB.h +++ b/proto/kbproto/XKB.h @@ -139,7 +139,7 @@ THE USE OR PERFORMANCE OF THIS SOFTWARE. #define XkbAXN_BKAcceptMask (1L << 4) #define XkbAXN_BKRejectMask (1L << 5) #define XkbAXN_AXKWarningMask (1L << 6) -#define XkbAllAccessXEventsMask (0xf) +#define XkbAllAccessXEventsMask (0x7f) /* * Miscellaneous event details: diff --git a/proto/kbproto/configure.ac b/proto/kbproto/configure.ac index 9537951aa..1a7ab4a0a 100644 --- a/proto/kbproto/configure.ac +++ b/proto/kbproto/configure.ac @@ -1,10 +1,11 @@ -AC_PREREQ([2.57]) -AC_INIT([KBProto], [1.0.4], [https://bugs.freedesktop.org/enter_bug.cgi?product=xorg]) +AC_PREREQ([2.60]) +AC_INIT([KBProto], [1.0.5], [https://bugs.freedesktop.org/enter_bug.cgi?product=xorg]) AM_INIT_AUTOMAKE([foreign dist-bzip2]) +AM_MAINTAINER_MODE -# Require xorg-macros 1.3 or later: XORG_DEFAULT_OPTIONS +# Require xorg-macros: XORG_DEFAULT_OPTIONS m4_ifndef([XORG_MACROS_VERSION], - [m4_fatal([must install xorg-macros 1.3 or later before running autoconf/autogen])]) + [m4_fatal([must install xorg-macros 1.3 or later before running autoconf/autogen])]) XORG_MACROS_VERSION(1.3) XORG_DEFAULT_OPTIONS |