projects
/
metaproxy-moved-to-github.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
1a8727a
)
configure checks for libxml2/libxslt
author
Adam Dickmeiss
<adam@indexdata.dk>
Mon, 20 Jun 2011 09:00:34 +0000
(11:00 +0200)
committer
Adam Dickmeiss
<adam@indexdata.dk>
Mon, 20 Jun 2011 09:00:34 +0000
(11:00 +0200)
configure.ac
patch
|
blob
|
history
diff --git
a/configure.ac
b/configure.ac
index
d58e72c
..
15b8d2e
100644
(file)
--- a/
configure.ac
+++ b/
configure.ac
@@
-51,6
+51,20
@@
if test -z "${BOOST_TEST_LIB}"; then
AC_MSG_ERROR([Boost unit test framework libraries required])
fi
+xml_avail=false
+xslt_avail=false
+YAZ_LIBXML2([xml_avail=true])
+if $xml_avail; then
+ YAZ_LIBXSLT([xslt_avail=true])
+else
+ AC_MSG_ERROR([Libxml2 development files not found])
+fi
+if $xslt_avail; then
+ :
+else
+ AC_MSG_ERROR([Libxslt development files not found])
+fi
+
AC_CHECK_HEADERS([sys/select.h sys/socket.h])
if test -d ${srcdir}/.git; then