From 8c3d23f13b6405fc5ce32d30ad590266d8c46545 Mon Sep 17 00:00:00 2001 From: Owen Taylor Date: Tue, 15 Apr 2003 21:23:05 +0000 Subject: Avoid complex quoting mess that didn't work with all shells. (#108001) Tue Apr 15 05:13:56 2003 Owen Taylor * configure.in: Avoid complex quoting mess that didn't work with all shells. (#108001) --- ChangeLog | 5 +++++ ChangeLog.pre-1-10 | 5 +++++ ChangeLog.pre-1-4 | 5 +++++ ChangeLog.pre-1-6 | 5 +++++ ChangeLog.pre-1-8 | 5 +++++ configure.in | 12 ++++++++---- 6 files changed, 33 insertions(+), 4 deletions(-) diff --git a/ChangeLog b/ChangeLog index fc98cce4..26f16747 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +Tue Apr 15 05:13:56 2003 Owen Taylor + + * configure.in: Avoid complex quoting mess that + didn't work with all shells. (#108001) + Tue Apr 15 05:00:39 2003 Owen Taylor * pango/opentype/pango-ot-info.c (synthesize_class_def): diff --git a/ChangeLog.pre-1-10 b/ChangeLog.pre-1-10 index fc98cce4..26f16747 100644 --- a/ChangeLog.pre-1-10 +++ b/ChangeLog.pre-1-10 @@ -1,3 +1,8 @@ +Tue Apr 15 05:13:56 2003 Owen Taylor + + * configure.in: Avoid complex quoting mess that + didn't work with all shells. (#108001) + Tue Apr 15 05:00:39 2003 Owen Taylor * pango/opentype/pango-ot-info.c (synthesize_class_def): diff --git a/ChangeLog.pre-1-4 b/ChangeLog.pre-1-4 index fc98cce4..26f16747 100644 --- a/ChangeLog.pre-1-4 +++ b/ChangeLog.pre-1-4 @@ -1,3 +1,8 @@ +Tue Apr 15 05:13:56 2003 Owen Taylor + + * configure.in: Avoid complex quoting mess that + didn't work with all shells. (#108001) + Tue Apr 15 05:00:39 2003 Owen Taylor * pango/opentype/pango-ot-info.c (synthesize_class_def): diff --git a/ChangeLog.pre-1-6 b/ChangeLog.pre-1-6 index fc98cce4..26f16747 100644 --- a/ChangeLog.pre-1-6 +++ b/ChangeLog.pre-1-6 @@ -1,3 +1,8 @@ +Tue Apr 15 05:13:56 2003 Owen Taylor + + * configure.in: Avoid complex quoting mess that + didn't work with all shells. (#108001) + Tue Apr 15 05:00:39 2003 Owen Taylor * pango/opentype/pango-ot-info.c (synthesize_class_def): diff --git a/ChangeLog.pre-1-8 b/ChangeLog.pre-1-8 index fc98cce4..26f16747 100644 --- a/ChangeLog.pre-1-8 +++ b/ChangeLog.pre-1-8 @@ -1,3 +1,8 @@ +Tue Apr 15 05:13:56 2003 Owen Taylor + + * configure.in: Avoid complex quoting mess that + didn't work with all shells. (#108001) + Tue Apr 15 05:00:39 2003 Owen Taylor * pango/opentype/pango-ot-info.c (synthesize_class_def): diff --git a/configure.in b/configure.in index b446355e..9321032f 100644 --- a/configure.in +++ b/configure.in @@ -814,8 +814,12 @@ pango-zip.sh ],[case "$CONFIG_FILES" in *pango-config*)chmod +x pango-config;; esac]) + +backends="" +if $have_freetype && $have_fontconfig ; then backends="$backends FreeType"; fi +if $have_x ; then backends="$backends X"; fi +if $have_xft ; then backends="$backends Xft"; fi +if $have_win32 ; then backends="$backends Win32"; fi + echo "configuration: - 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`" + backends:$backends" -- cgit v1.2.1