Update of /cvsroot/libwpg/libwpg
In directory sfp-cvsdas-2.v30.ch3.sourceforge.com:/tmp/cvs-serv4023
Modified Files:
configure.in
Log Message:
Implement --with-dummy-bitmaps for purposes of svg validation runs
Index: configure.in
===================================================================
RCS file: /cvsroot/libwpg/libwpg/configure.in,v
retrieving revision 1.20
retrieving revision 1.21
diff -u -d -r1.20 -r1.21
--- configure.in 3 Jun 2010 08:02:02 -0000 1.20
+++ configure.in 6 Jun 2010 19:24:52 -0000 1.21
@@ -98,6 +98,18 @@
AC_SUBST(WPG2RAW_WIN32_RESOURCE)
AC_SUBST(WPG2SVG_WIN32_RESOURCE)
+test_dummy_bitmaps=false
+AC_ARG_WITH(dummy_bitmaps,
+ [ --with-dummy-bitmaps Output dummy bitmaps of 1x1 pixels instead of the real bitmaps (speeds up the validation test)],
+ if test "x$withval" = xyes; then
+ test_dummy_bitmaps=true
+ fi
+)
+if test "x$test_dummy_bitmaps" = "xtrue"; then
+ AC_DEFINE([OUTPUT_DUMMY_BITMAPS], [1], [Whether to output dummy bitmaps instead of the real ones])
+fi
+
+
test_docs=true
if test "$native_win32" = yes; then
test_docs=false
|