summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarl Worth <cworth@cworth.org>2005-08-24 06:07:58 +0000
committerCarl Worth <cworth@cworth.org>2005-08-24 06:07:58 +0000
commitb5a7a195791007e3c367b92a1fcc628699ca8043 (patch)
tree48a15c3037d356f7515f9f05864580357448af6a
parent3a9f977817b287e56f54760aece3105771a7dcc1 (diff)
Disable ATSUI by default as well.
-rw-r--r--ChangeLog4
-rw-r--r--configure.in8
2 files changed, 10 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 9d38e6cad..eb530629f 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,9 @@
2005-08-24 Carl Worth <cworth@cworth.org>
+ * configure.in: Disable ATSUI by default as well.
+
+2005-08-24 Carl Worth <cworth@cworth.org>
+
* BUGS: Add pointer to http://bugs.freedesktop.org.
2005-08-24 Carl Worth <cworth@cworth.org>
diff --git a/configure.in b/configure.in
index 39919e582..cdee28c89 100644
--- a/configure.in
+++ b/configure.in
@@ -423,8 +423,8 @@ dnl This check should default to 'yes' once we have code to actually
dnl check for the atsui font backend.
AC_ARG_ENABLE(atsui,
- [ --disable-atsui Disable cairo's atsui font backend],
- [use_atsui=$enableval], [use_atsui=yes])
+ [ --enable-atsui Enable cairo's atsui font backend],
+ [use_atsui=$enableval], [use_atsui=no])
if test "x$use_atsui" = "xyes"; then
dnl There is no pkgconfig for atsui; lets do a header check
@@ -565,6 +565,10 @@ if test x"$use_quartz" == "xyes" ; then
echo "$WARNING_MESSAGE" | sed 's/@BACKEND@/Quartz/'
fi
+if test x"$use_quartz" == "xyes" ; then
+ echo "$WARNING_MESSAGE" | sed 's/@BACKEND@/ATSUI/'
+fi
+
if test x"$use_pdf" == "xyes" ; then
echo "$WARNING_MESSAGE" | sed 's/@BACKEND@/PDF/'
fi