aboutsummaryrefslogtreecommitdiffstats
path: root/configure.in
diff options
context:
space:
mode:
authorJörg Mayer <jmayer@loplof.de>2005-02-24 19:46:15 +0000
committerJörg Mayer <jmayer@loplof.de>2005-02-24 19:46:15 +0000
commit79c7325373c5f375bbb3e316564720260f59528f (patch)
tree5934055ebcdd03e115c4c91ffb093326aa31c1ff /configure.in
parentd31c2baddabc5bfc1cefde9546b2a629e1e2d133 (diff)
Search for fop, not fop.sh
svn path=/trunk/; revision=13499
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in6
1 files changed, 3 insertions, 3 deletions
diff --git a/configure.in b/configure.in
index 64f101ff7f..79192d3946 100644
--- a/configure.in
+++ b/configure.in
@@ -65,9 +65,9 @@ AC_PATH_PROG(XMLLINT, xmllint)
AC_CHECK_PROG(HAVE_XMLLINT, xmllint, "yes", "no")
AM_CONDITIONAL(HAVE_XMLLINT, test x$HAVE_XMLLINT = xyes)
-# Check for fop (
-AC_PATH_PROG(FOP, fop.sh)
-AC_CHECK_PROG(HAVE_FOP, fop.sh, "yes", "no")
+# Check for fop (translate .fo to e.g. pdf)
+AC_PATH_PROG(FOP, fop)
+AC_CHECK_PROG(HAVE_FOP, fop, "yes", "no")
AM_CONDITIONAL(HAVE_FOP, test x$HAVE_FOP = xyes)
# Check for hhc (html help compiler)