Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
X
xf86-video-sis
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
17
Issues
17
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
xorg
driver
xf86-video-sis
Commits
fe557561
Commit
fe557561
authored
Apr 07, 2006
by
Adam Jackson
💣
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Unlibcwrap. Bump server version requirement. Bump to 0.9.0.
parent
1b851e81
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
17 additions
and
6 deletions
+17
-6
ChangeLog
ChangeLog
+6
-0
configure.ac
configure.ac
+2
-2
src/sis.h
src/sis.h
+9
-4
No files found.
ChangeLog
View file @
fe557561
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:
...
...
configure.ac
View file @
fe557561
...
...
@@ -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.
...
...
src/sis.h
View file @
fe557561
/* $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 )
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment