diff options
author | Matthieu Herrb <matthieu@cvs.openbsd.org> | 2009-06-05 20:44:43 +0000 |
---|---|---|
committer | Matthieu Herrb <matthieu@cvs.openbsd.org> | 2009-06-05 20:44:43 +0000 |
commit | 80a1ce77871d4eea8f7b538d75c8b43b3898ba4c (patch) | |
tree | 6bed01e0e155ae6e268648a719be835ce52a8ef4 /driver/xf86-video-suncg3 | |
parent | c8527dbd7aa74d356bbe0e754c461081ce661b7d (diff) |
update to xf86-video-suncg3 1.1.1
Diffstat (limited to 'driver/xf86-video-suncg3')
-rw-r--r-- | driver/xf86-video-suncg3/README | 20 | ||||
-rw-r--r-- | driver/xf86-video-suncg3/configure.ac | 2 | ||||
-rw-r--r-- | driver/xf86-video-suncg3/man/suncg3.man | 4 | ||||
-rw-r--r-- | driver/xf86-video-suncg3/src/cg3_driver.c | 8 |
4 files changed, 26 insertions, 8 deletions
diff --git a/driver/xf86-video-suncg3/README b/driver/xf86-video-suncg3/README new file mode 100644 index 000000000..b806f8c3b --- /dev/null +++ b/driver/xf86-video-suncg3/README @@ -0,0 +1,20 @@ +xf86-video-suncg3 - CG3 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-suncg3 + + http://cgit.freedesktop.org/xorg/driver/xf86-video-suncg3 + +For more information on the git code manager, see: + + http://wiki.x.org/wiki/GitPage diff --git a/driver/xf86-video-suncg3/configure.ac b/driver/xf86-video-suncg3/configure.ac index 3db869def..c4c43afad 100644 --- a/driver/xf86-video-suncg3/configure.ac +++ b/driver/xf86-video-suncg3/configure.ac @@ -22,7 +22,7 @@ AC_PREREQ(2.57) AC_INIT([xf86-video-suncg3], - 1.1.0, + 1.1.1, [https://bugs.freedesktop.org/enter_bug.cgi?product=xorg], xf86-video-suncg3) diff --git a/driver/xf86-video-suncg3/man/suncg3.man b/driver/xf86-video-suncg3/man/suncg3.man index 5182c80b6..2cabe9ef6 100644 --- a/driver/xf86-video-suncg3/man/suncg3.man +++ b/driver/xf86-video-suncg3/man/suncg3.man @@ -1,4 +1,4 @@ -.\" $XFree86: xc/programs/Xserver/hw/xfree86/drivers/suncg3/suncg3.man,v 1.1 2001/01/24 00:06:29 dawes Exp $ +.\" $XFree86: xc/programs/Xserver/hw/xfree86/drivers/suncg3/suncg3.man,v 1.2 2001/01/27 18:20:54 dawes Exp $ .\" shorthand for double quote that works everywhere. .ds q \N'34' .TH SUNCG3 __drivermansuffix__ __vendorversion__ @@ -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__(__appmansuffix__), __xconfigfile__(__filemansuffix__), xorgconfig(__appmansuffix__), Xserver(__appmansuffix__), X(__miscmansuffix__) +__xservername__(1), __xconfigfile__(__filemansuffix__), Xserver(1), X(__miscmansuffix__) .SH AUTHORS Authors include: Jakub Jelinek <jakub@redhat.com> diff --git a/driver/xf86-video-suncg3/src/cg3_driver.c b/driver/xf86-video-suncg3/src/cg3_driver.c index 0aa3fba80..571e1f456 100644 --- a/driver/xf86-video-suncg3/src/cg3_driver.c +++ b/driver/xf86-video-suncg3/src/cg3_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/suncg3/cg3_driver.c,v 1.4 2001/05/16 06:48:10 keithp Exp $ */ #ifdef HAVE_CONFIG_H #include "config.h" @@ -29,7 +28,6 @@ #define PSZ 8 #include "xf86.h" #include "xf86_OSproc.h" -#include "xf86Version.h" #include "mipointer.h" #include "mibstore.h" #include "micmap.h" @@ -64,9 +62,9 @@ void CG3Sync(ScrnInfoPtr pScrn); #define CG3_VERSION 4000 #define CG3_NAME "SUNCG3" #define CG3_DRIVER_NAME "suncg3" -#define CG3_MAJOR_VERSION 1 -#define CG3_MINOR_VERSION 1 -#define CG3_PATCHLEVEL 0 +#define CG3_MAJOR_VERSION PACKAGE_VERSION_MAJOR +#define CG3_MINOR_VERSION PACKAGE_VERSION_MINOR +#define CG3_PATCHLEVEL PACKAGE_VERSION_PATCHLEVEL /* * This contains the functions needed by the server after loading the driver |