summaryrefslogtreecommitdiff
path: root/configure.ac
AgeCommit message (Collapse)AuthorFilesLines
2011-09-23Support the new Scroll classPeter Hutterer1-1/+4
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net> Reviewed-by: Jeremy Huddleston <jeremyhu@apple.com> Reviewed-by: Daniel Stone <daniel@fooishbar.org>
2011-07-18Add support for device-to-screen mappingPeter Hutterer1-1/+1
xinput map-to-crtc "device name" "VGA0" will map to the CRTC "VGA0" by manipulating the transformation matrix accordingly. And because the NVIDIA binary driver still exists, Xinerama is supported to. Maybe in another 5 years, they'll catch up. Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net> Reviewed-by: Simon Thum <simon.thum@gmx.de>
2011-06-21Update Copyright notices.Gaetan Nadon1-2/+21
Signed-off-by: Gaetan Nadon <memsize@videotron.ca> Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
2011-06-21Apply standard configuration init, layout and commentsGaetan Nadon1-6/+8
http://www.x.org/wiki/NewModuleGuidelines#Configurationfilescontentguidelines Signed-off-by: Gaetan Nadon <memsize@videotron.ca> Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
2011-06-20Remove redundant definition of the VERSION Automake variableGaetan Nadon1-2/+0
This variable is defined by Automake: In config.status: S["VERSION"]="1.5.3" In config.h: Reverts commit \58c513b0b9f6 Signed-off-by: Gaetan Nadon <memsize@videotron.ca> Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com> Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
2011-01-12config: replace deprecated AM_CONFIG_HEADER with AC_CONFIG_HEADERSGaetan Nadon1-1/+1
This silences an Autoconf warning
2011-01-12config: remove unrequired AC_SUBST([*_LIBS])Gaetan Nadon1-1/+0
This macro is called by PKG_CHECK_MODULES Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
2011-01-12config: remove unrequired AC_SUBST([*_CFLAGS])Gaetan Nadon1-1/+0
This macro is called by PKG_CHECK_MODULES Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
2011-01-12config: 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. Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
2011-01-12config: use AC_PROG_INSTALL now supplied by XORG_DEFAULT_OPTIONSGaetan Nadon1-1/+0
It depends on util-macros 1.8 or later The existing statement can now be removed from the configuration file. Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
2011-01-12config: use AC_PROG_SED now supplied by XORG_DEFAULT_OPTIONSGaetan Nadon1-1/+0
It depends on util-macros 1.8 or later The existing statement can now be removed from the configuration file. Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
2011-01-12config: upgrade to util-macros 1.8 for additional man page supportGaetan Nadon1-3/+3
Use MAN_SUBST now supplied in XORG_MANPAGE_SECTIONS The value of MAN_SUBST is the same for all X.Org packages. Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
2011-01-12config: update AC_PREREQ statement to 2.60Gaetan Nadon1-1/+1
Unrelated to the previous patches, the new value simply reflects the reality that the minimum level for autoconf to configure all x.org modules in one pass is 2.60 dated June 2006. A version later than 2.60 can be used, but no new features from such a later version can be used in configure.ac. Although the code in this module can be configured with a version earlier than 2.60, most of code is now contained in macros from util-macros which use features of version 2.60, at the present or in the future. ftp://ftp.gnu.org/gnu/autoconf/autoconf-2.60.tar.gz Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
2010-11-11xinput 1.5.3xinput-1.5.3Peter Hutterer1-1/+1
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
2010-06-04xinput 1.5.2xinput-1.5.2Peter Hutterer1-1/+1
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
2010-04-07man: Use AC_PROG_SED to find sedYaakov Selkowitz1-0/+1
Signed-off-by: Yaakov Selkowitz <yselkowitz@users.sourceforge.net> Reviewed-by: Dan Nicholson <dbn.lists@gmail.com> Acked-by: Gaetan Nadon <memsize@videotron.ca> Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
2010-03-15xinput 1.5.1xinput-1.5.1Peter Hutterer1-1/+1
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
2009-10-27Deploy the new XORG_DEFAULT_OPTIONS #24242Gaetan Nadon1-2/+3
This macro aggregate a number of existing macros that sets commmon X.Org components configuration options. It shields the configuration file from future changes.
2009-10-21This is not a GNU project, so declare it foreign.Jeremy Huddleston1-1/+1
On Wed, 2009-10-21 at 13:36 +1000, Peter Hutterer wrote: > On Tue, Oct 20, 2009 at 08:23:55PM -0700, Jeremy Huddleston wrote: > > I noticed an INSTALL file in xlsclients and libXvMC today, and it > > was quite annoying to work around since 'autoreconf -fvi' replaces > > it and git wants to commit it. Should these files even be in git? > > Can I nuke them for the betterment of humanity and since they get > > created by autoreconf anyways? > > See https://bugs.freedesktop.org/show_bug.cgi?id=24206 As an interim measure, replace AM_INIT_AUTOMAKE([dist-bzip2]) with AM_INIT_AUTOMAKE([foreign dist-bzip2]). This will prevent the generation of the INSTALL file. It is also part of the 24206 solution. Signed-off-by: Jeremy Huddleston <jeremyhu@freedesktop.org>
2009-10-13xinput 1.5.0xinput-1.5.0Peter Hutterer1-1/+1
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
2009-09-24Bump to 1.4.99.3xinput-1.4.99.3Peter Hutterer1-1/+1
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
2009-09-16Require xorg-macros 1.3 for XORG_DEFAULT_OPTIONS.Peter Hutterer1-8/+4
2009-08-03Bump to 1.4.99.2xinput-1.4.99.2Peter Hutterer1-1/+1
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
2009-07-23test-xi2: Update to keycode grabs instead of keysym grabs.Peter Hutterer1-1/+1
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
2009-07-13Adjust to new, split-up raw event types.Peter Hutterer1-1/+1
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
2009-07-13test_xi2: Update to use cookie events - require libXi 1.2.99.2Peter Hutterer1-1/+1
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
2009-06-22Bump to 1.4.99.1xinput-1.4.99.1Peter Hutterer1-1/+1
We've had a 1.4 branch for a while now, this bump is way overdue.
2009-06-17Require inputproto 1.9.99.12Peter Hutterer1-1/+1
2009-06-12Fix build errors introduced by inputproto 1.9.99.11.Peter Hutterer1-1/+1
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
2009-05-18Update to new inputproto and libXi naming conventions.Peter Hutterer1-2/+2
Require inputproto 1.9.99.9.
2009-05-07Merge branch 'master' into xi2Peter Hutterer1-1/+1
Conflicts: src/property.c src/xinput.c src/xinput.h
2009-04-06xinput 1.4.1xinput-1.4.1Peter Hutterer1-1/+1
2009-03-21Update to new XI2 requests and sanitize the check for XI2 in configure.Peter Hutterer1-4/+5
Check for the actual library version, not for some random function inside the library. Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
2009-01-21Correct make distcheck and sparse warnings.Paulo Cesar Pereira de Andrade1-0/+8
2009-01-16xinput 1.4.0xinput-1.4.0Peter Hutterer1-1/+1
2009-01-16Require libXi 1.2 and inputproto 1.5.Peter Hutterer1-1/+1
Device properties are available in a released libXi version now, so there's no need to keep them conditional, make 1.5 mandatory. We also have the explicit check for XI2 functions in libXi, so there's no need to have requirements for inputproto 1.9.99.5.
2008-09-26Require inputproto 1.9.99.5Peter Hutterer1-1/+1
2008-08-15Require inputproto 1.9.99.4Peter Hutterer1-1/+1
2008-06-25Clean up the detection of XI2Benjamin Close1-4/+2
Signed-off-by: Peter Hutterer <peter@cs.unisa.edu.au>
2008-06-05Correct the check for XI2, not every shell supports ==, but they do =Benjamin Close1-1/+1
Signed-off-by: Peter Hutterer <peter@cs.unisa.edu.au>
2008-05-27Test for XI2 functions in libXi, add #ifdefs to build in non-XI2 setups.Peter Hutterer1-0/+8
2008-04-07Mandriva patches to xinput.Paulo Cesar Pereira de Andrade1-1/+1
Change to src/list.c fixes a typo/oversight. Change to configure.ac required to avoid possible error in configure step due to "unquoted" version test. Signed-off-by: Peter Hutterer <peter@cs.unisa.edu.au>
2008-01-09Make dependency on inputproto >= 1.4 explicit.Philip Langdale1-1/+1
2007-11-15Let autoconf substitute the VERSION.Peter Hutterer1-0/+2
2007-11-08Autotool the lot.Peter Hutterer1-0/+24