Reduce the fontconfig dependency to 2.4.1.

On the forum there has been a report[1] that 2.4.1 also works so lower the
dependency.

[1] http://www.wesnoth.org/forum/viewtopic.php?f=4&t=24456
This commit is contained in:
Mark de Wever 2009-03-13 17:49:38 +00:00
parent 1b93b78455
commit 0f278988a4
3 changed files with 3 additions and 2 deletions

View file

@ -34,7 +34,7 @@ find_package( X11 )
pkg_check_modules( PANGOCAIRO REQUIRED pangocairo>=1.14.8 )
#use pkg-config to find fontconfig:
pkg_check_modules( FONTCONFIG REQUIRED fontconfig>=2.4.2 )
pkg_check_modules( FONTCONFIG REQUIRED fontconfig>=2.4.1 )
#needed to get some SDL defines in... (as of rev31694 -D_GNU_SOURCE=1 is required!)
set(SDL_CONFIG "sdl-config" CACHE STRING "Path to sdl-config script")

View file

@ -15,6 +15,7 @@ Version 1.5.13+svn:
* Fix another campaign replay bug (#13139)
* Fix WML [advancefrom] bug (#13176)
* It is now possible to create units with random genders in debug mode
* Reduce the fontconfig dependency to 2.4.1
Version 1.5.13:
* Graphics:

View file

@ -895,7 +895,7 @@ if test "x$game" = "xyes" || test "x$tests" = "xyes"; then
PKG_CHECK_MODULES(PANGO, pangocairo >= 1.14.8)
CPPFLAGS="$CPPFLAGS $PANGO_CFLAGS"
PKG_CHECK_MODULES(FONTCONFIG, fontconfig >= 2.4.2)
PKG_CHECK_MODULES(FONTCONFIG, fontconfig >= 2.4.1)
CPPFLAGS="$CPPFLAGS $FONTCONFIG_CFLAGS"
fi