mad wicked xft checks

This commit is contained in:
Dana Jansens 2002-11-11 08:33:43 +00:00
parent cf0823dcf3
commit fcbb82770c
2 changed files with 21 additions and 7 deletions

View file

@ -93,13 +93,23 @@ AC_CHECK_LIB([X11], [XOpenDisplay],
dnl Check for Xft2 dnl Check for Xft2
AC_MSG_CHECKING([for Xft version 2]) AC_MSG_CHECKING([for Xft version 2])
dnl Store these
OLDLIBS=$LIBS
OLDCPPFLAGS=$CPPFLAGS
XFT2="" XFT2=""
XFT_CFLAGS=""
XFT_LIBS=""
if pkg-config xft; then if pkg-config xft; then
AC_MSG_RESULT([yes]) AC_MSG_RESULT([yes])
XFT2="yes" XFT_CFLAGS="`pkg-config --cflags xft`"
LIBS="$LIBS `pkg-config --libs xft`" XFT_LIBS="`pkg-config --libs xft`"
CXXFLAGS="`pkg-config --cflags xft` $CXXFLAGS"
dnl Set these for checking with the tests below. They'll be restored after
LIBS="$LIBS $XFT_LIBS"
CPPFLAGS="$XFT_CFLAGS $CPPFLAGS"
else else
dnl This is for Xft version 1
XFT_LIBS="-lXft"
AC_MSG_RESULT([no]) AC_MSG_RESULT([no])
fi fi
@ -115,8 +125,6 @@ AC_CHECK_LIB([Xft], [XftFontOpenXlfd],
], ],
[ [
AC_MSG_RESULT([yes]) AC_MSG_RESULT([yes])
dnl This is for Xft version 1
test "$XFT2" = "yes" || LIBS="$LIBS -lXft"
], ],
[ [
AC_MSG_RESULT([no]) AC_MSG_RESULT([no])
@ -126,6 +134,12 @@ See http://www.fontconfig.org/
] ]
) )
) )
dnl Restore the old values. Use XFT_CFLAGS and XFT_LIBS in the Makefile.am's
LIBS=$OLDLIBS
CPPFLAGS=$OLDCPPFLAGS
AC_SUBST([XFT_CFLAGS])
AC_SUBST([XFT_LIBS])
dnl Check for XShape extension support dnl Check for XShape extension support
AC_CHECK_LIB([Xext], [XShapeCombineShape], AC_CHECK_LIB([Xext], [XShapeCombineShape],

View file

@ -2,12 +2,12 @@ localedir=$(datadir)/locale
DEFAULT_MENU=$(pkgdatadir)/menu DEFAULT_MENU=$(pkgdatadir)/menu
DEFAULT_STYLE=$(pkgdatadir)/styles/mbdtex DEFAULT_STYLE=$(pkgdatadir)/styles/mbdtex
CPPFLAGS=`pkg-config --cflags xft` @CPPFLAGS@ \ CPPFLAGS=$(XFT_CFLAGS) @CPPFLAGS@ \
-DDEFAULTMENU=\"$(DEFAULT_MENU)\" \ -DDEFAULTMENU=\"$(DEFAULT_MENU)\" \
-DDEFAULTSTYLE=\"$(DEFAULT_STYLE)\" \ -DDEFAULTSTYLE=\"$(DEFAULT_STYLE)\" \
-DLOCALEDIR=\"$(localedir)\" -DLOCALEDIR=\"$(localedir)\"
LDFLAGS=`pkg-config --libs xft` LIBS=$(XFT_LIBS) @LIBS@
INCLUDES= -I../otk INCLUDES= -I../otk