summaryrefslogtreecommitdiff
path: root/configure.in
diff options
context:
space:
mode:
authorOwen Taylor <otaylor@redhat.com>2003-04-15 21:23:05 +0000
committerOwen Taylor <otaylor@src.gnome.org>2003-04-15 21:23:05 +0000
commit8c3d23f13b6405fc5ce32d30ad590266d8c46545 (patch)
tree8dfd0ec887ba3351f6bcf883a67dc769462a9771 /configure.in
parent5676f3b167815d2a32b40ceeec86cc096e123cbb (diff)
downloadpango-8c3d23f13b6405fc5ce32d30ad590266d8c46545.tar.gz
Avoid complex quoting mess that didn't work with all shells. (#108001)
Tue Apr 15 05:13:56 2003 Owen Taylor <otaylor@redhat.com> * configure.in: Avoid complex quoting mess that didn't work with all shells. (#108001)
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in12
1 files changed, 8 insertions, 4 deletions
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"