[cairo-commit] cairo configure.in, 1.147, 1.148 ChangeLog, 1.1086, 1.1087

Carl Worth commit at pdx.freedesktop.org
Sat Oct 8 11:57:47 PDT 2005


Committed by: cworth

Update of /cvs/cairo/cairo
In directory gabe:/tmp/cvs-serv10907

Modified Files:
	configure.in ChangeLog 
Log Message:

2005-10-08  Carl Worth  <cworth at cworth.org>

        * configure.in: Enable PS and PDF backends by default, (in
        preparation for 1.2.0)


Index: configure.in
===================================================================
RCS file: /cvs/cairo/cairo/configure.in,v
retrieving revision 1.147
retrieving revision 1.148
diff -u -d -r1.147 -r1.148
--- configure.in	8 Oct 2005 17:50:08 -0000	1.147
+++ configure.in	8 Oct 2005 18:57:45 -0000	1.148
@@ -372,8 +372,8 @@
 dnl ===========================================================================
 
 AC_ARG_ENABLE(ps,
-  [  --enable-ps             Enable cairo's PostScript backend],
-  [use_ps=$enableval], [use_ps=no])
+  [  --disable-ps            Disable cairo's PostScript backend],
+  [use_ps=$enableval], [use_ps=yes])
 
 if test x"$have_ft_load_sfnt_table" != "xyes" ; then
   AC_MSG_WARN([PS backend requires FreeType 2.1.4 or newer, disabling])
@@ -400,8 +400,8 @@
 dnl ===========================================================================
 
 AC_ARG_ENABLE(pdf,
-  [  --enable-pdf            Enable cairo's PDF backend],
-  [use_pdf=$enableval], [use_pdf=no])
+  [  --disable-pdf           Disable cairo's PDF backend],
+  [use_pdf=$enableval], [use_pdf=yes])
 
 if test x"$have_ft_load_sfnt_table" != "xyes" ; then
   AC_MSG_WARN([PDF backend requires FreeType 2.1.4 or newer, disabling])
@@ -575,10 +575,3 @@
    echo "$WARNING_MESSAGE" | sed 's/@BACKEND@/ATSUI/'
 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

Index: ChangeLog
===================================================================
RCS file: /cvs/cairo/cairo/ChangeLog,v
retrieving revision 1.1086
retrieving revision 1.1087
diff -u -d -r1.1086 -r1.1087
--- ChangeLog	8 Oct 2005 17:50:08 -0000	1.1086
+++ ChangeLog	8 Oct 2005 18:57:45 -0000	1.1087
@@ -1,5 +1,10 @@
 2005-10-08  Carl Worth  <cworth at cworth.org>
 
+	* configure.in: Enable PS and PDF backends by default, (in
+	preparation for 1.2.0)
+	
+2005-10-08  Carl Worth  <cworth at cworth.org>
+
 	* configure.in: Fix typo leading to truncated error message
 	(Christian Biesinger <cbiesinger at web.de>).
 



More information about the cairo-commit mailing list