Remove NOFONTSERVERACCESS macro
dix: this is semantically different but it goes through the same path in the code.
This commit is contained in:
parent
2ff7eb4995
commit
f3b29efc4d
|
@ -962,7 +962,6 @@ fi
|
||||||
|
|
||||||
if test "x$BUILTIN_FONTS" = xyes; then
|
if test "x$BUILTIN_FONTS" = xyes; then
|
||||||
AC_DEFINE(BUILTIN_FONTS, 1, [Use only built-in fonts])
|
AC_DEFINE(BUILTIN_FONTS, 1, [Use only built-in fonts])
|
||||||
AC_DEFINE(NOFONTSERVERACCESS, 1, [Avoid using a font server])
|
|
||||||
FONTPATH="built-ins"
|
FONTPATH="built-ins"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
|
@ -1920,8 +1920,6 @@ InitFonts (void)
|
||||||
BuiltinRegisterFpeFunctions();
|
BuiltinRegisterFpeFunctions();
|
||||||
#else
|
#else
|
||||||
FontFileRegisterFpeFunctions();
|
FontFileRegisterFpeFunctions();
|
||||||
#endif
|
|
||||||
#ifndef NOFONTSERVERACCESS
|
|
||||||
fs_register_fpe_functions();
|
fs_register_fpe_functions();
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
|
@ -480,9 +480,6 @@
|
||||||
/* Use only built-in fonts */
|
/* Use only built-in fonts */
|
||||||
#undef BUILTIN_FONTS
|
#undef BUILTIN_FONTS
|
||||||
|
|
||||||
/* Avoid using font servers */
|
|
||||||
#undef NOFONTSERVERACCESS
|
|
||||||
|
|
||||||
/* Use an empty root cursor */
|
/* Use an empty root cursor */
|
||||||
#undef NULL_ROOT_CURSOR
|
#undef NULL_ROOT_CURSOR
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue