mirror of
https://github.com/X11Libre/xf86-video-suntcx.git
synced 2026-03-24 01:25:13 +00:00
Unlibcwrap. Bump server version requirement. Bump to 1.1.0.
This commit is contained in:
@@ -1,3 +1,10 @@
|
||||
2006-04-07 Adam Jackson <ajax@freedesktop.org>
|
||||
|
||||
* configure.ac:
|
||||
* src/tcx.h:
|
||||
* src/tcx_driver.c:
|
||||
Unlibcwrap. Bump server version requirement. Bump to 1.1.0.
|
||||
|
||||
2005-12-20 Kevin E. Martin <kem-at-freedesktop-dot-org>
|
||||
|
||||
* configure.ac:
|
||||
|
||||
@@ -22,7 +22,7 @@
|
||||
|
||||
AC_PREREQ(2.57)
|
||||
AC_INIT([xf86-video-suntcx],
|
||||
1.0.0.5,
|
||||
1.1.0,
|
||||
[https://bugs.freedesktop.org/enter_bug.cgi?product=xorg],
|
||||
xf86-video-suntcx)
|
||||
|
||||
@@ -52,7 +52,7 @@ XORG_DRIVER_CHECK_EXT(RANDR, randrproto)
|
||||
XORG_DRIVER_CHECK_EXT(RENDER, renderproto)
|
||||
|
||||
# Checks for pkg-config packages
|
||||
PKG_CHECK_MODULES(XORG, [xorg-server xproto fontsproto $REQUIRED_MODULES])
|
||||
PKG_CHECK_MODULES(XORG, [xorg-server >= 1.0.99.901 xproto fontsproto $REQUIRED_MODULES])
|
||||
sdkdir=$(pkg-config --variable=sdkdir xorg-server)
|
||||
|
||||
# Checks for libraries.
|
||||
|
||||
@@ -27,7 +27,6 @@
|
||||
|
||||
#include "xf86.h"
|
||||
#include "xf86_OSproc.h"
|
||||
#include "xf86_ansic.h"
|
||||
#include "xf86RamDac.h"
|
||||
#include <X11/Xmd.h>
|
||||
#include "gcstruct.h"
|
||||
|
||||
@@ -26,9 +26,10 @@
|
||||
#include "config.h"
|
||||
#endif
|
||||
|
||||
#include <string.h>
|
||||
|
||||
#include "xf86.h"
|
||||
#include "xf86_OSproc.h"
|
||||
#include "xf86_ansic.h"
|
||||
#include "xf86Version.h"
|
||||
#include "mipointer.h"
|
||||
#include "mibstore.h"
|
||||
@@ -62,11 +63,11 @@ static ModeStatus TCXValidMode(int scrnIndex, DisplayModePtr mode,
|
||||
|
||||
void TCXSync(ScrnInfoPtr pScrn);
|
||||
|
||||
#define VERSION 4000
|
||||
#define TCX_VERSION 4000
|
||||
#define TCX_NAME "SUNTCX"
|
||||
#define TCX_DRIVER_NAME "suntcx"
|
||||
#define TCX_MAJOR_VERSION 1
|
||||
#define TCX_MINOR_VERSION 0
|
||||
#define TCX_MINOR_VERSION 1
|
||||
#define TCX_PATCHLEVEL 0
|
||||
|
||||
/*
|
||||
@@ -78,7 +79,7 @@ void TCXSync(ScrnInfoPtr pScrn);
|
||||
*/
|
||||
|
||||
_X_EXPORT DriverRec SUNTCX = {
|
||||
VERSION,
|
||||
TCX_VERSION,
|
||||
TCX_DRIVER_NAME,
|
||||
TCXIdentify,
|
||||
TCXProbe,
|
||||
@@ -259,7 +260,7 @@ TCXProbe(DriverPtr drv, int flags)
|
||||
pScrn = xf86AllocateScreen(drv, 0);
|
||||
|
||||
/* Fill in what we can of the ScrnInfoRec */
|
||||
pScrn->driverVersion = VERSION;
|
||||
pScrn->driverVersion = TCX_VERSION;
|
||||
pScrn->driverName = TCX_DRIVER_NAME;
|
||||
pScrn->name = TCX_NAME;
|
||||
pScrn->Probe = TCXProbe;
|
||||
|
||||
Reference in New Issue
Block a user