[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

xserver-xorg-input-dynapro: Changes to 'upstream-unstable'



 .cvsignore     |   19 -------------------
 .gitignore     |   22 ++++++++++++++++++++++
 ChangeLog      |   45 ---------------------------------------------
 Makefile.am    |    8 ++++++++
 configure.ac   |    2 +-
 man/.cvsignore |    2 --
 man/.gitignore |    2 ++
 src/.cvsignore |    6 ------
 src/.gitignore |    6 ++++++
 src/xf86Dyna.c |    8 ++++++--
 10 files changed, 45 insertions(+), 75 deletions(-)

New commits:
commit 2f052f7442df5f4d0a6b271f72f61e93731ed8a7
Author: Adam Jackson <ajax@redhat.com>
Date:   Thu Mar 20 15:22:46 2008 -0400

    dynapro 1.1.2

diff --git a/configure.ac b/configure.ac
index f034de4..7323d82 100644
--- a/configure.ac
+++ b/configure.ac
@@ -22,7 +22,7 @@
 
 AC_PREREQ(2.57)
 AC_INIT([xf86-input-dynapro],
-        1.1.1,
+        1.1.2,
         [https://bugs.freedesktop.org/enter_bug.cgi?product=xorg],
         xf86-input-dynapro)
 

commit e491b6e207c1efc2c07505671a634fc7cc7b127f
Author: Paulo Cesar Pereira de Andrade <pcpa@mandriva.com.br>
Date:   Wed Jan 30 16:57:23 2008 -0200

    Don't call xf86XInputSetSendCoreEvents
    
    Only call that function if GET_ABI_MAJOR(ABI_XINPUT_VERSION) == 0.

diff --git a/src/xf86Dyna.c b/src/xf86Dyna.c
index 69c9651..0a899f0 100644
--- a/src/xf86Dyna.c
+++ b/src/xf86Dyna.c
@@ -114,7 +114,9 @@ static const char *reqSymbols[] = {
 	"xf86SetIntOption",
 	"xf86SetStrOption",
 	"xf86XInputSetScreen",
+#if GET_ABI_MAJOR(ABI_XINPUT_VERSION) == 0
 	"xf86XInputSetSendCoreEvents",
+#endif
 	NULL
 };
 
@@ -494,11 +496,13 @@ SwitchMode (ClientPtr client, DeviceIntPtr dev, int mode)
                 priv->reporting_mode = mode;
                 return (Success);
         }
+#if GET_ABI_MAJOR(ABI_XINPUT_VERSION) == 0
         else if ((mode == SendCoreEvents) || (mode == DontSendCoreEvents))
         {
                 xf86XInputSetSendCoreEvents (pInfo, (mode == SendCoreEvents));
                 return (Success);
         }
+#endif
         else
                 return (!Success);   
 }

commit 17ae2bf9557e025f0e7d0d5f3afd1a89bcde9add
Author: Tilman Sauerbeck <tilman@code-monkey.de>
Date:   Mon Sep 10 18:28:20 2007 +0200

    Bumped version to 1.1.1.

