summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2010-11-25Move default_options up, preparation work for ABI 12.Peter Hutterer1-12/+12
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
2010-11-25Remove libc wrapper usage for xcalloc, xfree, etc.Peter Hutterer1-2/+2
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
2010-11-25Replace LocalDevicePtr with InputInfoPtr.Peter Hutterer2-21/+20
LocalDevicePtr was removed with input ABI 12, but InputInfoPtr has been around for years anyway. Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
2010-11-25Remove usage of XI86_POINTER_CAPABLE.Peter Hutterer1-1/+1
Flag was a write-only flag in both the server and the driver has now been removed from the server. Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
2010-10-27Remove refcnt field from InputDriverRec.Alan Coopersmith1-2/+1
Wasn't used in the server and is now removed. Fixes compiler error: "acecad.c", line 111: too many struct/union initializers Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2010-06-09config: requires RANDR through xf86.hGaetan Nadon1-1/+4
The xf86.h file contains external declarations specific to RANDR Will not compile if this extension is not installed. Because this is an optional extension, XORG_DRIVER_CHECK_EXT must be used. Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
2010-06-09config: requires xext, kb and input extensions through xf86.hGaetan Nadon1-1/+1
The xf86.h file includes headers from these protocols. Will not compile if these extensions are not installed. Because these extensions are always defined in the server, XORG_DRIVER_CHECK_EXT should not be used. Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
2010-06-09config: use AC_PROG_INSTALL now supplied by XORG_DEFAULT_OPTIONSGaetan Nadon1-3/+0
It depends on util-macros 1.8 The existing statement can now be removed from the configuration file. Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
2010-06-09config: upgrade to util-macros 1.8 for additional man page supportGaetan Nadon2-23/+7
Use MAN_SUBST now supplied in XORG_MANPAGE_SECTIONS The value of MAN_SUBST is the same for all X.Org packages. Use AC_PROG_SED now supplied by XORG_DEFAULT_OPTIONS The existing statement can now be removed from the configuration file. Use Automake recommened $() for makefile variables. Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
2010-05-13config: acecad does not use the input protocolGaetan Nadon1-1/+1
There is no need to PKG_CHECK_MODULES inputproto Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
2010-05-10config: AC_PROG_SED is required explicitly on SolarisGaetan Nadon1-0/+1
It sets the SED env variable with an appropriate sed program path Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
2010-04-19man: Use Autoconf provided $(AM_V_GEN)$(SED)Gaetan Nadon1-3/+1
Enables silent rule and use platform appropriate version of sed. Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
2010-04-19config: optional extension check for inputproto not requiredGaetan Nadon1-4/+1
The check should be in PKG_CHECK_MODULES permanently. The XORG_DRIVER_CHECK_EXT will add inputproto to PKG_CHECK_MODULES only if the extension is available. By definition, this extension is always available and the acecad driver cannot function without it. This is evidenced by the absence of XINPUT conditional code. Acked-by: Peter Hutterer <peter.hutterer@who-t.net> Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
2010-04-19config: remove extension check for unused RANDR extensionGaetan Nadon1-1/+0
The randr protocol is not used, no randr*.h are included. Acked-by: Peter Hutterer <peter.hutterer@who-t.net> Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
2010-04-15config: fix checking for extensions sectionGaetan Nadon1-4/+4
A hidden dependency on statement order was discovered. The REQUIRE_MODULES variable was removed but needed. Comments added to clarify the situation. Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
2010-04-15config: remove AC_PROG_CC as it overrides AC_PROG_C_C99Gaetan Nadon1-1/+0
XORG_STRICT_OPTION from XORG_DEFAULT_OPTIONS calls AC_PROG_C_C99. This sets gcc with -std=gnu99. If AC_PROG_CC macro is called afterwards, it resets CC to gcc. Acked-by: Peter Hutterer <peter.hutterer@who-t.net> Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
2010-04-15config: fix warnings and layoutGaetan Nadon1-21/+30
Minor upgrades. Layout and comment statements. Remove AC_PROG_CC as it overrides AC_PROG_C_C99 from XORG_STRICT_OPTION. Acked-by: Peter Hutterer <peter.hutterer@who-t.net> Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
2010-04-15config: replace deprecated AM_CONFIG_HEADER with AC_CONFIG_HEADERSGaetan Nadon1-3/+2
Regroup AC statements at the top. Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
2010-04-15config: update AC_PREREQ statement to 2.60Gaetan Nadon1-3/+3
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 Acked-by: Peter Hutterer <peter.hutterer@who-t.net> Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
2010-04-15config: simplify configuration regarding sysfs headers and library.Gaetan Nadon4-26/+14
Replace deprecated AC_HEADER_CHECK with AC_CHECK_HEADERS AC_CHECK_LIB ensures sysfs library is present and adds -lsysfs AC_CHECK_HEADERS verifies sysfs and linux input headers are present Acked-by: Peter Hutterer <peter.hutterer@who-t.net> Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
2010-04-15config: add conditional inclusion of config.hGaetan Nadon1-0/+2
Acked-by: Peter Hutterer <peter.hutterer@who-t.net> Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
2010-04-15config: remove AH_TOP autoheader statementGaetan Nadon2-2/+1
The generated config.h does not need to include xorg-server.h for the content it provides. Add #include <xorg-server.h> in .[hc] files as needed. Acked-by: Peter Hutterer <peter.hutterer@who-t.net> Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
2010-02-11config: move CWARNFLAGS from configure.ac to Makefile.amGaetan Nadon2-2/+2
Compiler warning flags should be explicitly set in the makefile rather than being merged with other packages compiler flags. Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
2010-01-15Update Sun license notices to current X.Org standard formAlan Coopersmith1-22/+19
Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
2009-12-30configure.ac: remove unused sdkdir=$(pkg-config...) statementGaetan Nadon1-1/+0
The sdkdir variable isn't use, so remove the statement. Acked-by: Dan Nicholson <dbn.lists@gmail.com> Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
2009-11-23Makefile.am: add ChangeLog and INSTALL on MAINTAINERCLEANFILESGaetan Nadon1-0/+1
Now that the INSTALL file is generated. Allows running make maintainer-clean.
2009-10-28INSTALL, NEWS, README or AUTHORS files are missing/incorrect #24206Gaetan Nadon1-1/+0
Automake 'foreign' option is specified in configure.ac. Remove from Makefile.am
2009-10-28INSTALL, NEWS, README or AUTHORS files are missing/incorrect #24206Gaetan Nadon2-3/+6
Add missing INSTALL file. Use standard GNU file on building tarball README may have been updated Remove AUTHORS file as it is empty and no content available yet. Remove NEWS file as it is empty and no content available yet.
2009-10-26Several driver modules do not have a ChangeLog target in Makefile.am #23814Gaetan Nadon2-4/+4
The git generated ChangeLog replaces the hand written one. Update configure.ac to xorg-macros level 1.3. Use XORG_DEFAULT_OPTIONS which replaces four XORG_* macros Update Makefile.am to add ChangeLog target if missing Remove ChangeLog from EXTRA_DIST or *CLEAN variables This is a pre-req for the INSTALL_CMD
2009-10-22.gitignore: use common defaults with custom section # 24239Gaetan Nadon1-19/+64
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-11Remove some unused crap from configurePeter Hutterer1-18/+0
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
2009-09-11acecad 1.4.0xf86-input-acecad-1.4.0Peter Hutterer1-1/+1
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
2009-09-11Require xorg-macros 1.3 for XORG_DEFAULT_OPTIONSPeter Hutterer1-8/+4
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
2009-09-09Remove redefinition of read()Peter Hutterer1-4/+1
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
2009-09-09Remove unused code from TearDownProcPeter Hutterer1-12/+0
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
2009-09-09unifdef XFree86LOADER, this isn't optional anymore anyway.Peter Hutterer1-2/+0
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
2009-09-09Remove RCS tagsPeter Hutterer2-2/+0
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
2009-09-09remove un-used _ACECAD_C_ definePeter Hutterer1-1/+0
2009-09-08xf86-input-acecad: Remove unused .cvsignore file #23776Gaetan Nadon3-27/+0
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
2009-06-22Cope with ABI_XINPUT_VERSION 7 - requires button/axes labels.Peter Hutterer1-3/+43
We don't have an atom for relative pressure, so if the device is set to relative, we export the axis as REL_Z instead. Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
2009-05-11Fill in COPYING file, add SubmittingPatches URL to READMEAlan Coopersmith2-13/+27
2009-02-24acecad 1.3.0xf86-input-acecad-1.3.0Peter Hutterer1-1/+1
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
2009-02-02Janitor: Correct make distcheck and minor configure.ac cleanup.Paulo Cesar Pereira de Andrade4-11/+18
2009-01-29Add README with pointers to mailing list, bugzilla & git reposAlan Coopersmith1-0/+20
2009-01-09Remove xorgconfig & xorgcfg from See Also list in man pageAlan Coopersmith1-1/+1
2008-11-28Correct wrong check for Linux libsysfs.Paulo Cesar Pereira de Andrade1-2/+3
This patch was the original one, and the previous test was a wrong attempt to simplify the change. Triggered by tinderbox build.
2008-11-28Dont dlopen libsysfs.so, instead, link with it when available.Paulo Cesar Pereira de Andrade3-49/+50
2008-05-27Check for XINPUT ABI 3.Peter Hutterer1-1/+4
2008-05-01Compile warning fixes.Paulo Cesar Pereira de Andrade2-3/+2
Don't call xf86usleep, just call usleep directly. Remove unused variables. Signed-off-by: Peter Hutterer <peter@cs.unisa.edu.au>
2008-02-10Bump to 1.2.2xf86-input-acecad-1.2.2Giuseppe Bilotta1-1/+1