debrix-input-keyboard ChangeLog, NONE, 1.1 Makefile.am, NONE, 1.1 autogen.sh, NONE, 1.1 configure.ac, NONE, 1.1 kbd.c, 1.2, 1.3

Daniel Stone xserver-commit at pdx.freedesktop.org
Fri Jun 11 04:51:31 EST 2004


Committed by: daniel

Update of /cvs/xserver/debrix-input-keyboard
In directory pdx:/home/daniel/x/debrix/debrix-input-keyboard-200406110418

Modified Files:
	kbd.c 
Added Files:
	ChangeLog Makefile.am autogen.sh configure.ac 
Log Message:
Initial import of sources, from the monolithic tree.


--- NEW FILE: ChangeLog ---
2004-06-11  Daniel Stone  <daniel at freedesktop.org>

	* Initial import of sources from monolithic tree.

--- NEW FILE: Makefile.am ---
AUTOMAKE_OPTIONS = foreign
driver_LTLIBRARIES = libkbd.la
man_MANS = kbd.3 keyboard.3
libkbd_la_SOURCES = kbd.c

--- NEW FILE: autogen.sh ---
#! /bin/sh
autoreconf -v --install || exit 1
./configure --enable-maintainer-mode "$@"

--- NEW FILE: configure.ac ---
#                                               -*- Autoconf -*-
# Process this file with autoconf to produce a configure script.

AC_PREREQ(2.57)
AC_INIT([debrix-input-kbd],
        0.1.0,
        [daniel at freedesktop.org],
        debrix-input-kbd)

AC_CONFIG_SRCDIR([Makefile.am])
AM_INIT_AUTOMAKE([dist-bzip2])

AM_CONFIG_HEADER([config.h])
AC_CONFIG_AUX_DIR(.)

# Checks for programs.
AC_PROG_LIBTOOL
AC_PROG_CC

# Checks for pkg-config packages
PKG_CHECK_MODULES(XORG, debrix xextensions)
driverdir=$(pkg-config --variable=driverdir debrix)
AC_SUBST([driverdir])

CFLAGS="$XORG_CFLAGS -include debrix.h"
INCLUDES="$XORG_INCS"
AC_SUBST([CFLAGS])
AC_SUBST([INCLUDES])

# Checks for libraries.

# Checks for header files.
AC_HEADER_STDC

AC_OUTPUT([Makefile])

Index: kbd.c
===================================================================
RCS file: /cvs/xserver/debrix-input-keyboard/kbd.c,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- kbd.c	23 Apr 2004 19:54:03 -0000	1.2
+++ kbd.c	10 Jun 2004 18:51:29 -0000	1.3
@@ -14,17 +14,20 @@
  */
 /* $XdotOrg$ */
   
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
 #define NEED_EVENTS
-#include "X.h"
-#include "Xproto.h"
+#include <X11/X.h>
+#include <X11/Xproto.h>
 
 #include "xf86.h"
 #include "atKeynames.h"
 #include "xf86Privstr.h"
 
 #ifdef XINPUT
-#include "XI.h"
-#include "XIproto.h"
+#include <X11/extensions/XI.h>
+#include <X11/extensions/XIproto.h>
 #include "extnsionst.h"
 #include "extinit.h"
 #else




More information about the xserver-commit mailing list