Disable ATSUI by default as well.

This commit is contained in:
Carl Worth 2005-08-24 06:07:58 +00:00
parent 3a9f977817
commit b5a7a19579
2 changed files with 10 additions and 2 deletions

View file

@ -1,3 +1,7 @@
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.

View file

@ -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