Update of /cvsroot/refdb/refdb
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv16361
Modified Files:
Tag: Release_0_9_5_stable
configure.in
Log Message:
added check and conditional for batik-rasterizer in order to fix the Debian build problems
Index: configure.in
===================================================================
RCS file: /cvsroot/refdb/refdb/configure.in,v
retrieving revision 1.49.2.27
retrieving revision 1.49.2.28
diff -u -U2 -r1.49.2.27 -r1.49.2.28
--- configure.in 11 Dec 2005 21:17:39 -0000 1.49.2.27
+++ configure.in 26 Dec 2005 22:05:18 -0000 1.49.2.28
@@ -178,10 +178,15 @@
if test "$ac_docs" = "YES"; then
-AC_PATH_PROGS(mydtdparse, dtdparse)
-AC_PATH_PROGS(mydtdformat, dtdformat)
-AC_PATH_PROGS(mysgrep, sgrep)
-AC_PATH_PROGS(mytidy, tidy)
+AC_PATH_PROG(mydtdparse, dtdparse)
+AC_PATH_PROG(mydtdformat, dtdformat)
+AC_PATH_PROG(mysgrep, sgrep)
+AC_PATH_PROG(mytidy, tidy)
+AC_PATH_PROG(mybatik, batik-rasterizer)
fi
+dnl this is for building docs only, but the conditional must not be defined
+dnl inside of an if block
+AM_CONDITIONAL(HAVEBATIK, test x$mybatik != "x")
+
dnl
dnl Checks for libraries.
|