Unlibcwrap. Bump server version requirement. Bump to 1.1.0.

This commit is contained in:
Adam Jackson 2006-04-07 18:50:19 +00:00
parent 474af88079
commit 7432eaf48b
6 changed files with 15 additions and 9 deletions

View File

@ -1,3 +1,12 @@
2006-04-06 Adam Jackson <ajax@freedesktop.org>
* configure.ac:
* src/dummy.h:
* src/dummy_cursor.c:
* src/dummy_dga.c:
* src/dummy_driver.c:
Unlibcwrap. Bump server version requirement. Bump to 0.2.0.
2005-12-20 Kevin E. Martin <kem-at-freedesktop-dot-org>
* configure.ac:

View File

@ -22,7 +22,7 @@
AC_PREREQ(2.57)
AC_INIT([xf86-video-dummy],
0.1.0.5,
0.2.0,
[https://bugs.freedesktop.org/enter_bug.cgi?product=xorg],
xf86-video-dummy)
@ -54,7 +54,7 @@ XORG_DRIVER_CHECK_EXT(XV, videoproto)
XORG_DRIVER_CHECK_EXT(XFreeXDGA, xf86dgaproto)
# 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)
CFLAGS="$CFLAGS $XORG_CFLAGS "' -I$(top_srcdir)/src'

View File

@ -3,12 +3,12 @@
/* All drivers should typically include these */
#include "xf86.h"
#include "xf86_OSproc.h"
#include "xf86_ansic.h"
#include "xf86Cursor.h"
#include "xf86xv.h"
#include <X11/extensions/Xv.h>
#include <string.h>
/* Supported chipsets */
typedef enum {

View File

@ -5,7 +5,6 @@
/* All drivers should typically include these */
#include "xf86.h"
#include "xf86_OSproc.h"
#include "xf86_ansic.h"
#include "xf86Cursor.h"
#include "cursorstr.h"

View File

@ -4,7 +4,6 @@
#include "xf86.h"
#include "xf86_OSproc.h"
#include "xf86_ansic.h"
#include "xf86Pci.h"
#include "xf86PciInfo.h"
#include "dgaproc.h"

View File

@ -11,7 +11,6 @@
/* All drivers should typically include these */
#include "xf86.h"
#include "xf86_OSproc.h"
#include "xf86_ansic.h"
/* This is used for module versioning */
#include "xf86Version.h"
@ -82,12 +81,12 @@ static Bool dummyDriverFunc(ScrnInfoPtr pScrn, xorgDriverFuncOp op,
/* static void DUMMYDisplayPowerManagementSet(ScrnInfoPtr pScrn, */
/* int PowerManagementMode, int flags); */
#define VERSION 4000
#define DUMMY_VERSION 4000
#define DUMMY_NAME "DUMMY"
#define DUMMY_DRIVER_NAME "dummy"
#define DUMMY_MAJOR_VERSION 0
#define DUMMY_MINOR_VERSION 1
#define DUMMY_MINOR_VERSION 2
#define DUMMY_PATCHLEVEL 0
/*
@ -106,7 +105,7 @@ static int pix24bpp = 0;
*/
_X_EXPORT DriverRec DUMMY = {
VERSION,
DUMMY_VERSION,
DUMMY_DRIVER_NAME,
DUMMYIdentify,
DUMMYProbe,