summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJavier Jardón <jjardon@gnome.org>2015-02-04 18:48:42 +0000
committerJavier Jardón <jjardon@gnome.org>2015-08-21 15:01:39 +0100
commit8225e3dcc9242d4d9b764c8a0ad6d7db728ac114 (patch)
treeabecebd3abcc418fedea24cca5dea4050713ed41
parent022f903fe9dfe57386c635ec2e80aa4fa68427c5 (diff)
downloadgnome-settings-daemon-baserock/gnome.tar.gz
Disable wacom supportbaserock/gnome
-rw-r--r--configure.ac21
1 files changed, 1 insertions, 20 deletions
diff --git a/configure.ac b/configure.ac
index 5e49a9a6..d3be8cc1 100644
--- a/configure.ac
+++ b/configure.ac
@@ -260,26 +260,7 @@ dnl ---------------------------------------------------------------------------
dnl - wacom (disabled for s390/s390x and non Linux platforms)
dnl ---------------------------------------------------------------------------
-case $host_os in
- linux*)
- if test "$host_cpu" = s390 -o "$host_cpu" = s390x; then
- have_wacom=no
- else
- if test x$enable_gudev != xno; then
- PKG_CHECK_MODULES(LIBWACOM, [libwacom >= $LIBWACOM_REQUIRED_VERSION])
- PKG_CHECK_MODULES(WACOM, [libwacom >= $LIBWACOM_REQUIRED_VERSION x11 xi xtst gudev-1.0 gnome-desktop-3.0 >= $GNOME_DESKTOP_REQUIRED_VERSION xorg-wacom librsvg-2.0 >= $LIBRSVG_REQUIRED_VERSION libnotify >= $LIBNOTIFY_REQUIRED_VERSION pango >= $PANGO_REQUIRED_VERSION])
- PKG_CHECK_MODULES(WACOM_OLED, [gudev-1.0])
- else
- AC_MSG_ERROR([GUdev is necessary to compile Wacom support])
- fi
- AC_DEFINE_UNQUOTED(HAVE_WACOM, 1, [Define to 1 if wacom support is available])
- have_wacom=yes
- fi
- ;;
- *)
- have_wacom=no
- ;;
-esac
+have_wacom=no
AM_CONDITIONAL(HAVE_WACOM, test x$have_wacom = xyes)
dnl ==============================================