Change dependencies to pango with cairo backend, only wired in for autotools.

This commit is contained in:
Mark de Wever 2008-07-10 17:45:29 +00:00
parent bc82840283
commit c5840e962c
4 changed files with 4 additions and 16 deletions

View file

@ -12,8 +12,7 @@ You'll need to have these libraries (with equivalent devel versions) to build We
boost_iostreams >= 1.33.0
boost_regex >= 1.33.0
libfreetype2
libpango >= 1.14.8
libpango (with cairo backend) >= 1.14.8
libsdl >= 1.2.7
libsdl-image >= 1.2 (with png support)
libsdl-mixer >= 1.2 (with Vorbis support)

View file

@ -10,7 +10,7 @@ is making sure that spelling/grammer/whatever is usable and that you are using
The release team should empty this file after each release.
Added pango and freetype2 dependencies.
Added pango with cairo backend dependency.

View file

@ -60,9 +60,8 @@ Version 1.5.1+svn:
* Missing images are now replaced by a "men-at-work" sign (in debug-mode)
* Better pathfinding: now always prefer straight path and is also more
stable between little mouse's moves.
* Added the pango dependency
* Added the pango cairo dependency
* Various code cleanups
* added the freetype2 dependency
* Python AI
* get_variable now allows a default value to be passed to the call. If the
key is not found, the default value is returned. This is fully backward

View file

@ -940,20 +940,10 @@ AM_CONDITIONAL([BOOST_TEST_DYN_LINK], [test x"$boost_test_dyn_link" = xyes])
if test "x$game" = "xyes"; then
PKG_CHECK_MODULES(PANGO, pangoft2 >= 1.14.8)
PKG_CHECK_MODULES(PANGO, pangocairo >= 1.14.8)
CPPFLAGS="$CPPFLAGS $PANGO_CFLAGS"
fi
#######################################################################
# Freetype 2 support #
#######################################################################
if test "x$game" = "xyes"; then
PKG_CHECK_MODULES(FREETYPE2, freetype2)
CPPFLAGS="$CPPFLAGS $FREETYPE2_CFLAGS"
fi
#######################################################################
# Tune gettext stuff for our needs #
#######################################################################