diff options
author | Alan Coopersmith <alan.coopersmith@oracle.com> | 2014-05-15 20:26:41 -0700 |
---|---|---|
committer | Alan Coopersmith <alan.coopersmith@oracle.com> | 2014-05-23 17:20:52 -0700 |
commit | 37595cfd4feaf031552d66f96dc6d58686f9c851 (patch) | |
tree | eb49a87770fe50c5730d246610486bec2800d03e | |
parent | 9f677e55c7bf07df280427f127af21e5b70f1e03 (diff) |
Change default to disabling SNF support
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
Reviewed-by: RĂ©mi Cardona <remi@gentoo.org>
-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]) |