Compare commits

...

7 Commits

Author SHA1 Message Date
Peter Hutterer
e8c4bbceee xf86-input-libinput 0.1.2
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
2014-07-24 10:18:07 +10:00
Peter Hutterer
e1a9c82dbc Drop two comments mentioning evdev
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
2014-07-24 10:18:07 +10:00
Peter Hutterer
fe81ad3ae2 Drop the pkgconfig file
We don't export anything, so need to ship it

Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
2014-07-24 10:14:15 +10:00
Peter Hutterer
6a69462359 Let libinput take care of pointer acceleration
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
2014-07-01 11:19:06 +10:00
Peter Hutterer
2f03f67426 xf86-input-libinput 0.1.1
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
2014-06-26 15:36:49 +10:00
Peter Hutterer
6d634262fd Fix distcheck
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
2014-06-26 15:36:25 +10:00
Peter Hutterer
6f91b84fd3 Add COPYING file
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
2014-06-26 15:35:44 +10:00
6 changed files with 27 additions and 17 deletions

20
COPYING Normal file
View File

@@ -0,0 +1,20 @@
Copyright © 2014 Red Hat, Inc.
Permission to use, copy, modify, distribute, and sell this software
and its documentation for any purpose is hereby granted without
fee, provided that the above copyright notice appear in all copies
and that both that copyright notice and this permission notice
appear in supporting documentation, and that the name of the authors
not be used in advertising or publicity pertaining to distribution of the
software without specific, written prior permission. The authors make no
representations about the suitability of this software for any
purpose. It is provided "as is" without express or implied
warranty.
THE AUTHORS DISCLAIM ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN
NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY SPECIAL, INDIRECT OR
CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS
OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT,
NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.

View File

@@ -25,10 +25,6 @@ DISTCHECK_CONFIGURE_FLAGS = --with-sdkdir='$${includedir}/xorg'
SUBDIRS = src
MAINTAINERCLEANFILES = ChangeLog INSTALL
pkgconfigdir = $(libdir)/pkgconfig
pkgconfig_DATA = xorg-libinput.pc
.PHONY: ChangeLog INSTALL
INSTALL:

View File

@@ -23,7 +23,7 @@
# Initialize Autoconf
AC_PREREQ([2.60])
AC_INIT([xf86-input-libinput],
[0.1.0],
[0.1.2],
[https://bugs.freedesktop.org/enter_bug.cgi?product=xorg],
[xf86-input-libinput])
AC_CONFIG_SRCDIR([Makefile.am])
@@ -56,8 +56,7 @@ AC_ARG_WITH(xorg-module-dir,
inputdir=${moduledir}/input
AC_SUBST(inputdir)
# X Server SDK location is required to install evdev header files
# This location is also relayed in the xorg-evdev.pc file
# X Server SDK location is required to install header files
sdkdir=`$PKG_CONFIG --variable=sdkdir xorg-server`
# Workaround overriding sdkdir to be able to create a tarball when user has no
@@ -69,6 +68,5 @@ DRIVER_NAME=libinput
AC_SUBST([DRIVER_NAME])
AC_CONFIG_FILES([Makefile
src/Makefile
xorg-libinput.pc])
src/Makefile])
AC_OUTPUT

View File

@@ -33,6 +33,5 @@ AM_CPPFLAGS =-I$(top_srcdir)/include $(LIBINPUT_CFLAGS)
@DRIVER_NAME@_drv_la_LIBADD = $(LIBINPUT_LIBS)
@DRIVER_NAME@_drv_ladir = @inputdir@
@DRIVER_NAME@_drv_la_SOURCES = @DRIVER_NAME@.c \
@DRIVER_NAME@.h
@DRIVER_NAME@_drv_la_SOURCES = @DRIVER_NAME@.c

View File

@@ -610,6 +610,9 @@ static int xf86libinput_pre_init(InputDriverPtr drv,
driver_data->path = path;
driver_data->device = device;
pInfo->options = xf86ReplaceIntOption(pInfo->options, "AccelerationProfile", -1);
pInfo->options = xf86ReplaceStrOption(pInfo->options, "AccelerationScheme", "none");
return Success;
fail:

View File

@@ -1,6 +0,0 @@
sdkdir=@sdkdir@
Name: xorg-libinput
Description: X.Org libinput input driver.
Version: @PACKAGE_VERSION@
Cflags: -I${sdkdir}