diff options
author | Sven Neumann <sven@gimp.org> | 2003-01-20 22:20:53 +0000 |
---|---|---|
committer | Sven Neumann <neo@src.gnome.org> | 2003-01-20 22:20:53 +0000 |
commit | ba8acbbe4732cc57e3f0eaed47347f9e802c9aa5 (patch) | |
tree | 0b42d9659c660229527ee0018552f2dcd86ed9c7 | |
parent | 5d1f02a71e825c6e47ce237faf33540bfe4acf08 (diff) | |
download | pango-ba8acbbe4732cc57e3f0eaed47347f9e802c9aa5.tar.gz |
fixed configure output which was wrong in case freetype is available but
2003-01-20 Sven Neumann <sven@gimp.org>
* configure.in: fixed configure output which was wrong in case
freetype is available but fontconfig isn't (bug #103917).
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | ChangeLog.pre-1-10 | 5 | ||||
-rw-r--r-- | ChangeLog.pre-1-4 | 5 | ||||
-rw-r--r-- | ChangeLog.pre-1-6 | 5 | ||||
-rw-r--r-- | ChangeLog.pre-1-8 | 5 | ||||
-rw-r--r-- | configure.in | 3 |
6 files changed, 26 insertions, 2 deletions
@@ -1,3 +1,8 @@ +2003-01-20 Sven Neumann <sven@gimp.org> + + * configure.in: fixed configure output which was wrong in case + freetype is available but fontconfig isn't (bug #103917). + 2003-01-17 Padraig O'Briain <padraig.obriain@sun.com> * pango/fonts.c (pango_font_description_from_string): Avoid crash diff --git a/ChangeLog.pre-1-10 b/ChangeLog.pre-1-10 index 443e0bf9..1cb56ca8 100644 --- a/ChangeLog.pre-1-10 +++ b/ChangeLog.pre-1-10 @@ -1,3 +1,8 @@ +2003-01-20 Sven Neumann <sven@gimp.org> + + * configure.in: fixed configure output which was wrong in case + freetype is available but fontconfig isn't (bug #103917). + 2003-01-17 Padraig O'Briain <padraig.obriain@sun.com> * pango/fonts.c (pango_font_description_from_string): Avoid crash diff --git a/ChangeLog.pre-1-4 b/ChangeLog.pre-1-4 index 443e0bf9..1cb56ca8 100644 --- a/ChangeLog.pre-1-4 +++ b/ChangeLog.pre-1-4 @@ -1,3 +1,8 @@ +2003-01-20 Sven Neumann <sven@gimp.org> + + * configure.in: fixed configure output which was wrong in case + freetype is available but fontconfig isn't (bug #103917). + 2003-01-17 Padraig O'Briain <padraig.obriain@sun.com> * pango/fonts.c (pango_font_description_from_string): Avoid crash diff --git a/ChangeLog.pre-1-6 b/ChangeLog.pre-1-6 index 443e0bf9..1cb56ca8 100644 --- a/ChangeLog.pre-1-6 +++ b/ChangeLog.pre-1-6 @@ -1,3 +1,8 @@ +2003-01-20 Sven Neumann <sven@gimp.org> + + * configure.in: fixed configure output which was wrong in case + freetype is available but fontconfig isn't (bug #103917). + 2003-01-17 Padraig O'Briain <padraig.obriain@sun.com> * pango/fonts.c (pango_font_description_from_string): Avoid crash diff --git a/ChangeLog.pre-1-8 b/ChangeLog.pre-1-8 index 443e0bf9..1cb56ca8 100644 --- a/ChangeLog.pre-1-8 +++ b/ChangeLog.pre-1-8 @@ -1,3 +1,8 @@ +2003-01-20 Sven Neumann <sven@gimp.org> + + * configure.in: fixed configure output which was wrong in case + freetype is available but fontconfig isn't (bug #103917). + 2003-01-17 Padraig O'Briain <padraig.obriain@sun.com> * pango/fonts.c (pango_font_description_from_string): Avoid crash diff --git a/configure.in b/configure.in index 63074f1e..73a01004 100644 --- a/configure.in +++ b/configure.in @@ -1,5 +1,4 @@ dnl Process this file with autoconf to create configure. - AC_PREREQ(2.53) AC_INIT(ChangeLog) @@ -815,7 +814,7 @@ pango-zip.sh *pango-config*)chmod +x pango-config;; esac]) echo "configuration: - backends: `if $have_freetype ; then echo " FreeType"; fi \ + backends: `if $have_freetype && $have_fontconfig; then echo " FreeType"; fi \ ``if $have_x ; then echo " X"; fi \ ``if $have_xft ; then echo " Xft"; fi \ ``if $have_win32 ; then echo " Win32"; fi`" |