summaryrefslogtreecommitdiff
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
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)
-rw-r--r--ChangeLog5
-rw-r--r--ChangeLog.pre-1-105
-rw-r--r--ChangeLog.pre-1-45
-rw-r--r--ChangeLog.pre-1-65
-rw-r--r--ChangeLog.pre-1-85
-rw-r--r--configure.in12
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 <otaylor@redhat.com>
+
+ * configure.in: Avoid complex quoting mess that
+ didn't work with all shells. (#108001)
+
Tue Apr 15 05:00:39 2003 Owen Taylor <otaylor@redhat.com>
* 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 <otaylor@redhat.com>
+
+ * configure.in: Avoid complex quoting mess that
+ didn't work with all shells. (#108001)
+
Tue Apr 15 05:00:39 2003 Owen Taylor <otaylor@redhat.com>
* 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 <otaylor@redhat.com>
+
+ * configure.in: Avoid complex quoting mess that
+ didn't work with all shells. (#108001)
+
Tue Apr 15 05:00:39 2003 Owen Taylor <otaylor@redhat.com>
* 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 <otaylor@redhat.com>
+
+ * configure.in: Avoid complex quoting mess that
+ didn't work with all shells. (#108001)
+
Tue Apr 15 05:00:39 2003 Owen Taylor <otaylor@redhat.com>
* 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 <otaylor@redhat.com>
+
+ * configure.in: Avoid complex quoting mess that
+ didn't work with all shells. (#108001)
+
Tue Apr 15 05:00:39 2003 Owen Taylor <otaylor@redhat.com>
* 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"