ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/rxvt-unicode/configure.ac
(Generate patch)

Comparing rxvt-unicode/configure.ac (file contents):
Revision 1.17 by root, Sat Jan 21 21:01:54 2006 UTC vs.
Revision 1.18 by ayin, Sat Jan 21 22:32:29 2006 UTC

840 840
841dnl# -------------------------------------------------------------------------- 841dnl# --------------------------------------------------------------------------
842dnl# now add and remove other stuff 842dnl# now add and remove other stuff
843dnl# -------------------------------------------------------------------------- 843dnl# --------------------------------------------------------------------------
844if test x$support_xft = xyes; then 844if test x$support_xft = xyes; then
845 LIBS="$LIBS `pkg-config xft --libs`" 845 AC_PATH_PROG(PKG_CONFIG, pkg-config, no)
846 AC_PATH_PROG(XFT_CONFIG, xft-config, no)
847 if test $PKG_CONFIG != no && $PKG_CONFIG --exists xft; then
848 LIBS="$LIBS `$PKG_CONFIG xft --libs`"
846 CPPFLAGS="$CPPFLAGS `pkg-config xft --cflags`" 849 CPPFLAGS="$CPPFLAGS `$PKG_CONFIG xft --cflags`"
850 else
851 if test $XFT_CONFIG != no; then
852 LIBS="$LIBS `$XFT_CONFIG --libs`"
853 CPPFLAGS="$CPPFLAGS `$XFT_CONFIG --cflags`"
854 fi
855 fi
847 856
848 AC_CHECK_HEADERS(X11/Xft/Xft.h,,[support_xft=no]) 857 AC_CHECK_HEADERS(X11/Xft/Xft.h,,[support_xft=no])
849 AC_CHECK_LIB(Xft,XftDrawString32,,[support_xft=no]) 858 AC_CHECK_LIB(Xft,XftDrawString32,,[support_xft=no])
850 859
851 if test x$support_xft = xyes; then 860 if test x$support_xft = xyes; then

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines