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

xserver-xorg-video-suntcx: Changes to 'upstream-unstable'



 .cvsignore       |   19 -------------------
 .gitignore       |   20 ++++++++++++++++++++
 README           |   20 ++++++++++++++++++++
 configure.ac     |    2 +-
 man/Makefile.am  |    1 -
 man/suntcx.man   |    2 +-
 src/tcx_driver.c |    8 +++-----
 7 files changed, 45 insertions(+), 27 deletions(-)

New commits:
commit 2efd07e26ceeb065e8a9609b2129879259e51119
Author: Julien Cristau <jcristau@debian.org>
Date:   Mon May 4 16:26:36 2009 +0200

    Bump to 1.1.1

diff --git a/configure.ac b/configure.ac
index 32500ec..3121cb0 100644
--- a/configure.ac
+++ b/configure.ac
@@ -22,7 +22,7 @@
 
 AC_PREREQ(2.57)
 AC_INIT([xf86-video-suntcx],
-        1.1.0,
+        1.1.1,
         [https://bugs.freedesktop.org/enter_bug.cgi?product=xorg],
         xf86-video-suntcx)
 

commit 3def10bc709942cdc0d741053dde8ced94fa2139
Author: Alan Coopersmith <alan.coopersmith@sun.com>
Date:   Fri Jan 30 21:04:23 2009 -0800

    Add README with pointers to mailing list, bugzilla & git repos

diff --git a/README b/README
new file mode 100644
index 0000000..3f5ea92
--- /dev/null
+++ b/README
@@ -0,0 +1,20 @@
+xf86-video-suntcx - TCX video driver for the Xorg X server
+
+Please submit bugs & patches to the Xorg bugzilla:
+
+        https://bugs.freedesktop.org/enter_bug.cgi?product=xorg
+
+All questions regarding this software should be directed at the
+Xorg mailing list:
+
+        http://lists.freedesktop.org/mailman/listinfo/xorg
+
+The master development code repository can be found at:
+
+        git://anongit.freedesktop.org/git/xorg/driver/xf86-video-suntcx
+
+        http://cgit.freedesktop.org/xorg/driver/xf86-video-suntcx
+
+For more information on the git code manager, see:
+
+        http://wiki.x.org/wiki/GitPage

commit fd3334fbf8e499c6bb236d8734c92c1690735089
Author: Alan Coopersmith <alan.coopersmith@sun.com>
Date:   Fri Jan 9 16:36:36 2009 -0800

    Remove xorgconfig & xorgcfg from See Also list in man page

diff --git a/man/suntcx.man b/man/suntcx.man
index 2c939f0..2f62a4b 100644
--- a/man/suntcx.man
+++ b/man/suntcx.man
@@ -25,6 +25,6 @@ Please refer to __xconfigfile__(__filemansuffix__) for general configuration
 details.  This section only covers configuration details specific to this
 driver.
 .SH "SEE ALSO"
-__xservername__(1), __xconfigfile__(__filemansuffix__), xorgconfig(1), Xserver(1), X(__miscmansuffix__)
+__xservername__(1), __xconfigfile__(__filemansuffix__), Xserver(1), X(__miscmansuffix__)
 .SH AUTHORS
 Authors include: Jakub Jelinek <jakub@redhat.com>

commit 1dc35256ba1b845a002e9815793031f85f590380
Author: Adam Jackson <ajax@redhat.com>
Date:   Tue Aug 19 10:26:16 2008 -0400

    Uninclude xf86Version.h

diff --git a/src/tcx_driver.c b/src/tcx_driver.c
index 15bb305..364a520 100644
--- a/src/tcx_driver.c
+++ b/src/tcx_driver.c
@@ -20,7 +20,6 @@
  * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
  * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  */
-/* $XFree86: xc/programs/Xserver/hw/xfree86/drivers/suntcx/tcx_driver.c,v 1.6 2001/08/07 07:04:51 keithp Exp $ */
 
 #ifdef HAVE_CONFIG_H
 #include "config.h"
@@ -30,7 +29,6 @@
 
 #include "xf86.h"
 #include "xf86_OSproc.h"
-#include "xf86Version.h"
 #include "mipointer.h"
 #include "mibstore.h"
 #include "micmap.h"

commit fa9fce27d8f77b0ad08cb84a775c8ad3030f680b
Author: Matthieu Herrb <matthieu.herrb@laas.fr>
Date:   Sat Mar 8 23:59:11 2008 +0100

    Makefile.am: nuke RCS Id

diff --git a/man/Makefile.am b/man/Makefile.am
index bf7ec17..f0eb29b 100644
--- a/man/Makefile.am
+++ b/man/Makefile.am
@@ -1,4 +1,3 @@
-# $Id$
 #
 # Copyright 2005 Sun Microsystems, Inc.  All rights reserved.
 # 

commit b55d0f6473fccff328bcd8febc9d376ade564b2d
Author: Brice Goglin <bgoglin@debian.org>
Date:   Tue Aug 7 13:50:48 2007 +0200

    Define TCX_*_VERSION using PACKAGE_VERSION*

diff --git a/src/tcx_driver.c b/src/tcx_driver.c
index e82a419..15bb305 100644
--- a/src/tcx_driver.c
+++ b/src/tcx_driver.c
@@ -66,9 +66,9 @@ void TCXSync(ScrnInfoPtr pScrn);
 #define TCX_VERSION 4000
 #define TCX_NAME "SUNTCX"
 #define TCX_DRIVER_NAME "suntcx"
-#define TCX_MAJOR_VERSION 1
-#define TCX_MINOR_VERSION 1
-#define TCX_PATCHLEVEL 0
+#define TCX_MAJOR_VERSION PACKAGE_VERSION_MAJOR
+#define TCX_MINOR_VERSION PACKAGE_VERSION_MINOR
+#define TCX_PATCHLEVEL PACKAGE_VERSION_PATCHLEVEL
 
 /* 
  * This contains the functions needed by the server after loading the driver

commit 94880920a17e3345cd9bff2276c2671f54fff915
Author: Alan Coopersmith <alan.coopersmith@sun.com>
Date:   Thu Mar 1 11:07:15 2007 -0800

    renamed: .cvsignore -> .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..2df4a8d
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,20 @@
+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
+*~


Reply to: