mirror of
https://github.com/X11Libre/xf86-video-sis.git
synced 2026-03-24 01:25:01 +00:00
Unlibcwrap. Bump server version requirement. Bump to 0.9.0.
This commit is contained in:
@@ -1,3 +1,9 @@
|
||||
2006-04-07 Adam Jackson <ajax@freedesktop.org>
|
||||
|
||||
* configure.ac:
|
||||
* src/sis.h:
|
||||
Unlibcwrap. Bump server version requirement. Bump to 0.9.0.
|
||||
|
||||
2006-04-06 Eric Anholt <anholt@FreeBSD.org>
|
||||
|
||||
* src/sis_driver.c:
|
||||
|
||||
@@ -22,7 +22,7 @@
|
||||
|
||||
AC_PREREQ(2.57)
|
||||
AC_INIT([xf86-video-sis],
|
||||
0.8.1.3,
|
||||
0.9.0,
|
||||
[https://bugs.freedesktop.org/enter_bug.cgi?product=xorg],
|
||||
xf86-video-sis)
|
||||
|
||||
@@ -62,7 +62,7 @@ XORG_DRIVER_CHECK_EXT(XF86MISC, xf86miscproto)
|
||||
XORG_DRIVER_CHECK_EXT(DPMSExtension, xextproto)
|
||||
|
||||
# Checks for pkg-config packages
|
||||
PKG_CHECK_MODULES(XORG, [xorg-server xproto fontsproto xf86dgaproto $REQUIRED_MODULES])
|
||||
PKG_CHECK_MODULES(XORG, [xorg-server >= 1.0.99.901 xproto fontsproto xf86dgaproto $REQUIRED_MODULES])
|
||||
sdkdir=$(pkg-config --variable=sdkdir xorg-server)
|
||||
|
||||
# Checks for libraries.
|
||||
|
||||
13
src/sis.h
13
src/sis.h
@@ -1,5 +1,5 @@
|
||||
/* $XFree86$ */
|
||||
/* $XdotOrg$ */
|
||||
/* $XdotOrg: driver/xf86-video-sis/src/sis.h,v 1.66 2005/11/09 21:31:21 kem Exp $ */
|
||||
/*
|
||||
* Main global data and definitions
|
||||
*
|
||||
@@ -35,6 +35,11 @@
|
||||
#ifndef _SIS_H_
|
||||
#define _SIS_H_
|
||||
|
||||
#include <stdio.h>
|
||||
#include <string.h>
|
||||
#include <math.h>
|
||||
#include <setjmp.h>
|
||||
|
||||
#define SISDRIVERVERSIONYEAR 5
|
||||
#define SISDRIVERVERSIONMONTH 9
|
||||
#define SISDRIVERVERSIONDAY 20
|
||||
@@ -65,7 +70,6 @@
|
||||
#include "siscp.H"
|
||||
#endif
|
||||
|
||||
#include "xf86_ansic.h"
|
||||
#include "compiler.h"
|
||||
#include "xf86Pci.h"
|
||||
#include "xf86Priv.h"
|
||||
@@ -107,11 +111,12 @@
|
||||
#define SIS_DRIVER_NAME "sis"
|
||||
#define SIS_MAJOR_VERSION 0
|
||||
#ifdef SISISXORG6899900
|
||||
#define SIS_MINOR_VERSION 8 /* DRI changes */
|
||||
#define SIS_MINOR_VERSION 9 /* DRI changes */
|
||||
#define SIS_PATCHLEVEL 0
|
||||
#else
|
||||
#define SIS_MINOR_VERSION 7
|
||||
#endif
|
||||
#define SIS_PATCHLEVEL 1
|
||||
#endif
|
||||
#define SIS_CURRENT_VERSION ((SIS_MAJOR_VERSION << 16) | \
|
||||
(SIS_MINOR_VERSION << 8) | SIS_PATCHLEVEL )
|
||||
|
||||
|
||||
Reference in New Issue
Block a user