[cairo-commit] cairo ChangeLog, 1.994, 1.995 configure.in, 1.135,
1.136
Carl Worth
commit at pdx.freedesktop.org
Wed Aug 24 05:25:53 PDT 2005
- Previous message: [cairo-commit]
cairo ChangeLog, 1.993, 1.994 NEWS, 1.25, 1.26 README,
1.14, 1.15 ROADMAP, 1.33, 1.34
- Next message: [cairo-commit] cairo ChangeLog, 1.995, 1.996 Makefile.am, 1.23,
1.24 RELEASING, 1.18, 1.19
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
Committed by: cworth
Update of /cvs/cairo/cairo
In directory gabe:/tmp/cvs-serv10887
Modified Files:
ChangeLog configure.in
Log Message:
2005-08-24 Carl Worth <cworth at cworth.org>
* configure.in: Give PostScript and PDF backends the experimental
treatment, disabling them by default.
Index: ChangeLog
===================================================================
RCS file: /cvs/cairo/cairo/ChangeLog,v
retrieving revision 1.994
retrieving revision 1.995
diff -u -d -r1.994 -r1.995
--- ChangeLog 24 Aug 2005 12:21:50 -0000 1.994
+++ ChangeLog 24 Aug 2005 12:25:51 -0000 1.995
@@ -1,5 +1,10 @@
2005-08-24 Carl Worth <cworth at cworth.org>
+ * configure.in: Give PostScript and PDF backends the experimental
+ treatment, disabling them by default.
+
+2005-08-24 Carl Worth <cworth at cworth.org>
+
* NEWS: Add notes for 1.0 release. Thanks to Owen Taylor.
* README: Note that PS and PDF backends are experimental.
Index: configure.in
===================================================================
RCS file: /cvs/cairo/cairo/configure.in,v
retrieving revision 1.135
retrieving revision 1.136
diff -u -d -r1.135 -r1.136
--- configure.in 23 Aug 2005 22:16:37 -0000 1.135
+++ configure.in 24 Aug 2005 12:25:51 -0000 1.136
@@ -370,8 +370,8 @@
dnl ===========================================================================
AC_ARG_ENABLE(ps,
- [ --disable-ps Disable cairo's PostScript backend],
- [use_ps=$enableval], [use_ps=yes])
+ [ --enable-ps Enable cairo's PostScript backend],
+ [use_ps=$enableval], [use_ps=no])
if test x"$have_ft_load_sfnt_table" != "xyes" ; then
AC_MSG_WARN([PS backend requires FreeType 2.1.4 or newer, disabling])
@@ -398,8 +398,8 @@
dnl ===========================================================================
AC_ARG_ENABLE(pdf,
- [ --disable-pdf Disable cairo's PDF backend],
- [use_pdf=$enableval], [use_pdf=yes])
+ [ --enable-pdf Enable cairo's PDF backend],
+ [use_pdf=$enableval], [use_pdf=no])
if test x"$have_ft_load_sfnt_table" != "xyes" ; then
AC_MSG_WARN([PDF backend requires FreeType 2.1.4 or newer, disabling])
@@ -564,3 +564,11 @@
if test x"$use_quartz" == "xyes" ; then
echo "$WARNING_MESSAGE" | sed 's/@BACKEND@/Quartz/'
fi
+
+if test x"$use_pdf" == "xyes" ; then
+ echo "$WARNING_MESSAGE" | sed 's/@BACKEND@/PDF/'
+fi
+
+if test x"$use_ps" == "xyes" ; then
+ echo "$WARNING_MESSAGE" | sed 's/@BACKEND@/PostScript/'
+fi
- Previous message: [cairo-commit]
cairo ChangeLog, 1.993, 1.994 NEWS, 1.25, 1.26 README,
1.14, 1.15 ROADMAP, 1.33, 1.34
- Next message: [cairo-commit] cairo ChangeLog, 1.995, 1.996 Makefile.am, 1.23,
1.24 RELEASING, 1.18, 1.19
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
More information about the cairo-commit
mailing list