Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 111361 | Differences between
and this patch

Collapse All | Expand All

(-)xf86-video-sunffb-1.0.0.1/ChangeLog (+9 lines)
Line 0 Link Here
1
2005-11-09  Kevin E. Martin  <kem-at-freedesktop-dot-org>
2
3
	* configure.ac:
4
	Update package version number for X11R7 RC2 release.
5
6
2005-11-01  Kevin E. Martin  <kem-at-freedesktop-dot-org>
7
8
	* configure.ac:
9
	Update pkgcheck dependencies to work with separate build roots.
(-)xf86-video-sunffb-1.0.0.1/configure.ac (-2 / +9 lines)
Lines 22-28 Link Here
22
22
23
AC_PREREQ(2.57)
23
AC_PREREQ(2.57)
24
AC_INIT([xf86-video-sunffb],
24
AC_INIT([xf86-video-sunffb],
25
        1.0.0.1,
25
        1.0.1,
26
        [https://bugs.freedesktop.org/enter_bug.cgi?product=xorg],
26
        [https://bugs.freedesktop.org/enter_bug.cgi?product=xorg],
27
        xf86-video-sunffb)
27
        xf86-video-sunffb)
28
28
Lines 50-57 Link Here
50
                                  [Disable DRI support [[default=auto]]]),
50
                                  [Disable DRI support [[default=auto]]]),
51
              [DRI="$enableval"],
51
              [DRI="$enableval"],
52
              [DRI=auto])
52
              [DRI=auto])
53
54
# Checks for extensions
55
XORG_DRIVER_CHECK_EXT(RANDR, randrproto)
56
XORG_DRIVER_CHECK_EXT(RENDER, renderproto)
57
XORG_DRIVER_CHECK_EXT(DPMSExtension, xextproto)
58
53
# Checks for pkg-config packages
59
# Checks for pkg-config packages
54
PKG_CHECK_MODULES(XORG, [xorg-server xproto])
60
PKG_CHECK_MODULES(XORG, [xorg-server xproto fontsproto $REQUIRED_MODULES])
61
AC_MSG_RESULT([yes])
55
sdkdir=$(pkg-config --variable=sdkdir xorg-server)
62
sdkdir=$(pkg-config --variable=sdkdir xorg-server)
56
63
57
# Checks for libraries.
64
# Checks for libraries.
(-)xf86-video-sunffb-1.0.0.1/src/ffb_dri.c (-2 lines)
Lines 207-214 Link Here
207
	 */
207
	 */
208
	if (!xf86LoaderCheckSymbol("GlxSetVisualConfigs"))
208
	if (!xf86LoaderCheckSymbol("GlxSetVisualConfigs"))
209
		return FALSE;
209
		return FALSE;
210
	if (!xf86LoaderCheckSymbol("DRIScreenInit"))
211
		return FALSE;
212
	if (!xf86LoaderCheckSymbol("drmAvailable"))
210
	if (!xf86LoaderCheckSymbol("drmAvailable"))
213
		return FALSE;
211
		return FALSE;
214
        if (!xf86LoaderCheckSymbol("DRIQueryVersion")) {
212
        if (!xf86LoaderCheckSymbol("DRIQueryVersion")) {
(-)xf86-video-sunffb-1.0.0.1/src/ffb_driver.c (-1 / +1 lines)
Lines 71-77 Link Here
71
#define FFB_DRIVER_NAME "sunffb"
71
#define FFB_DRIVER_NAME "sunffb"
72
#define FFB_MAJOR_VERSION 1
72
#define FFB_MAJOR_VERSION 1
73
#define FFB_MINOR_VERSION 0
73
#define FFB_MINOR_VERSION 0
74
#define FFB_PATCHLEVEL 0
74
#define FFB_PATCHLEVEL 1
75
75
76
/* 
76
/* 
77
 * This contains the functions needed by the server after loading the driver
77
 * This contains the functions needed by the server after loading the driver

Return to bug 111361