From: Fridrich S. <str...@us...> - 2010-04-14 08:39:20
|
Update of /cvsroot/libwpd/writerperfect In directory sfp-cvsdas-2.v30.ch3.sourceforge.com:/tmp/cvs-serv7190 Modified Files: configure.in Log Message: actually allow to build with libwpg :) Index: configure.in =================================================================== RCS file: /cvsroot/libwpd/writerperfect/configure.in,v retrieving revision 1.23 retrieving revision 1.24 diff -u -d -r1.23 -r1.24 --- configure.in 13 Apr 2010 08:24:14 -0000 1.23 +++ configure.in 14 Apr 2010 08:39:12 -0000 1.24 @@ -89,15 +89,16 @@ test_libwpg=true AC_ARG_WITH(libwpg, - [ --with-libwpg Use libwpg for conversion of WordPerfect Graphics], - if test "x$withval" != xyes; then + [ --without-libwpg Do not use libwpg for conversion of WordPerfect Graphics (embedded images will not be converted)], + if test "x$withval" = xno; then test_libwpg=false - AC_DEFINE([USE_LIBWPG], [1], [Whether to use libwpg for conversion of WordPerfect Graphics]) fi ) if test "x$test_libwpg" = "xtrue"; then + AC_DEFINE([USE_LIBWPG], [1], [Whether to use libwpg for conversion of WordPerfect Graphics]) + PKG_CHECK_MODULES(WRITERPERFECTWPG,[ libwpg-0.2 >= $LIBWPG_REQUIRED_VERSION ]) |