summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README6
-rw-r--r--configure.ac6
2 files changed, 6 insertions, 6 deletions
diff --git a/README b/README
index 65f1aa4..c95c3cf 100644
--- a/README
+++ b/README
@@ -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])