[cairo-commit] cairo ChangeLog,1.411,1.412 configure.in,1.89,1.90

Carl Worth commit at pdx.freedesktop.org
Mon Mar 7 12:40:31 PST 2005


Committed by: cworth

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

Modified Files:
	ChangeLog configure.in 
Log Message:

        * configure.in: Make configure fail if no font backend is
        available. Point the user at freetype and fontconfig.


Index: ChangeLog
===================================================================
RCS file: /cvs/cairo/cairo/ChangeLog,v
retrieving revision 1.411
retrieving revision 1.412
diff -u -d -r1.411 -r1.412
--- ChangeLog	6 Mar 2005 20:05:23 -0000	1.411
+++ ChangeLog	7 Mar 2005 20:40:29 -0000	1.412
@@ -1,3 +1,8 @@
+2005-03-07  Carl Worth  <cworth at cworth.org>
+
+	* configure.in: Make configure fail if no font backend is
+	available. Point the user at freetype and fontconfig.
+
 2005-03-06  Owen Taylor  <otaylor at redhat.com>
 
 	* src/cairo_pattern.c (_cairo_image_data_set_linear): Comment

Index: configure.in
===================================================================
RCS file: /cvs/cairo/cairo/configure.in,v
retrieving revision 1.89
retrieving revision 1.90
diff -u -d -r1.89 -r1.90
--- configure.in	4 Mar 2005 17:41:34 -0000	1.89
+++ configure.in	7 Mar 2005 20:40:29 -0000	1.90
@@ -444,3 +444,13 @@
 echo "  ATSUI: $use_atsui"
 echo ""
 
+if test x"$use_freetype" != "xyes" && \
+   test x"$use_win32"    != "xyes" && \
+   test x"$use_atsui"    != "xyes" ; then
+
+   AC_MSG_ERROR([Cairo requires at least one font backend.
+		  Please install freetype and fontconfig, then try again:
+		  http://freetype.org/	http://fontconfig.org/
+		])
+fi
+




More information about the cairo-commit mailing list