[cairo-commit] cairo ChangeLog,1.291,1.292 configure.in,1.67,1.68

Kristian Hogsberg commit at pdx.freedesktop.org
Thu Jan 6 23:20:09 PST 2005


Committed by: krh

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

Modified Files:
	ChangeLog configure.in 
Log Message:
2005-01-07  Kristian Høgsberg  <krh at redhat.com>

        * configure.in: Add -lz to CAIRO_LIBS when compiling the PDF
        backend.

        * src/cairo_pdf_surface.c (emit_image_data): Don't use
        compressBound, since it's only available in zlib 1.2 and newer.



Index: ChangeLog
===================================================================
RCS file: /cvs/cairo/cairo/ChangeLog,v
retrieving revision 1.291
retrieving revision 1.292
diff -u -d -r1.291 -r1.292
--- ChangeLog	7 Jan 2005 05:28:07 -0000	1.291
+++ ChangeLog	7 Jan 2005 07:20:07 -0000	1.292
@@ -1,3 +1,11 @@
+2005-01-07  Kristian Høgsberg  <krh at redhat.com>
+
+	* configure.in: Add -lz to CAIRO_LIBS when compiling the PDF
+	backend.
+
+	* src/cairo_pdf_surface.c (emit_image_data): Don't use
+	compressBound, since it's only available in zlib 1.2 and newer.
+
 2005-01-07  Carl Worth  <cworth at cworth.org>
 
 	* TODO: Add Owen's new equation to fix clipping:

Index: configure.in
===================================================================
RCS file: /cvs/cairo/cairo/configure.in,v
retrieving revision 1.67
retrieving revision 1.68
diff -u -d -r1.67 -r1.68
--- configure.in	5 Jan 2005 22:29:31 -0000	1.67
+++ configure.in	7 Jan 2005 07:20:07 -0000	1.68
@@ -121,10 +121,14 @@
   AM_CONDITIONAL(CAIRO_HAS_PDF_SURFACE, false)
 else
   PDF_SURFACE_FEATURE=CAIRO_HAS_PDF_SURFACE
+  PDF_LIBS=-lz
   AM_CONDITIONAL(CAIRO_HAS_PDF_SURFACE, true)
 fi
 
+CAIRO_LIBS="$CAIRO_LIBS $PDF_LIBS"
+
 AC_SUBST(PDF_SURFACE_FEATURE)
+AC_SUBST(PDF_LIBS)
 
 dnl ===========================================================================
 




More information about the cairo-commit mailing list