Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
adam.huang
Xf86 Video Fbturbo
Commits
fe1fa4c0
Commit
fe1fa4c0
authored
Apr 07, 2006
by
Adam Jackson
Browse files
Unlibcwrap. Bump server version requirement. Bump to 0.2.0.
parent
41a76381
Changes
3
Show whitespace changes
Inline
Side-by-side
ChangeLog
View file @
fe1fa4c0
2006-04-06 Adam Jackson <ajax@freedesktop.org>
* configure.ac:
* src/fbdev.c:
Unlibcwrap. Bump server version requirement. Bump to 0.2.0.
2006-01-09 David Nusinow <gravity-at-freedesktop-dot-org>
2006-01-09 David Nusinow <gravity-at-freedesktop-dot-org>
* man/fbdev.man:
* man/fbdev.man:
...
...
configure.ac
View file @
fe1fa4c0
...
@@ -22,7 +22,7 @@
...
@@ -22,7 +22,7 @@
AC_PREREQ(2.57)
AC_PREREQ(2.57)
AC_INIT([xf86-video-fbdev],
AC_INIT([xf86-video-fbdev],
0.
1
.0
.5
,
0.
2
.0,
[https://bugs.freedesktop.org/enter_bug.cgi?product=xorg],
[https://bugs.freedesktop.org/enter_bug.cgi?product=xorg],
xf86-video-fbdev)
xf86-video-fbdev)
...
@@ -53,7 +53,7 @@ XORG_DRIVER_CHECK_EXT(RENDER, renderproto)
...
@@ -53,7 +53,7 @@ XORG_DRIVER_CHECK_EXT(RENDER, renderproto)
XORG_DRIVER_CHECK_EXT(XV, videoproto)
XORG_DRIVER_CHECK_EXT(XV, videoproto)
# Checks for pkg-config packages
# 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)
sdkdir=$(pkg-config --variable=sdkdir xorg-server)
# Checks for libraries.
# Checks for libraries.
...
...
src/fbdev.c
View file @
fe1fa4c0
...
@@ -9,10 +9,11 @@
...
@@ -9,10 +9,11 @@
#include "config.h"
#include "config.h"
#endif
#endif
#include <string.h>
/* all driver need this */
/* all driver need this */
#include "xf86.h"
#include "xf86.h"
#include "xf86_OSproc.h"
#include "xf86_OSproc.h"
#include "xf86_ansic.h"
#include "mipointer.h"
#include "mipointer.h"
#include "mibstore.h"
#include "mibstore.h"
...
@@ -81,14 +82,14 @@ enum { FBDEV_ROTATE_NONE=0, FBDEV_ROTATE_CW=270, FBDEV_ROTATE_UD=180, FBDEV_ROTA
...
@@ -81,14 +82,14 @@ enum { FBDEV_ROTATE_NONE=0, FBDEV_ROTATE_CW=270, FBDEV_ROTATE_UD=180, FBDEV_ROTA
*/
*/
static
int
pix24bpp
=
0
;
static
int
pix24bpp
=
0
;
#define VERSION
4000
#define
FBDEV_
VERSION 4000
#define FBDEV_NAME "FBDEV"
#define FBDEV_NAME "FBDEV"
#define FBDEV_DRIVER_NAME "fbdev"
#define FBDEV_DRIVER_NAME "fbdev"
#define FBDEV_MAJOR_VERSION 0
#define FBDEV_MAJOR_VERSION 0
#define FBDEV_MINOR_VERSION
1
#define FBDEV_MINOR_VERSION
2
_X_EXPORT
DriverRec
FBDEV
=
{
_X_EXPORT
DriverRec
FBDEV
=
{
VERSION
,
FBDEV_
VERSION
,
FBDEV_DRIVER_NAME
,
FBDEV_DRIVER_NAME
,
#if 0
#if 0
"driver for linux framebuffer devices",
"driver for linux framebuffer devices",
...
@@ -360,7 +361,7 @@ FBDevProbe(DriverPtr drv, int flags)
...
@@ -360,7 +361,7 @@ FBDevProbe(DriverPtr drv, int flags)
if
(
pScrn
)
{
if
(
pScrn
)
{
foundScreen
=
TRUE
;
foundScreen
=
TRUE
;
pScrn
->
driverVersion
=
VERSION
;
pScrn
->
driverVersion
=
FBDEV_
VERSION
;
pScrn
->
driverName
=
FBDEV_DRIVER_NAME
;
pScrn
->
driverName
=
FBDEV_DRIVER_NAME
;
pScrn
->
name
=
FBDEV_NAME
;
pScrn
->
name
=
FBDEV_NAME
;
pScrn
->
Probe
=
FBDevProbe
;
pScrn
->
Probe
=
FBDevProbe
;
...
...
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