diff options
author | jenglish <jenglish@flightlab.com> | 2003-06-02 16:13:12 (GMT) |
---|---|---|
committer | jenglish <jenglish@flightlab.com> | 2003-06-02 16:13:12 (GMT) |
commit | ceafa9076e335e8cf107baae10ad167638aa4571 (patch) | |
tree | e65c4682a2738052255ce18736992d58810d7451 | |
parent | 3f71bff72f6258d1b8c6719f4854c0e688e875bd (diff) | |
download | tk-ceafa9076e335e8cf107baae10ad167638aa4571.zip tk-ceafa9076e335e8cf107baae10ad167638aa4571.tar.gz tk-ceafa9076e335e8cf107baae10ad167638aa4571.tar.bz2 |
configure.in: BUGFIX: --enable-xft test was broken.
-rw-r--r-- | ChangeLog | 4 | ||||
-rwxr-xr-x | unix/configure | 2 | ||||
-rw-r--r-- | unix/configure.in | 4 |
3 files changed, 7 insertions, 3 deletions
@@ -1,3 +1,7 @@ +2003-06-01 Joe English <jenglish@users.sourceforge.net> + * unix/configure.in: BUGFIX, --enable-xft test was broken. + * unix/configure: regen + 2003-05-31 Joe English <jenglish@users.sourceforge.net> * unix/tkUnixRFont.c (InitFont): Fill in TkFontAttributes from pattern returned from GetFont (actual font) instead of the diff --git a/unix/configure b/unix/configure index e667a63..0d03cae 100755 --- a/unix/configure +++ b/unix/configure @@ -6958,7 +6958,7 @@ echo "${ECHO_T}ok" >&6 echo "$as_me: WARNING: Can't find xft configuration" >&2;} fi fi -if test enable_xft="yes" ; then +if test $enable_xft = "yes" ; then UNIX_FONT_OBJS=tkUnixRFont.o cat >>confdefs.h <<\_ACEOF #define HAVE_XFT 1 diff --git a/unix/configure.in b/unix/configure.in index e1d74ea..004bf11 100644 --- a/unix/configure.in +++ b/unix/configure.in @@ -3,7 +3,7 @@ dnl This file is an input file used by the GNU "autoconf" program to dnl generate the file "configure", which is run during Tk installation dnl to configure the system for the local environment. # -# RCS: @(#) $Id: configure.in,v 1.87 2003/05/31 18:32:21 jenglish Exp $ +# RCS: @(#) $Id: configure.in,v 1.88 2003/06/02 16:13:13 jenglish Exp $ AC_INIT(../generic/tk.h) AC_PREREQ(2.57) @@ -302,7 +302,7 @@ if test "$enable_xft" = "yes" ; then AC_MSG_WARN([Can't find xft configuration]) fi fi -if test enable_xft="yes" ; then +if test $enable_xft = "yes" ; then UNIX_FONT_OBJS=tkUnixRFont.o AC_DEFINE(HAVE_XFT) else |