diff --git a/configure.ac b/configure.ac
index c882f42..f034de4 100644
--- a/configure.ac
+++ b/configure.ac
@@ -22,7 +22,7 @@
 
 AC_PREREQ(2.57)
 AC_INIT([xf86-input-dynapro],
-        1.1.0,
+        1.1.1,
         [https://bugs.freedesktop.org/enter_bug.cgi?product=xorg],
         xf86-input-dynapro)
 

commit c0353c29e28629cca89328980ac0306b2db5e95b
Author: Tilman Sauerbeck <tilman@code-monkey.de>
Date:   Mon Sep 10 18:27:32 2007 +0200

    Added man/dynapro.? to .gitignore.

diff --git a/.gitignore b/.gitignore
index d90176e..d44e05b 100644
--- a/.gitignore
+++ b/.gitignore
@@ -19,3 +19,4 @@ ltmain.sh
 missing
 stamp-h1
 *~
+man/dynapro.?

commit 264d4e1509dc446c1d16c4906b5db1ababe36981
Author: Tilman Sauerbeck <tilman@code-monkey.de>
Date:   Mon Sep 10 18:25:40 2007 +0200

    Generate ChangeLog from git.

diff --git a/.gitignore b/.gitignore
index 2df4a8d..d90176e 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,3 +1,4 @@
+ChangeLog
 Makefile
 Makefile.in
 *.la
diff --git a/ChangeLog b/ChangeLog
deleted file mode 100644
index 0cbec1b..0000000
--- a/ChangeLog
+++ /dev/null
@@ -1,45 +0,0 @@
-2006-04-06  Adam Jackson  <ajax@freedesktop.org>
-
-	* configure.ac:
-	* src/xf86Dyna.c:
-	Unlibcwrap.  Bump server version requirement.  Bump to 1.1.0.
-
-2005-12-20  Kevin E. Martin  <kem-at-freedesktop-dot-org>
-
-	* configure.ac:
-	Update package version for X11R7 release.
-
-2005-12-14  Kevin E. Martin  <kem-at-freedesktop-dot-org>
-
-	* configure.ac:
-	Update package version number for final X11R7 release candidate.
-
-2005-12-06  Kevin E. Martin  <kem-at-freedesktop-dot-org>
-
-	* man/Makefile.am:
-	Change *man_SOURCES ==> *man_PRE to fix autotools warnings.
-
-2005-12-03  Kevin E. Martin  <kem-at-freedesktop-dot-org>
-
-	* configure.ac:
-	Update package version number for X11R7 RC3 release.
-
-2005-12-01  Kevin E. Martin  <kem-at-freedesktop-dot-org>
-
-	* configure.ac:
-	Remove extraneous AC_MSG_RESULT.
-
-2005-11-29  Adam Jackson  <ajax@freedesktop.org>
-
-	* configure.ac:
-	Only build dlloader modules by default.
-
-2005-11-09  Kevin E. Martin  <kem-at-freedesktop-dot-org>
-
-	* configure.ac:
-	Update package version number for X11R7 RC2 release.
-
-2005-11-01  Kevin E. Martin  <kem-at-freedesktop-dot-org>
-
-	* configure.ac:
-	Update pkgcheck dependencies to work with separate build roots.
diff --git a/Makefile.am b/Makefile.am
index 7052905..42f8b54 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -20,3 +20,11 @@
 
 AUTOMAKE_OPTIONS = foreign
 SUBDIRS = src man
+
+CLEANFILES = ChangeLog
+EXTRA_DIST = ChangeLog
+
+.PHONY: ChangeLog
+
+ChangeLog:
+	(GIT_DIR=$(top_srcdir)/.git git-log > .changelog.tmp && mv .changelog.tmp ChangeLog; rm -f .changelog.tmp) || (touch ChangeLog; echo 'git directory not found: installing possibly empty changelog.' >&2)

commit 2d11aff614b841afe0ec27162c5ed4fbe321878d
Author: James Cloos <cloos@jhcloos.com>
Date:   Mon Sep 3 05:52:05 2007 -0400

    Add *~ to .gitignore to skip patch/emacs droppings

diff --git a/.gitignore b/.gitignore
index fb1befd..2df4a8d 100644
--- a/.gitignore
+++ b/.gitignore
@@ -17,3 +17,4 @@ libtool
 ltmain.sh
 missing
 stamp-h1
+*~

commit 6e6d5d69cacafd05702aadf21605dd5c6d6410fd
Author: James Cloos <cloos@jhcloos.com>
Date:   Thu Aug 23 19:25:24 2007 -0400

    Rename .cvsignore to .gitignore

diff --git a/.cvsignore b/.cvsignore
deleted file mode 100644
index fb1befd..0000000
--- a/.cvsignore
+++ /dev/null
@@ -1,19 +0,0 @@
-Makefile
-Makefile.in
-*.la
-*.lo
-aclocal.m4
-autom4te.cache
-config.guess
-config.h
-config.h.in
-config.log
-config.status
-config.sub
-configure
-depcomp
-install-sh
-libtool
-ltmain.sh
-missing
-stamp-h1
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..fb1befd
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,19 @@
+Makefile
+Makefile.in
+*.la
+*.lo
+aclocal.m4
+autom4te.cache
+config.guess
+config.h
+config.h.in
+config.log
+config.status
+config.sub
+configure
+depcomp
+install-sh
+libtool
+ltmain.sh
+missing
+stamp-h1
diff --git a/man/.cvsignore b/man/.cvsignore
deleted file mode 100644
index 282522d..0000000
--- a/man/.cvsignore
+++ /dev/null
@@ -1,2 +0,0 @@
-Makefile
-Makefile.in
diff --git a/man/.gitignore b/man/.gitignore
new file mode 100644
index 0000000..282522d
--- /dev/null
+++ b/man/.gitignore
@@ -0,0 +1,2 @@
+Makefile
+Makefile.in
diff --git a/src/.cvsignore b/src/.cvsignore
deleted file mode 100644
index 9730646..0000000
--- a/src/.cvsignore
+++ /dev/null
@@ -1,6 +0,0 @@
-.deps
-.libs
-Makefile
-Makefile.in
-*.la
-*.lo
diff --git a/src/.gitignore b/src/.gitignore
new file mode 100644
index 0000000..9730646
--- /dev/null
+++ b/src/.gitignore
@@ -0,0 +1,6 @@
+.deps
+.libs
+Makefile
+Makefile.in
+*.la
+*.lo

commit cdfc90bcdc9760c6cc858f738343aada8d93b8c1
Author: Daniel Stone <daniel@fooishbar.org>
Date:   Wed Aug 8 01:00:55 2007 +0300

    Convert from TSCalibrationCtl to AbsCalibCtl

diff --git a/src/xf86Dyna.c b/src/xf86Dyna.c
index 7556c63..69c9651 100644
--- a/src/xf86Dyna.c
+++ b/src/xf86Dyna.c
@@ -459,7 +459,7 @@ ReadInput (InputInfoPtr pInfo)
 static int
 ControlProc (InputInfoPtr pInfo, xDeviceCtl * control)
 {
-	xDeviceTSCalibrationCtl *c = (xDeviceTSCalibrationCtl *) control;
+	xDeviceAbsCalibCtl *c = (xDeviceAbsCalibCtl *) control;
 	DynaproPrivatePtr priv = (DynaproPrivatePtr) (pInfo->private);
 
         priv->min_x = c->min_x;

commit 766ed72d88d4fd09b942deede1421537dc0bd44a
Author: Brice Goglin <bgoglin@debian.org>
Date:   Mon Aug 6 22:29:40 2007 +0200

    Use PACKAGE_VERSION_MAJOR/MINOR/PATCHLEVEL in VersionRec

diff --git a/src/xf86Dyna.c b/src/xf86Dyna.c
index 3436d2d..7556c63 100644
--- a/src/xf86Dyna.c
+++ b/src/xf86Dyna.c
@@ -66,7 +66,7 @@ static XF86ModuleVersionInfo VersionRec =
 	MODINFOSTRING1,
 	MODINFOSTRING2,
 	XORG_VERSION_CURRENT,
-	1, 0, 0,
+	PACKAGE_VERSION_MAJOR, PACKAGE_VERSION_MINOR, PACKAGE_VERSION_PATCHLEVEL,
 	ABI_CLASS_XINPUT,
 	ABI_XINPUT_VERSION,
 	MOD_CLASS_XINPUT,


Reply to: