summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarl Worth <cworth@cworth.org>2005-10-08 10:58:11 +0000
committerCarl Worth <cworth@cworth.org>2005-10-08 10:58:11 +0000
commitfe254b0ebc99bcc813b8a9d5714e936991fa435a (patch)
tree76cca15559ae55663563e010379a56fb41d31caa
parent4ac391f861410c7b72bfae48ffd93e7abdf84fe2 (diff)
Fix typo leading to truncated error message (Christian Biesinger <cbiesinger@web.de>).
-rw-r--r--ChangeLog5
-rw-r--r--configure.in2
2 files changed, 6 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 1d495c854..030172adf 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2005-10-08 Carl Worth <cworth@cworth.org>
+
+ * configure.in: Fix typo leading to truncated error message
+ (Christian Biesinger <cbiesinger@web.de>).
+
2005-10-06 Carl Worth <cworth@cworth.org>
* src/cairo-xlib-surface.c: (_draw_image_surface): Add missing
diff --git a/configure.in b/configure.in
index 824c88cdd..ca561983e 100644
--- a/configure.in
+++ b/configure.in
@@ -219,7 +219,7 @@ AM_CONDITIONAL(CAIRO_HAS_PNG_FUNCTIONS, test "x$use_png" = "xyes")
if test "x$use_png" = "xyes"; then
PNG_FUNCTIONS_FEATURE="#define CAIRO_HAS_PNG_FUNCTIONS 1"
else
- AC_MSG_WARN("*** To run the tests, cairo must be built with png support ***)
+ AC_MSG_WARN([*** To run the tests, cairo must be built with png support ***])
fi
AC_SUBST(PNG_FUNCTIONS_FEATURE)