Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
N
nx-libs
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
1
Issues
1
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
dimbor
nx-libs
Commits
3739a9b3
Commit
3739a9b3
authored
Sep 26, 2016
by
Ulrich Sibiller
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
xserver: use own copy of XKBsrv.h header
just like upstream does
parent
f0c0ff41
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
40 changed files
with
39 additions
and
38 deletions
+39
-38
devices.c
nx-X11/programs/Xserver/dix/devices.c
+1
-1
dispatch.c
nx-X11/programs/Xserver/dix/dispatch.c
+1
-1
events.c
nx-X11/programs/Xserver/dix/events.c
+1
-1
Keyboard.c
nx-X11/programs/Xserver/hw/nxagent/Keyboard.c
+1
-0
xkbsrv.h
nx-X11/programs/Xserver/include/xkbsrv.h
+0
-0
utils.c
nx-X11/programs/Xserver/os/utils.c
+1
-1
XKBAlloc.c
nx-X11/programs/Xserver/xkb/XKBAlloc.c
+1
-1
XKBGAlloc.c
nx-X11/programs/Xserver/xkb/XKBGAlloc.c
+1
-1
XKBMAlloc.c
nx-X11/programs/Xserver/xkb/XKBMAlloc.c
+1
-1
XKBMisc.c
nx-X11/programs/Xserver/xkb/XKBMisc.c
+1
-1
ddxBeep.c
nx-X11/programs/Xserver/xkb/ddxBeep.c
+1
-1
ddxConfig.c
nx-X11/programs/Xserver/xkb/ddxConfig.c
+1
-1
ddxCtrls.c
nx-X11/programs/Xserver/xkb/ddxCtrls.c
+1
-1
ddxDevBtn.c
nx-X11/programs/Xserver/xkb/ddxDevBtn.c
+1
-1
ddxFakeBtn.c
nx-X11/programs/Xserver/xkb/ddxFakeBtn.c
+1
-1
ddxFakeMtn.c
nx-X11/programs/Xserver/xkb/ddxFakeMtn.c
+1
-1
ddxInit.c
nx-X11/programs/Xserver/xkb/ddxInit.c
+1
-1
ddxKeyClick.c
nx-X11/programs/Xserver/xkb/ddxKeyClick.c
+1
-1
ddxKillSrv.c
nx-X11/programs/Xserver/xkb/ddxKillSrv.c
+1
-1
ddxLEDs.c
nx-X11/programs/Xserver/xkb/ddxLEDs.c
+1
-1
ddxList.c
nx-X11/programs/Xserver/xkb/ddxList.c
+1
-1
ddxLoad.c
nx-X11/programs/Xserver/xkb/ddxLoad.c
+1
-1
ddxPrivate.c
nx-X11/programs/Xserver/xkb/ddxPrivate.c
+1
-1
ddxVT.c
nx-X11/programs/Xserver/xkb/ddxVT.c
+1
-1
maprules.c
nx-X11/programs/Xserver/xkb/maprules.c
+1
-1
xkb.c
nx-X11/programs/Xserver/xkb/xkb.c
+1
-1
xkbAccessX.c
nx-X11/programs/Xserver/xkb/xkbAccessX.c
+1
-1
xkbActions.c
nx-X11/programs/Xserver/xkb/xkbActions.c
+1
-1
xkbEvents.c
nx-X11/programs/Xserver/xkb/xkbEvents.c
+1
-1
xkbInit.c
nx-X11/programs/Xserver/xkb/xkbInit.c
+1
-1
xkbLEDs.c
nx-X11/programs/Xserver/xkb/xkbLEDs.c
+1
-1
xkbPrKeyEv.c
nx-X11/programs/Xserver/xkb/xkbPrKeyEv.c
+1
-1
xkbPrOtherEv.c
nx-X11/programs/Xserver/xkb/xkbPrOtherEv.c
+1
-1
xkbSwap.c
nx-X11/programs/Xserver/xkb/xkbSwap.c
+1
-1
xkbUtils.c
nx-X11/programs/Xserver/xkb/xkbUtils.c
+1
-1
xkbconfig.c
nx-X11/programs/Xserver/xkb/xkbconfig.c
+1
-1
xkbfmisc.c
nx-X11/programs/Xserver/xkb/xkbfmisc.c
+1
-1
xkbout.c
nx-X11/programs/Xserver/xkb/xkbout.c
+1
-1
xkbtext.c
nx-X11/programs/Xserver/xkb/xkbtext.c
+1
-1
xkmread.c
nx-X11/programs/Xserver/xkb/xkmread.c
+1
-1
No files found.
nx-X11/programs/Xserver/dix/devices.c
View file @
3739a9b3
...
...
@@ -63,7 +63,7 @@ SOFTWARE.
#include "site.h"
#define XKB_IN_SERVER
#ifdef XKB
#include <
nx-X11/extensions/XKB
srv.h>
#include <
xkb
srv.h>
#endif
#ifdef XCSECURITY
#define _SECURITY_SERVER
...
...
nx-X11/programs/Xserver/dix/dispatch.c
View file @
3739a9b3
...
...
@@ -111,7 +111,7 @@ int ProcInitialConnection();
#ifdef XKB
#define XKB_IN_SERVER
#include "inputstr.h"
#include <
nx-X11/extensions/XKB
srv.h>
#include <
xkb
srv.h>
#endif
#define mskcnt ((MAXCLIENTS + 31) / 32)
...
...
nx-X11/programs/Xserver/dix/events.c
View file @
3739a9b3
...
...
@@ -129,7 +129,7 @@ of the copyright holder.
#include "globals.h"
#ifdef XKB
#include <
nx-X11/extensions/XKB
srv.h>
#include <
xkb
srv.h>
extern
Bool
XkbFilterEvents
(
ClientPtr
,
int
,
xEvent
*
);
#endif
...
...
nx-X11/programs/Xserver/hw/nxagent/Keyboard.c
View file @
3739a9b3
...
...
@@ -75,6 +75,7 @@ is" without express or implied warranty.
#define XKBSRV_NEED_FILE_FUNCS
#include <nx-X11/extensions/XKBsrv.h>
#include <nx-X11/extensions/XKBstr.h>
#include <nx-X11/extensions/XKBconfig.h>
#include <nx-X11/extensions/XKBrules.h>
...
...
nx-X11/programs/Xserver/include/xkbsrv.h
0 → 100644
View file @
3739a9b3
This diff is collapsed.
Click to expand it.
nx-X11/programs/Xserver/os/utils.c
View file @
3739a9b3
...
...
@@ -141,7 +141,7 @@ OR PERFORMANCE OF THIS SOFTWARE.
#endif
#ifdef XKB
#include <
nx-X11/extensions/XKB
srv.h>
#include <
xkb
srv.h>
#endif
#ifdef XCSECURITY
#define _SECURITY_SERVER
...
...
nx-X11/programs/Xserver/xkb/XKBAlloc.c
View file @
3739a9b3
...
...
@@ -46,7 +46,7 @@ THE USE OR PERFORMANCE OF THIS SOFTWARE.
#include <nx-X11/Xproto.h>
#include "misc.h"
#include "inputstr.h"
#include <
nx-X11/extensions/XKB
srv.h>
#include <
xkb
srv.h>
#include <nx-X11/extensions/XKBgeom.h>
#endif
/* XKB_IN_SERVER */
...
...
nx-X11/programs/Xserver/xkb/XKBGAlloc.c
View file @
3739a9b3
...
...
@@ -45,7 +45,7 @@ THE USE OR PERFORMANCE OF THIS SOFTWARE.
#include <nx-X11/Xproto.h>
#include "misc.h"
#include "inputstr.h"
#include <
nx-X11/extensions/XKB
srv.h>
#include <
xkb
srv.h>
#include <nx-X11/extensions/XKBgeom.h>
#endif
/* XKB_IN_SERVER */
...
...
nx-X11/programs/Xserver/xkb/XKBMAlloc.c
View file @
3739a9b3
...
...
@@ -47,7 +47,7 @@ THE USE OR PERFORMANCE OF THIS SOFTWARE.
#include "inputstr.h"
#include <nx-X11/keysym.h>
#define XKBSRV_NEED_FILE_FUNCS
#include <
nx-X11/extensions/XKB
srv.h>
#include <
xkb
srv.h>
#endif
/* XKB_IN_SERVER */
...
...
nx-X11/programs/Xserver/xkb/XKBMisc.c
View file @
3739a9b3
...
...
@@ -47,7 +47,7 @@ THE USE OR PERFORMANCE OF THIS SOFTWARE.
#include "inputstr.h"
#include <nx-X11/keysym.h>
#define XKBSRV_NEED_FILE_FUNCS
#include <
nx-X11/extensions/XKB
srv.h>
#include <
xkb
srv.h>
#endif
/* XKB_IN_SERVER */
...
...
nx-X11/programs/Xserver/xkb/ddxBeep.c
View file @
3739a9b3
...
...
@@ -35,7 +35,7 @@ THE USE OR PERFORMANCE OF THIS SOFTWARE.
#include "inputstr.h"
#include "scrnintstr.h"
#include "windowstr.h"
#include <
nx-X11/extensions/XKB
srv.h>
#include <
xkb
srv.h>
#include <nx-X11/extensions/XI.h>
#if (defined(__osf__) && defined(__alpha))
...
...
nx-X11/programs/Xserver/xkb/ddxConfig.c
View file @
3739a9b3
...
...
@@ -37,7 +37,7 @@ THE USE OR PERFORMANCE OF THIS SOFTWARE.
#include "windowstr.h"
#include "os.h"
#define XKBSRV_NEED_FILE_FUNCS
#include <
nx-X11/extensions/XKB
srv.h>
#include <
xkb
srv.h>
#include <nx-X11/extensions/XKBconfig.h>
Bool
...
...
nx-X11/programs/Xserver/xkb/ddxCtrls.c
View file @
3739a9b3
...
...
@@ -35,7 +35,7 @@ THE USE OR PERFORMANCE OF THIS SOFTWARE.
#include "inputstr.h"
#include "scrnintstr.h"
#include "windowstr.h"
#include <
nx-X11/extensions/XKB
srv.h>
#include <
xkb
srv.h>
#include <nx-X11/extensions/XI.h>
void
...
...
nx-X11/programs/Xserver/xkb/ddxDevBtn.c
View file @
3739a9b3
...
...
@@ -35,7 +35,7 @@ THE USE OR PERFORMANCE OF THIS SOFTWARE.
#include "inputstr.h"
#include "scrnintstr.h"
#include "windowstr.h"
#include <
nx-X11/extensions/XKB
srv.h>
#include <
xkb
srv.h>
#include <nx-X11/extensions/XI.h>
#include <nx-X11/extensions/XIproto.h>
...
...
nx-X11/programs/Xserver/xkb/ddxFakeBtn.c
View file @
3739a9b3
...
...
@@ -36,7 +36,7 @@ THE USE OR PERFORMANCE OF THIS SOFTWARE.
#include "inputstr.h"
#include "scrnintstr.h"
#include "windowstr.h"
#include <
nx-X11/extensions/XKB
srv.h>
#include <
xkb
srv.h>
#include <nx-X11/extensions/XI.h>
void
...
...
nx-X11/programs/Xserver/xkb/ddxFakeMtn.c
View file @
3739a9b3
...
...
@@ -35,7 +35,7 @@ THE USE OR PERFORMANCE OF THIS SOFTWARE.
#include "inputstr.h"
#include "scrnintstr.h"
#include "windowstr.h"
#include <
nx-X11/extensions/XKB
srv.h>
#include <
xkb
srv.h>
#include <nx-X11/extensions/XI.h>
#ifdef PANORAMIX
...
...
nx-X11/programs/Xserver/xkb/ddxInit.c
View file @
3739a9b3
...
...
@@ -36,7 +36,7 @@ THE USE OR PERFORMANCE OF THIS SOFTWARE.
#include "inputstr.h"
#include "scrnintstr.h"
#include "windowstr.h"
#include <
nx-X11/extensions/XKB
srv.h>
#include <
xkb
srv.h>
#include <nx-X11/extensions/XI.h>
int
...
...
nx-X11/programs/Xserver/xkb/ddxKeyClick.c
View file @
3739a9b3
...
...
@@ -36,7 +36,7 @@ THE USE OR PERFORMANCE OF THIS SOFTWARE.
#include "inputstr.h"
#include "scrnintstr.h"
#include "windowstr.h"
#include <
nx-X11/extensions/XKB
srv.h>
#include <
xkb
srv.h>
#include <nx-X11/extensions/XI.h>
void
...
...
nx-X11/programs/Xserver/xkb/ddxKillSrv.c
View file @
3739a9b3
...
...
@@ -39,7 +39,7 @@ THE USE OR PERFORMANCE OF THIS SOFTWARE.
#include "inputstr.h"
#include "scrnintstr.h"
#include "windowstr.h"
#include <
nx-X11/extensions/XKB
srv.h>
#include <
xkb
srv.h>
#include <nx-X11/extensions/XI.h>
#ifdef XF86DDXACTIONS
...
...
nx-X11/programs/Xserver/xkb/ddxLEDs.c
View file @
3739a9b3
...
...
@@ -36,7 +36,7 @@ THE USE OR PERFORMANCE OF THIS SOFTWARE.
#include "inputstr.h"
#include "scrnintstr.h"
#include "windowstr.h"
#include <
nx-X11/extensions/XKB
srv.h>
#include <
xkb
srv.h>
#include <nx-X11/extensions/XI.h>
void
...
...
nx-X11/programs/Xserver/xkb/ddxList.c
View file @
3739a9b3
...
...
@@ -39,7 +39,7 @@ THE USE OR PERFORMANCE OF THIS SOFTWARE.
#include "scrnintstr.h"
#include "windowstr.h"
#define XKBSRV_NEED_FILE_FUNCS
#include <
nx-X11/extensions/XKB
srv.h>
#include <
xkb
srv.h>
#include <nx-X11/extensions/XI.h>
#ifndef PATH_MAX
...
...
nx-X11/programs/Xserver/xkb/ddxLoad.c
View file @
3739a9b3
...
...
@@ -50,7 +50,7 @@ THE USE OR PERFORMANCE OF THIS SOFTWARE.
#include "scrnintstr.h"
#include "windowstr.h"
#define XKBSRV_NEED_FILE_FUNCS
#include <
nx-X11/extensions/XKB
srv.h>
#include <
xkb
srv.h>
#include <nx-X11/extensions/XI.h>
#include "xkb.h"
...
...
nx-X11/programs/Xserver/xkb/ddxPrivate.c
View file @
3739a9b3
...
...
@@ -11,7 +11,7 @@
#include <nx-X11/X.h>
#include "windowstr.h"
#define XKBSRV_NEED_FILE_FUNCS
#include <
nx-X11/extensions/XKB
srv.h>
#include <
xkb
srv.h>
#ifdef XF86DDXACTIONS
#include "xf86.h"
...
...
nx-X11/programs/Xserver/xkb/ddxVT.c
View file @
3739a9b3
...
...
@@ -39,7 +39,7 @@ THE USE OR PERFORMANCE OF THIS SOFTWARE.
#include "inputstr.h"
#include "scrnintstr.h"
#include "windowstr.h"
#include <
nx-X11/extensions/XKB
srv.h>
#include <
xkb
srv.h>
#include <nx-X11/extensions/XI.h>
#ifdef XF86DDXACTIONS
...
...
nx-X11/programs/Xserver/xkb/maprules.c
View file @
3739a9b3
...
...
@@ -65,7 +65,7 @@
#include "dix.h"
#include <nx-X11/extensions/XKBstr.h>
#define XKBSRV_NEED_FILE_FUNCS
#include <
nx-X11/extensions/XKB
srv.h>
#include <
xkb
srv.h>
#endif
...
...
nx-X11/programs/Xserver/xkb/xkb.c
View file @
3739a9b3
...
...
@@ -34,7 +34,7 @@ THE USE OR PERFORMANCE OF THIS SOFTWARE.
#include "misc.h"
#include "inputstr.h"
#define XKBSRV_NEED_FILE_FUNCS
#include <
nx-X11/extensions/XKB
srv.h>
#include <
xkb
srv.h>
#include "extnsionst.h"
#include "xkb.h"
#include "protocol-versions.h"
...
...
nx-X11/programs/Xserver/xkb/xkbAccessX.c
View file @
3739a9b3
...
...
@@ -37,7 +37,7 @@ THE USE OR PERFORMANCE OF THIS SOFTWARE.
#include <nx-X11/Xproto.h>
#include <nx-X11/keysym.h>
#include "inputstr.h"
#include <
nx-X11/extensions/XKB
srv.h>
#include <
xkb
srv.h>
#if !defined(WIN32) && !defined(Lynx)
#include <sys/time.h>
#endif
...
...
nx-X11/programs/Xserver/xkb/xkbActions.c
View file @
3739a9b3
...
...
@@ -35,7 +35,7 @@ THE USE OR PERFORMANCE OF THIS SOFTWARE.
#include <nx-X11/keysym.h>
#include "misc.h"
#include "inputstr.h"
#include <
nx-X11/extensions/XKB
srv.h>
#include <
xkb
srv.h>
#include "xkb.h"
#include <ctype.h>
...
...
nx-X11/programs/Xserver/xkb/xkbEvents.c
View file @
3739a9b3
...
...
@@ -35,7 +35,7 @@ THE USE OR PERFORMANCE OF THIS SOFTWARE.
#include <nx-X11/extensions/XI.h>
#include "inputstr.h"
#include "windowstr.h"
#include <
nx-X11/extensions/XKB
srv.h>
#include <
xkb
srv.h>
#include "xkb.h"
/***====================================================================***/
...
...
nx-X11/programs/Xserver/xkb/xkbInit.c
View file @
3739a9b3
...
...
@@ -47,7 +47,7 @@ THE USE OR PERFORMANCE OF THIS SOFTWARE.
#include "property.h"
#include "scrnintstr.h"
#define XKBSRV_NEED_FILE_FUNCS
#include <
nx-X11/extensions/XKB
srv.h>
#include <
xkb
srv.h>
#include <nx-X11/extensions/XKBgeom.h>
#include <nx-X11/extensions/XKMformat.h>
#include <nx-X11/extensions/XKBfile.h>
...
...
nx-X11/programs/Xserver/xkb/xkbLEDs.c
View file @
3739a9b3
...
...
@@ -37,7 +37,7 @@ THE USE OR PERFORMANCE OF THIS SOFTWARE.
#include "inputstr.h"
#include <nx-X11/extensions/XI.h>
#include <
nx-X11/extensions/XKB
srv.h>
#include <
xkb
srv.h>
#include "xkb.h"
/***====================================================================***/
...
...
nx-X11/programs/Xserver/xkb/xkbPrKeyEv.c
View file @
3739a9b3
...
...
@@ -35,7 +35,7 @@ THE USE OR PERFORMANCE OF THIS SOFTWARE.
#include <nx-X11/keysym.h>
#include "misc.h"
#include "inputstr.h"
#include <
nx-X11/extensions/XKB
srv.h>
#include <
xkb
srv.h>
#include <ctype.h>
...
...
nx-X11/programs/Xserver/xkb/xkbPrOtherEv.c
View file @
3739a9b3
...
...
@@ -36,7 +36,7 @@ THE USE OR PERFORMANCE OF THIS SOFTWARE.
#include <nx-X11/keysym.h>
#include "misc.h"
#include "inputstr.h"
#include <
nx-X11/extensions/XKB
srv.h>
#include <
xkb
srv.h>
#include <nx-X11/extensions/XI.h>
#include <nx-X11/extensions/XIproto.h>
...
...
nx-X11/programs/Xserver/xkb/xkbSwap.c
View file @
3739a9b3
...
...
@@ -33,7 +33,7 @@ THE USE OR PERFORMANCE OF THIS SOFTWARE.
#include <nx-X11/Xproto.h>
#include "misc.h"
#include "inputstr.h"
#include <
nx-X11/extensions/XKB
srv.h>
#include <
xkb
srv.h>
#include <nx-X11/extensions/XKBstr.h>
#include "extnsionst.h"
#include "xkb.h"
...
...
nx-X11/programs/Xserver/xkb/xkbUtils.c
View file @
3739a9b3
...
...
@@ -39,7 +39,7 @@ THE USE OR PERFORMANCE OF THIS SOFTWARE.
#include "inputstr.h"
#define XKBSRV_NEED_FILE_FUNCS
#include <
nx-X11/extensions/XKB
srv.h>
#include <
xkb
srv.h>
#include <nx-X11/extensions/XKBgeom.h>
#include "xkb.h"
...
...
nx-X11/programs/Xserver/xkb/xkbconfig.c
View file @
3739a9b3
...
...
@@ -55,7 +55,7 @@
#include "inputstr.h"
#include "dix.h"
#define XKBSRV_NEED_FILE_FUNCS
#include <
nx-X11/extensions/XKB
srv.h>
#include <
xkb
srv.h>
#endif
#include <nx-X11/extensions/XKBconfig.h>
...
...
nx-X11/programs/Xserver/xkb/xkbfmisc.c
View file @
3739a9b3
...
...
@@ -56,7 +56,7 @@
#include "dix.h"
#include <nx-X11/extensions/XKBstr.h>
#define XKBSRV_NEED_FILE_FUNCS 1
#include <
nx-X11/extensions/XKB
srv.h>
#include <
xkb
srv.h>
#include <nx-X11/extensions/XKBgeom.h>
#include "xkb.h"
...
...
nx-X11/programs/Xserver/xkb/xkbout.c
View file @
3739a9b3
...
...
@@ -54,7 +54,7 @@
#include "dix.h"
#include <nx-X11/extensions/XKBstr.h>
#define XKBSRV_NEED_FILE_FUNCS 1
#include <
nx-X11/extensions/XKB
srv.h>
#include <
xkb
srv.h>
#include <nx-X11/extensions/XKBgeom.h>
#include <nx-X11/extensions/XKBfile.h>
...
...
nx-X11/programs/Xserver/xkb/xkbtext.c
View file @
3739a9b3
...
...
@@ -54,7 +54,7 @@
#include "dix.h"
#include <nx-X11/extensions/XKBstr.h>
#define XKBSRV_NEED_FILE_FUNCS 1
#include <
nx-X11/extensions/XKB
srv.h>
#include <
xkb
srv.h>
#include <nx-X11/extensions/XKBgeom.h>
#endif
...
...
nx-X11/programs/Xserver/xkb/xkmread.c
View file @
3739a9b3
...
...
@@ -56,7 +56,7 @@
#include "inputstr.h"
#include <nx-X11/extensions/XKBstr.h>
#define XKBSRV_NEED_FILE_FUNCS
#include <
nx-X11/extensions/XKB
srv.h>
#include <
xkb
srv.h>
#include <nx-X11/extensions/XKBgeom.h>
Atom
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment