summaryrefslogtreecommitdiff
path: root/configure.in
diff options
context:
space:
mode:
authorOwen Taylor <otaylor@redhat.com>2003-04-15 21:22:51 +0000
committerOwen Taylor <otaylor@src.gnome.org>2003-04-15 21:22:51 +0000
commit7fe94b7117af209f2faf23a9b79a8b125631deab (patch)
treee23a246cddca815b7ffc287bce52a187368e6402 /configure.in
parente3ada7907fcbab7ba9042b9924a57d466eb99386 (diff)
downloadpango-7fe94b7117af209f2faf23a9b79a8b125631deab.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.in11
1 files changed, 7 insertions, 4 deletions
diff --git a/configure.in b/configure.in
index 66caa093..73b25f7b 100644
--- a/configure.in
+++ b/configure.in
@@ -795,8 +795,11 @@ pango-zip.sh
AC_OUTPUT
+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"