summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2022-10-16InputDriverRec: Resolve -Wmissing-field-initializers warningAlan Coopersmith
void.c:222:1: warning: missing initializer for field ‘default_options’ of ‘InputDriverRec {aka struct _InputDriverRec}’ [-Wmissing-field-initializers] }; ^ In file included from void.c:39:0: /usr/include/xorg/xf86Xinput.h:83:18: note: ‘default_options’ declared here const char **default_options; ^~~~~~~~~~~~~~~ Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2013-07-20Fix an integer truncation warning from clangAlan Coopersmith
void.c:114:21: warning: implicit conversion loses integer precision: 'int' to 'unsigned char' [-Wconversion] map[i + 1] = i + 1; ~ ~~^~~ Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2013-07-20Link with $(XORG_LIBS) to support no-undefined linkingAlan Coopersmith
Will be empty on most platforms, set to the -z parent=Xorg flag on Solaris if building with the support for enforcing no undefined symbols. Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2011-07-18Return proper default for unknown values in pInfo->device_control.Terry Lambert
Signed-off-by: Terry Lambert <tlambert@chromium.org> Reviewed-by: Stephane Marchesin <marcheu@chromium.org> Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
2011-05-02config: Remove unnecessary calls from configure.acAlan Coopersmith
AC_PROG_CC is provided by XORG_DEFAULT_OPTIONS now PKG_CONFIG_MODULES handles AC_SUBST of the CFLAGS variables AC_HEADERS_STDC result was never used No headers exist in $(top_srcdir)/src, so no point including -I in CFLAGS Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2010-11-30Fix PreInit for ABI 12.Peter Hutterer
Require an xserver 1.9.99.1 or higher and put an ifdef in for ABI 12. Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net> Reviewed-by: Matt Turner <mattst88@gmail.com> Reviewed-by: Adam Jackson <ajax@redhat.com>
2010-11-30Add mode field to xf86InitValuatorAxisStruct.Peter Hutterer
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net> Reviewed-by: Matt Turner <mattst88@gmail.com> Reviewed-by: Adam Jackson <ajax@redhat.com>
2010-11-30Label the axes as absolute, not relative.Peter Hutterer
Not that it matters for this driver, but the axes are set up as absolute, so label them accordingly. Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net> Reviewed-by: Matt Turner <mattst88@gmail.com> Reviewed-by: Adam Jackson <ajax@redhat.com>
2010-11-30Require xserver 1.9Peter Hutterer
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net> Reviewed-by: Matt Turner <mattst88@gmail.com> Reviewed-by: Adam Jackson <ajax@redhat.com>
2010-11-30unifdef XFree86LOADERPeter Hutterer
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net> Reviewed-by: Matt Turner <mattst88@gmail.com> Reviewed-by: Adam Jackson <ajax@redhat.com>
2010-10-27Remove refcnt field from InputDriverRec.Alan Coopersmith
Wasn't used in the server and is now removed. Fixes compiler error: "void.c", line 340: too many struct/union initializers Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2009-10-22.gitignore: use common defaults with custom section # 24239Gaetan Nadon
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.
2009-09-07Don't pass an empty RMLVO to InitKeyboardDeviceStruct.Peter Hutterer
Passing in NULL is ok, an empty one isn't. Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
2009-09-07Remove RCS tags, some useless comments, empty AUTHORS from man.Peter Hutterer
2009-06-19Remove obsolete chunk, focus/key class is added by InitKeyboardDeviceStruct.Peter Hutterer
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
2009-06-19Adjust for ABI_XINPUT_VERSION >= 7Peter Hutterer
2009-02-15Janitor: update for ABI_XINPUT_VERSION >= 5Paulo Cesar Pereira de Andrade
This driver should be seen as the simplest possible input driver, and somewhat as a skeleton/model for newer ones. Having it at least compiling with current xorg sdk is a plus. Signed-off-by: Paulo Cesar Pereira de Andrade <pcpa@mandriva.com.br> Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
2008-05-26Check for XINPUT ABI 3.Peter Hutterer
2007-09-07Clear compiler & sparse warningsAlan Coopersmith
void.c:41:9: warning: preprocessor token NEED_XF86_TYPES redefined /usr/X11R7/include/xorg/xorg-server.h:69:9: this was the original definition void.c:298:35: warning: Using plain integer as NULL pointer
2007-08-28Don't fill in motion_history_proc for new input ABIAlan Coopersmith
2007-08-23Rename .cvsignore to .gitignoreJames Cloos
2007-08-06Use PACKAGE_VERSION_MAJOR/MINOR/PATCHLEVEL in xf86VoidVersionRecBrice Goglin
2006-04-07Unlibcwrap. Bump server version requirement. Bump to 1.1.0.xf86-video-impact-0_2_0void-1_1_0XORG-7_1Adam Jackson
2005-11-21Add .cvsignores for drivers.Eric Anholt
2005-07-13Change input drivers to get keysym's from <X11/keysym.h>.XORG-6_8_99_903XORG-6_8_99_902XORG-6_8_99_901XORG-6_8_99_900XORG-6_8_99_16XORG-6_8_99_15accelerated_indirect-0-0-1Kevin E Martin
2005-07-12Build skeletons for input drivers. Should basically work.Adam Jackson
2005-07-11Prep input drivers for modularizing by adding guarded #include "config.h"Adam Jackson
2005-06-27Various input drivers set their InputDriverRec to be static when doing aXORG-6_8_99_14Adam Jackson
loadable build, and the same symbol can't be both static and _X_EXPORT. Pointed out by Alan Coopersmith.
2005-06-25Bug #3626: _X_EXPORT tags for video and input drivers.XORG-6_8_99_13Adam Jackson
2005-02-18Bug #2467: Fix a segfault in the void(4) driver. (David Wong)sco_port_update-baseXORG-6_8_99_9XORG-6_8_99_8XORG-6_8_99_7XORG-6_8_99_6XORG-6_8_99_5XORG-6_8_99_4XORG-6_8_99_3XORG-6_8_99_2XORG-6_8_99_12XORG-6_8_99_11XORG-6_8_99_10XORG-6_8_99_1sco_port_updateAdam Jackson
2004-04-23Merging XORG-CURRENT into trunkxprint_packagertest_20041217_basexprint_packagertest_20041125_baserel-0-6-1lg3d-rel-0-7-0lg3d-rel-0-6-2lg3d-baseXORG-6_8_2XORG-6_8_1_904XORG-6_8_1_903XORG-6_8_1_902XORG-6_8_1_901XORG-6_8_1XORG-6_8_0XORG-6_7_99_904XORG-6_7_99_903XORG-6_7_99_902XORG-6_7_99_901XORG-6_7_99_2XORG-6_7_99_1XACE-SELINUX-MERGExprint_packagertest_20041217xprint_packagertest_20041125lg3d-masterlg3d-eventlg3d-dev-0-7-1lg3d-dev-0-7-0lg3d-dev-0-6-latestlg3d-dev-0-6-2lg3d-dev-0-6-1-latestlg3d-dev-0-6-1-currentlg3d-dev-0-6-1-1lg3d-dev-0-6-1lg3dXORG-6_8-branchCOMPOSITEWRAPEgbert Eich
2004-03-14Importing vendor version xf86-4_4_99_1 on Sun Mar 14 00:26:39 PST 2004xf86-4_4_99_1Egbert Eich
2004-03-03Importing vendor version xf86-4_4_0 on Wed Mar 3 04:09:24 PST 2004xf86-4_4_0STSF-CURRENTEgbert Eich
2004-02-26readding XFree86's cvs IDsxf86-4_3_99_903Egbert Eich
2004-02-26Importing vendor version xf86-4_3_99_903 on Wed Feb 26 01:21:00 PST 2004Egbert Eich
2003-11-14Initial revisionXORG-RELEASE-1-BASEXEVIE-MERGEXEVIE-BASEXORG-STABLEXINERAMA_2XEVIEKaleb Keithley