diff options
| author | Michael R Sweet <michael.r.sweet@gmail.com> | 2002-03-08 01:18:09 +0000 |
|---|---|---|
| committer | Michael R Sweet <michael.r.sweet@gmail.com> | 2002-03-08 01:18:09 +0000 |
| commit | 6660f52740f5ee1e5eaa272d466f18f7a925f82c (patch) | |
| tree | c90ac3d22eb7324f8f268a3cc692aa09c7b8b7db | |
| parent | 16f67527bf27d5c18d217fbc71d138ce484b47d8 (diff) | |
Disable Xft by default.
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@1992 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
| -rw-r--r-- | configure.in | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/configure.in b/configure.in index 2b42785e3..e15b8902f 100644 --- a/configure.in +++ b/configure.in @@ -1,7 +1,7 @@ dnl -*- sh -*- dnl the "configure" script is made from this by running GNU "autoconf" dnl -dnl "$Id: configure.in,v 1.33.2.31.2.53 2002/03/06 19:42:29 easysw Exp $" +dnl "$Id: configure.in,v 1.33.2.31.2.54 2002/03/08 01:18:09 easysw Exp $" dnl dnl Configuration script for the Fast Light Tool Kit (FLTK). dnl @@ -421,9 +421,9 @@ case $uname in fi dnl Check for the Xft library unless disabled... - AC_ARG_ENABLE(xft, [ --disable-xft turn off Xft support [default=yes]]) + AC_ARG_ENABLE(xft, [ --enable-xft turn on Xft support [default=no]]) - if test x$enable_xft != xno; then + if test x$enable_xft = xyes; then AC_CHECK_HEADER(X11/Xft/Xft.h, AC_CHECK_LIB(Xft, XftDrawCreate, AC_DEFINE(USE_XFT) @@ -693,5 +693,5 @@ dnl Make sure the fltk-config script is executable... chmod +x fltk-config dnl -dnl End of "$Id: configure.in,v 1.33.2.31.2.53 2002/03/06 19:42:29 easysw Exp $". +dnl End of "$Id: configure.in,v 1.33.2.31.2.54 2002/03/08 01:18:09 easysw Exp $". dnl |
