diff options
author | fluxgen <fluxgen> | 2002-11-17 16:56:29 (GMT) |
---|---|---|
committer | fluxgen <fluxgen> | 2002-11-17 16:56:29 (GMT) |
commit | ee5cecd7fbfed78736c2415a05384f833fe31f8d (patch) | |
tree | d1641d373cdcc3532ada87eeb8f9140af417b6d1 /configure.in | |
parent | d2b6c8e0fc96d4751aaaaa1247978f8aacac65a9 (diff) | |
download | fluxbox-ee5cecd7fbfed78736c2415a05384f833fe31f8d.zip fluxbox-ee5cecd7fbfed78736c2415a05384f833fe31f8d.tar.bz2 |
fixed checking for utf8 in xft
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/configure.in b/configure.in index 3215fa3..66a13c4 100644 --- a/configure.in +++ b/configure.in | |||
@@ -2,7 +2,7 @@ dnl configure.in for Fluxbox - created from configure.in Blackbox 0.61.1 | |||
2 | dnl Initialize autoconf and automake | 2 | dnl Initialize autoconf and automake |
3 | AC_INIT(src/main.cc) | 3 | AC_INIT(src/main.cc) |
4 | AC_PREREQ(2.52) | 4 | AC_PREREQ(2.52) |
5 | AM_INIT_AUTOMAKE(fluxbox,0.1.13-cvs,no-define) | 5 | AM_INIT_AUTOMAKE(fluxbox,0.1.13,no-define) |
6 | 6 | ||
7 | dnl Determine default prefix | 7 | dnl Determine default prefix |
8 | test x$prefix = "xNONE" && prefix="$ac_default_prefix" | 8 | test x$prefix = "xNONE" && prefix="$ac_default_prefix" |
@@ -258,6 +258,10 @@ AC_ARG_ENABLE( | |||
258 | AC_MSG_RESULT([no]) | 258 | AC_MSG_RESULT([no]) |
259 | XFT=false | 259 | XFT=false |
260 | ) | 260 | ) |
261 | AC_CHECK_LIB(Xft, XftDrawStringUtf8, | ||
262 | LIBS="$LIBS -lXft" | ||
263 | AC_DEFINE(HAVE_XFT_UTF8_STRING, 1, "Xft UTF8 support"), | ||
264 | ) | ||
261 | ) | 265 | ) |
262 | AM_CONDITIONAL(XFT, test x$XFT = xtrue) | 266 | AM_CONDITIONAL(XFT, test x$XFT = xtrue) |
263 | 267 | ||