diff options
author | deva <deva> | 2008-08-05 08:43:35 +0000 |
---|---|---|
committer | deva <deva> | 2008-08-05 08:43:35 +0000 |
commit | 90d1466d82e01fd7e5e2d2b49977e2dccaac9e33 (patch) | |
tree | c5a3a1dcdf4425340cb469baf54dc8096e298e76 /configure.in | |
parent | 733e8c2efaee6ac3e0c6cfe81f09171af6a14303 (diff) |
Forgot to put eXpat in configure
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/configure.in b/configure.in index 33366c2..aafe24b 100644 --- a/configure.in +++ b/configure.in @@ -36,6 +36,12 @@ dnl ====================== PKG_CHECK_MODULES(SNDFILE, sndfile >= 1.0.17) dnl ====================== +dnl Check for eXpat library +dnl ====================== +AC_CHECK_HEADER(expat.h, , AC_MSG_ERROR([*** eXpat header file not found!])) +AC_CHECK_LIB(expat, XML_ParserCreate, , AC_MSG_ERROR([*** eXpat library not found!])) + +dnl ====================== dnl Check for getopt dnl ====================== AC_HAVE_HEADERS(getopt.h) |