summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog9
-rw-r--r--configure.in8
2 files changed, 16 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 64feb47..561349b 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,12 @@
+2008-05-23 Ping Cheng <pingc@wacom.com>
+ * Fixed an issue in configure.in (Ron and Magnus)
+ * Fixed an issue in wcmISDV4.c
+ * Label 0.8.0-3
+
+2008-05-14 Ping Cheng <pingc@wacom.com>
+ * Fixed rotation issue
+ * Label 0.8.0-2
+
2008-05-09 Ping Cheng <pingc@wacom.com>
* Updated xidump for Xserver 1.4 or later
* Fixed no eraser calibration issue for LCD tablets
diff --git a/configure.in b/configure.in
index 3b64bff..765a1fa 100644
--- a/configure.in
+++ b/configure.in
@@ -1,5 +1,5 @@
AC_PREREQ(2.58)
-AC_INIT(linuxwacom, 0.7.9)
+AC_INIT(linuxwacom, 0.8.0)
AM_INIT_AUTOMAKE
AM_MAINTAINER_MODE
@@ -856,6 +856,12 @@ fi
AC_ARG_ENABLE(dlloader,
AC_HELP_STRING([--enable-dlloader], [Use dlloader [[default=usually]]]),
WCM_OPTION_DLLOADER=$enableval)
+#don't enable dlloader when there is a wacom_drv.o under $WCM_MODDIR
+if test "$WCM_OPTION_DLLOADER" = yes; then
+ if test -f $WCM_MODDIR/wacom_drv.o; then
+ WCM_OPTION_DLLOADER=no
+ fi
+fi
AC_MSG_RESULT($WCM_OPTION_DLLOADER)
AM_CONDITIONAL(WCM_DLLOADER, test "$WCM_OPTION_DLLOADER" == "yes")