.cvsignore | 19 ------------------- .gitignore | 20 ++++++++++++++++++++ README | 20 ++++++++++++++++++++ configure.ac | 2 +- man/Makefile.am | 1 - man/suncg14.man | 2 +- src/cg14_driver.c | 8 +++----- 7 files changed, 45 insertions(+), 27 deletions(-)
New commits: commit d7d27ef59f976609fc57256568f0bc2ed6b81a28 Author: Julien Cristau <jcris...@debian.org> Date: Mon May 4 11:06:00 2009 +0200 Bump to 1.1.1 diff --git a/configure.ac b/configure.ac index 0067442..ebb60f1 100644 --- a/configure.ac +++ b/configure.ac @@ -22,7 +22,7 @@ AC_PREREQ(2.57) AC_INIT([xf86-video-suncg14], - 1.1.0, + 1.1.1, [https://bugs.freedesktop.org/enter_bug.cgi?product=xorg], xf86-video-suncg14) commit efb3c329a64ee680a4d0fed327dadfae9f81a4c6 Author: Alan Coopersmith <alan.coopersm...@sun.com> Date: Fri Jan 30 21:04:17 2009 -0800 Add README with pointers to mailing list, bugzilla & git repos diff --git a/README b/README new file mode 100644 index 0000000..cff41ce --- /dev/null +++ b/README @@ -0,0 +1,20 @@ +xf86-video-suncg14 - CG14 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-suncg14 + + http://cgit.freedesktop.org/xorg/driver/xf86-video-suncg14 + +For more information on the git code manager, see: + + http://wiki.x.org/wiki/GitPage commit cbe210d9b2927f030013d24f5c5d8bf3bdc10e97 Author: Alan Coopersmith <alan.coopersm...@sun.com> Date: Fri Jan 9 16:35:06 2009 -0800 Remove xorgconfig & xorgcfg from See Also list in man page diff --git a/man/suncg14.man b/man/suncg14.man index 04a71a1..b43b877 100644 --- a/man/suncg14.man +++ b/man/suncg14.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 <ja...@redhat.com> commit c30be3e59802906655bfb09eccf24633d2a3d768 Author: Adam Jackson <a...@redhat.com> Date: Tue Aug 19 10:24:07 2008 -0400 Uninclude xf86Version.h diff --git a/src/cg14_driver.c b/src/cg14_driver.c index a583da4..7834996 100644 --- a/src/cg14_driver.c +++ b/src/cg14_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/suncg14/cg14_driver.c,v 1.6 2001/10/01 13:44:10 eich 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 9addc6f458f510b259894c5f82a90b2d348ab2fb Author: Matthieu Herrb <matthieu.he...@laas.fr> Date: Sat Mar 8 23:55:29 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 b455ac7db2811774ac90871e71b7ef2be278263c Author: Brice Goglin <bgog...@debian.org> Date: Tue Aug 7 13:46:00 2007 +0200 Define CG14_*_VERSION using PACKAGE_VERSION* diff --git a/src/cg14_driver.c b/src/cg14_driver.c index 039f379..a583da4 100644 --- a/src/cg14_driver.c +++ b/src/cg14_driver.c @@ -67,9 +67,9 @@ void CG14Sync(ScrnInfoPtr pScrn); #define CG14_VERSION 4000 #define CG14_NAME "SUNCG14" #define CG14_DRIVER_NAME "suncg14" -#define CG14_MAJOR_VERSION 1 -#define CG14_MINOR_VERSION 1 -#define CG14_PATCHLEVEL 0 +#define CG14_MAJOR_VERSION PACKAGE_VERSION_MAJOR +#define CG14_MINOR_VERSION PACKAGE_VERSION_MINOR +#define CG14_PATCHLEVEL PACKAGE_VERSION_PATCHLEVEL /* * This contains the functions needed by the server after loading the driver commit f00f04a1b65bbce2d14add8545c42843cc8603f5 Author: Alan Coopersmith <alan.coopersm...@sun.com> Date: Thu Mar 1 10:59:14 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 +*~ -- To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org