Unlibcwrap. Bump server version requirement. Bump to 1.1.0.

This commit is contained in:
Adam Jackson
2006-04-07 21:27:00 +00:00
parent 78d80c9326
commit 57dcab65e9
8 changed files with 22 additions and 13 deletions

View File

@@ -1,3 +1,14 @@
2006-04-07 Adam Jackson <ajax@freedesktop.org>
* configure.ac:
* src/ffb.h:
* src/ffb_dac.c:
* src/ffb_ddc.c:
* src/ffb_dga.c:
* src/ffb_dri.c:
* src/ffb_driver.c:
Unlibcwrap. Bump server version requirement. Bump to 1.1.0.
2006-01-25 Adam Jackson <ajax@freedesktop.org>
* src/ffb_bcopy.c:

View File

@@ -22,7 +22,7 @@
AC_PREREQ(2.57)
AC_INIT([xf86-video-sunffb],
1.0.1.3,
1.1.0,
[https://bugs.freedesktop.org/enter_bug.cgi?product=xorg],
xf86-video-sunffb)
@@ -64,7 +64,7 @@ XORG_DRIVER_CHECK_EXT(RENDER, renderproto)
XORG_DRIVER_CHECK_EXT(DPMSExtension, xextproto)
# 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.

View File

@@ -31,7 +31,6 @@
#include "xf86.h"
#include "xf86_OSproc.h"
#include "xf86_ansic.h"
#include "xf86RamDac.h"
#include "xaa.h"
#include <X11/Xmd.h>

View File

@@ -33,7 +33,6 @@
#include "xf86.h"
#include "xf86_OSproc.h"
#include "xf86_ansic.h"
#include "xf86DDC.h"

View File

@@ -33,7 +33,6 @@
#include "xf86.h"
#include "xf86_OSproc.h"
#include "xf86_ansic.h"
#include "xf86DDC.h"

View File

@@ -29,7 +29,6 @@
#include "xf86.h"
#include "xf86_OSproc.h"
#include "xf86_ansic.h"
#include "dgaproc.h"
#include "ffb.h"

View File

@@ -26,9 +26,10 @@
#include "config.h"
#endif
#include <stdio.h>
#include "xf86.h"
#include "xf86_OSproc.h"
#include "xf86_ansic.h"
#include "xf86Priv.h"
#include "xf86PciInfo.h"

View File

@@ -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"
@@ -66,12 +67,12 @@ extern void FFB_InitDGA(ScreenPtr pScreen);
void FFBSync(ScrnInfoPtr pScrn);
#define VERSION 4000
#define FFB_VERSION 4000
#define FFB_NAME "SUNFFB"
#define FFB_DRIVER_NAME "sunffb"
#define FFB_MAJOR_VERSION 1
#define FFB_MINOR_VERSION 0
#define FFB_PATCHLEVEL 1
#define FFB_MINOR_VERSION 1
#define FFB_PATCHLEVEL 0
/*
* This contains the functions needed by the server after loading the driver
@@ -82,7 +83,7 @@ void FFBSync(ScrnInfoPtr pScrn);
*/
_X_EXPORT DriverRec SUNFFB = {
VERSION,
FFB_VERSION,
FFB_DRIVER_NAME,
FFBIdentify,
FFBProbe,
@@ -265,7 +266,7 @@ FFBProbe(DriverPtr drv, int flags)
pScrn = xf86AllocateScreen(drv, 0);
/* Fill in what we can of the ScrnInfoRec */
pScrn->driverVersion = VERSION;
pScrn->driverVersion = FFB_VERSION;
pScrn->driverName = FFB_DRIVER_NAME;
pScrn->name = FFB_NAME;
pScrn->Probe = FFBProbe;