diff options
author | hobbs <hobbs> | 2005-05-07 00:35:39 (GMT) |
---|---|---|
committer | hobbs <hobbs> | 2005-05-07 00:35:39 (GMT) |
commit | 99402b0b6312e1c1cd6c8e74b47cb65489e7625a (patch) | |
tree | f63e82d3449864e5b5b7507161f3679dc27a2db0 /unix/configure | |
parent | 7c1ded63bed472840c34fd71f6d4e144b62ae453 (diff) | |
download | tk-99402b0b6312e1c1cd6c8e74b47cb65489e7625a.zip tk-99402b0b6312e1c1cd6c8e74b47cb65489e7625a.tar.gz tk-99402b0b6312e1c1cd6c8e74b47cb65489e7625a.tar.bz2 |
fixed pkg-config xft check, needed reset of enable_xft first
Diffstat (limited to 'unix/configure')
-rwxr-xr-x | unix/configure | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/unix/configure b/unix/configure index 9c770dd..406d06c 100755 --- a/unix/configure +++ b/unix/configure @@ -8824,6 +8824,7 @@ echo $ECHO_N "checking for xft configuration... $ECHO_C" >&6 XFT_CFLAGS=`xft-config --cflags 2>/dev/null` || enable_xft="no" XFT_LIBS=`xft-config --libs 2>/dev/null` || enable_xft="no" if test "$enable_xft" = "no" ; then + enable_xft=yes XFT_CFLAGS=`pkg-config --cflags xft 2>/dev/null` || enable_xft="no" XFT_LIBS=`pkg-config --libs xft 2>/dev/null` || enable_xft="no" fi |