Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
N
nx-libs
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
1
Issues
1
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
dimbor
nx-libs
Commits
25ffbbb2
Commit
25ffbbb2
authored
Apr 19, 2016
by
Mike Gabriel
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
FONTCACHE: Drop all Xserver code blocks that relate to removed FONTCACHE extension.
parent
3aedac17
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
0 additions
and
26 deletions
+0
-26
modinit.h
nx-X11/programs/Xserver/Xext/extmod/modinit.h
+0
-7
globals.h
nx-X11/programs/Xserver/include/globals.h
+0
-4
miinitext.c
nx-X11/programs/Xserver/mi/miinitext.c
+0
-12
utils.c
nx-X11/programs/Xserver/os/utils.c
+0
-3
No files found.
nx-X11/programs/Xserver/Xext/extmod/modinit.h
View file @
25ffbbb2
...
...
@@ -85,13 +85,6 @@ extern void DPMSExtensionInit(INITARGS);
#include <nx-X11/extensions/dpmsstr.h>
#endif
#ifdef FONTCACHE
extern
void
FontCacheExtensionInit
(
INITARGS
);
#define _FONTCACHE_SERVER_
#include "fontcacheP.h"
#include "fontcachstr.h"
#endif
#ifdef XV
extern
void
XvExtensionInit
(
INITARGS
);
extern
void
XvMCExtensionInit
(
INITARGS
);
...
...
nx-X11/programs/Xserver/include/globals.h
View file @
25ffbbb2
...
...
@@ -77,10 +77,6 @@ extern Bool noDPMSExtension;
extern
Bool
noEVIExtension
;
#endif
#ifdef FONTCACHE
extern
Bool
noFontCacheExtension
;
#endif
#ifdef GLXEXT
extern
Bool
noGlxExtension
;
#endif
...
...
nx-X11/programs/Xserver/mi/miinitext.c
View file @
25ffbbb2
...
...
@@ -96,9 +96,6 @@ extern Bool noDPMSExtension;
#ifdef EVI
extern
Bool
noEVIExtension
;
#endif
#ifdef FONTCACHE
extern
Bool
noFontCacheExtension
;
#endif
#ifdef GLXEXT
extern
Bool
noGlxExtension
;
#endif
...
...
@@ -304,9 +301,6 @@ extern void DPMSExtensionInit(INITARGS);
#ifdef DPSEXT
extern
void
DPSExtensionInit
(
INITARGS
);
#endif
#ifdef FONTCACHE
extern
void
FontCacheExtensionInit
(
INITARGS
);
#endif
#ifdef RENDER
extern
void
RenderExtensionInit
(
INITARGS
);
#endif
...
...
@@ -361,9 +355,6 @@ static ExtensionToggle ExtensionToggleList[] =
#ifdef EVI
{
"Extended-Visual-Information"
,
&
noEVIExtension
},
#endif
#ifdef FONTCACHE
{
"FontCache"
,
&
noFontCacheExtension
},
#endif
#ifdef GLXEXT
{
"GLX"
,
&
noGlxExtension
},
#endif
...
...
@@ -541,9 +532,6 @@ InitExtensions(argc, argv)
#if defined(DPMSExtension) && !defined(NO_HW_ONLY_EXTS)
if
(
!
noDPMSExtension
)
DPMSExtensionInit
();
#endif
#ifdef FONTCACHE
if
(
!
noFontCacheExtension
)
FontCacheExtensionInit
();
#endif
#ifdef XF86BIGFONT
if
(
!
noXFree86BigfontExtension
)
XFree86BigfontExtensionInit
();
#endif
...
...
nx-X11/programs/Xserver/os/utils.c
View file @
25ffbbb2
...
...
@@ -171,9 +171,6 @@ Bool noDPMSExtension = FALSE;
#ifdef EVI
Bool
noEVIExtension
=
FALSE
;
#endif
#ifdef FONTCACHE
Bool
noFontCacheExtension
=
FALSE
;
#endif
#ifdef GLXEXT
Bool
noGlxExtension
=
FALSE
;
#endif
...
...
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