diff options
-rw-r--r-- | README | 6 | ||||
-rw-r--r-- | configure.ac | 6 |
2 files changed, 6 insertions, 6 deletions
@@ -43,9 +43,9 @@ configure script takes various options to enable or disable them: snf bitmap fonts - standard bitmap font format prior to X11R5 in 1991, remains only for backwards compatibility. Unlike pcf, snf files are architecture specific, and contain less font information - than pcf files. snf fonts are deprecated and may be disabled - by default in future libXfont releases. - Enabled by default, disable via --disable-snfformat. + than pcf files. snf fonts are deprecated and support for them + may be removed in future libXfont releases. + Disabled by default, enable via --disable-snfformat. -- Font services: diff --git a/configure.ac b/configure.ac index 4edad6d..30f4d6d 100644 --- a/configure.ac +++ b/configure.ac @@ -164,9 +164,9 @@ if test "x$XFONT_BDFFORMAT" = xyes; then fi AC_ARG_ENABLE(snfformat, - AS_HELP_STRING([--disable-snfformat], - [Support SNF format bitmap fonts (default: enabled)]), - [XFONT_SNFFORMAT=$enableval], [XFONT_SNFFORMAT=yes]) + AS_HELP_STRING([--enable-snfformat], + [Support SNF format bitmap fonts (default: disabled)]), + [XFONT_SNFFORMAT=$enableval], [XFONT_SNFFORMAT=no]) AM_CONDITIONAL(XFONT_SNFFORMAT, [test "x$XFONT_SNFFORMAT" = xyes]) if test "x$XFONT_SNFFORMAT" = xyes; then AC_DEFINE(XFONT_SNFFORMAT,1,[Support snf format bitmap font files]) |