author | Don Pellegrino <don@drexel.edu> | 2010-03-28 08:11:15 (GMT) |
---|---|---|
committer | Don Pellegrino <don@drexel.edu> | 2010-03-28 08:11:15 (GMT) |
commit | 2a4a485af4e3276f8cb99085b68b89f02b24a890 (patch) (unidiff) | |
tree | b376b4b15111b2448c5595e8dde0d05182ae5434 | |
parent | ebcdd299916c6e1315b9b62fd2344768a30ab75a (diff) | |
download | exp007-2a4a485af4e3276f8cb99085b68b89f02b24a890.zip exp007-2a4a485af4e3276f8cb99085b68b89f02b24a890.tar.gz exp007-2a4a485af4e3276f8cb99085b68b89f02b24a890.tar.bz2 |
Added dependency on the libxml2 library for XML parsing.
-rw-r--r-- | configure.ac | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index 58a4726..7f10e96 100644 --- a/configure.ac +++ b/configure.ac | |||
@@ -21,6 +21,9 @@ AC_CHECK_HEADERS([petscconf.h],[], | |||
21 | AC_CHECK_HEADERS([petscmat.h],[], | 21 | AC_CHECK_HEADERS([petscmat.h],[], |
22 | [AC_MSG_ERROR("The PETSc headers are needed to build the system.")]) | 22 | [AC_MSG_ERROR("The PETSc headers are needed to build the system.")]) |
23 | 23 | ||
24 | AC_CHECK_HEADERS([libxml/parser.h],[], | ||
25 | [AC_MSG_ERROR("The libxml2 headers are needed to build the system.")]) | ||
26 | |||
24 | ######################## | 27 | ######################## |
25 | # MODULE: NCBI Toolkit # | 28 | # MODULE: NCBI Toolkit # |
26 | ######################## | 29 | ######################## |
@@ -79,4 +82,10 @@ AC_SEARCH_LIBS([VecNorm],[petscvec]) | |||
79 | AC_SEARCH_LIBS([MatCreateSeqAIJ],[petscmat],[], | 82 | AC_SEARCH_LIBS([MatCreateSeqAIJ],[petscmat],[], |
80 | [AC_MSG_ERROR("The Portable Extensible Toolkit for Scientific Computation (PETSc) is needed to build the system.")]) | 83 | [AC_MSG_ERROR("The Portable Extensible Toolkit for Scientific Computation (PETSc) is needed to build the system.")]) |
81 | 84 | ||
85 | ################### | ||
86 | # MODULE: libxml2 # | ||
87 | ################### | ||
88 | AC_SEARCH_LIBS([xmlCreatePushParserCtxt],[xml2],[], | ||
89 | [AC_MSG_ERROR("The libxml2 library is needed to build the system.")]) | ||
90 | |||
82 | AC_OUTPUT | 91 | AC_OUTPUT |