summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdam Jackson <ajax@nwnk.net>2006-04-07 21:43:55 +0000
committerAdam Jackson <ajax@nwnk.net>2006-04-07 21:43:55 +0000
commitd4bc751fa622616601a7d3213852d7a4f634be0b (patch)
treeb570dd08ab91a21b4c65449cd77545d95021b64d
parent3176982fbe4304beb43100db6b8756d2617abcb8 (diff)
Unlibcwrap. Bump server version requirement. Bump to 1.1.0.tseng-1_1_0XORG-7_1
-rw-r--r--configure.ac4
-rw-r--r--src/tseng.h3
-rw-r--r--src/tseng_driver.c2
3 files changed, 5 insertions, 4 deletions
diff --git a/configure.ac b/configure.ac
index ab20a91..562a6d1 100644
--- a/configure.ac
+++ b/configure.ac
@@ -22,7 +22,7 @@
AC_PREREQ(2.57)
AC_INIT([xf86-video-tseng],
- 1.0.0.5,
+ 1.1.0,
[https://bugs.freedesktop.org/enter_bug.cgi?product=xorg],
xf86-video-tseng)
@@ -58,7 +58,7 @@ XORG_DRIVER_CHECK_EXT(XV, videoproto)
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.
diff --git a/src/tseng.h b/src/tseng.h
index fc172c0..ec3c461 100644
--- a/src/tseng.h
+++ b/src/tseng.h
@@ -4,12 +4,13 @@
#ifndef _TSENG_H
#define _TSENG_H
+#include <string.h>
+
/* All drivers should typically include these */
#include "xf86.h"
#include "xf86_OSproc.h"
/* All drivers need this */
-#include "xf86_ansic.h"
/* Everything using inb/outb, etc needs "compiler.h" */
#include "compiler.h"
diff --git a/src/tseng_driver.c b/src/tseng_driver.c
index c51d577..cdfe3d7 100644
--- a/src/tseng_driver.c
+++ b/src/tseng_driver.c
@@ -91,7 +91,7 @@ static int pix24bpp = 0;
#define TSENG_NAME "TSENG"
#define TSENG_DRIVER_NAME "tseng"
#define TSENG_MAJOR_VERSION 1
-#define TSENG_MINOR_VERSION 0
+#define TSENG_MINOR_VERSION 1
#define TSENG_PATCHLEVEL 0
#define TSENG_VERSION (TSENG_MAJOR_VERSION << 24) | (TSENG_MINOR_VERSION << 16) | TSENG_PATCHLEVEL