diff options
author | Khaled Hosny <khaledhosny@eglug.org> | 2013-09-04 12:44:37 +0200 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2013-09-04 11:01:28 +0000 |
commit | 190506425ce28e345222c08065e2d08003a85cb0 (patch) | |
tree | ba995376eae4f3a9cc252c0d547acc86e475e9d1 /configure.ac | |
parent | 655a62ad569b08c6d0b5639624e33d40594bedf2 (diff) |
Require FreeType >= 2.2.0
That should be older than what RHEL-5 have, so closer to our real
baseline. Cleanup checks for older FreeType as a side effect.
Change-Id: I10dc6a3064b6be88cd7bdc72c501d50df4a2613b
Reviewed-on: https://gerrit.libreoffice.org/5804
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/configure.ac b/configure.ac index 193d6394163e..3da20ce6fe24 100644 --- a/configure.ac +++ b/configure.ac @@ -7682,9 +7682,8 @@ if test "$test_freetype" = "yes"; then # * soname # FreeType's docs/VERSION.DLL provides a table mapping between the three # - # 9.4.3 is 2.1.5; the first FreeType release to provide a freetype2.pc file - # XXX: replace this with a real minimum required version - PKG_CHECK_MODULES( FREETYPE, freetype2 >= 9.4.3 ) + # 9.9.3 is 2.2.0 + PKG_CHECK_MODULES(FREETYPE, freetype2 >= 9.9.3) FREETYPE_CFLAGS=$(printf '%s' "$FREETYPE_CFLAGS" | sed -e "s/-I/${ISYSTEM?}/g") SYSTEM_FREETYPE=YES fi |