[poppler]
poppler: ChangeLog, 1.42, 1.43 NEWS, 1.4, 1.5 configure.ac,
1.11, 1.12
Kristian Hogsberg
krh at freedesktop.org
Tue Apr 5 10:46:46 PDT 2005
Update of /cvs/poppler/poppler
In directory gabe:/tmp/cvs-serv31841
Modified Files:
ChangeLog NEWS configure.ac
Log Message:
2005-04-05 Kristian Høgsberg <krh at redhat.com>
* NEWS: Attempt to sum up changes since 0.1.2.
* configure.ac: Bump release to 0.2.0, add AC_DEFINEs for cairo
and splash availability.
* poppler/CairoFontEngine.cc: Disable hinting.
* glib/poppler-page.cc (poppler_page_render_to_pixbuf): Choose
either splash or cairo rendering, based on configure choice.
(cairo_render_to_pixbuf): New function to render using the cairo
backend.
(splash_render_to_pixbuf): Split out the splash code to this
function.
Index: ChangeLog
===================================================================
RCS file: /cvs/poppler/poppler/ChangeLog,v
retrieving revision 1.42
retrieving revision 1.43
diff -u -d -r1.42 -r1.43
--- ChangeLog 5 Apr 2005 02:56:32 -0000 1.42
+++ ChangeLog 5 Apr 2005 17:46:44 -0000 1.43
@@ -1,3 +1,19 @@
+2005-04-05 Kristian Høgsberg <krh at redhat.com>
+
+ * NEWS: Attempt to sum up changes since 0.1.2.
+
+ * configure.ac: Bump release to 0.2.0, add AC_DEFINEs for cairo
+ and splash availability.
+
+ * poppler/CairoFontEngine.cc: Disable hinting.
+
+ * glib/poppler-page.cc (poppler_page_render_to_pixbuf): Choose
+ either splash or cairo rendering, based on configure choice.
+ (cairo_render_to_pixbuf): New function to render using the cairo
+ backend.
+ (splash_render_to_pixbuf): Split out the splash code to this
+ function.
+
2005-04-04 Kristian Høgsberg <krh at redhat.com>
* ChangeLog: Add this entry to test commit mailer script.
Index: NEWS
===================================================================
RCS file: /cvs/poppler/poppler/NEWS,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -d -r1.4 -r1.5
--- NEWS 22 Mar 2005 01:50:05 -0000 1.4
+++ NEWS 5 Apr 2005 17:46:44 -0000 1.5
@@ -1,7 +1,9 @@
-Release 0.2.0 (Not out yet...)
+Release 0.2.0 (Tue Apr 5 12:32:10 EDT 2005)
- - Add glib wrapper for poppler
+ - Add glib wrapper for poppler, which will use cairo rendering
+ if available
- Support for page labels
+ - configure and build fixes.
Release 0.1.2 (Wed Mar 9 10:45:58 EST 2005)
Index: configure.ac
===================================================================
RCS file: /cvs/poppler/poppler/configure.ac,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -d -r1.11 -r1.12
--- configure.ac 4 Apr 2005 21:50:56 -0000 1.11
+++ configure.ac 5 Apr 2005 17:46:44 -0000 1.12
@@ -1,7 +1,7 @@
dnl Based on Xpdf configure.in and evince configure.ac
AC_PREREQ(2.59)
-AC_INIT(poppler, 0.1.2)
+AC_INIT(poppler, 0.2.0)
AM_INIT_AUTOMAKE(AC_PACKAGE_NAME, AC_PACKAGE_VERSION)
AM_CONFIG_HEADER(config.h)
AM_CONFIG_HEADER(poppler/poppler-config.h)
@@ -142,6 +142,10 @@
PKG_CHECK_MODULES(SPLASH, fontconfig)
fi
AM_CONDITIONAL(BUILD_SPLASH_OUTPUT, test x$enable_splash_output = xyes)
+AH_TEMPLATE([HAVE_SPLASH], [Use splash for rendering.])
+if test x$enable_splash_output = xyes; then
+ AC_DEFINE(HAVE_SPLASH)
+fi
AC_ARG_ENABLE(cairo-output,
AC_HELP_STRING([--disable-cairo-output],
@@ -149,14 +153,18 @@
enable_cairo_output=$enableval,
enable_cairo_output="try")
if test x$enable_cairo_output = xyes; then
- PKG_CHECK_MODULES(CAIRO, cairo = 0.4)
+ PKG_CHECK_MODULES(CAIRO, cairo = 0.4.0)
elif test x$enable_cairo_output = xtry; then
- PKG_CHECK_MODULES(CAIRO, cairo = 0.4,
+ PKG_CHECK_MODULES(CAIRO, cairo = 0.4.0,
[enable_cairo_output="yes"],
[enable_cairo_output="no"])
fi
-AM_CONDITIONAL(BUILD_CAIRO_OUTPUT, test x$enable_cairo_output = xyes)
+AM_CONDITIONAL(BUILD_CAIRO_OUTPUT, test x$enable_cairo_output = xyes)
+AH_TEMPLATE([HAVE_CAIRO], [Use cairo for rendering.])
+if test x$enable_cairo_output = xyes; then
+ AC_DEFINE(HAVE_CAIRO)
+fi
AC_ARG_ENABLE(poppler-glib,
AC_HELP_STRING([--disable-poppler-glib],
More information about the poppler
mailing list