summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard W.M. Jones <rjones@redhat.com>2011-10-24 18:15:48 +0100
committerRichard W.M. Jones <rjones@redhat.com>2011-10-24 18:15:48 +0100
commita6ba26dca8dd496bec71d65746b3c3b65e604f03 (patch)
tree8f344825d80c764fd142aa23fbf964d0ed037283
parent168c413ade875efb1cd9bfbaf39797fc9b967ab7 (diff)
downloadhivex-a6ba26dca8dd496bec71d65746b3c3b65e604f03.tar.gz
hivex-a6ba26dca8dd496bec71d65746b3c3b65e604f03.tar.xz
hivex-a6ba26dca8dd496bec71d65746b3c3b65e604f03.zip
Fix conditional test for HAVE_HIVEXSH.
This fixes commit 0a28041f4156878a74543966f9a72ed3d214ba44.
-rw-r--r--configure.ac5
1 files changed, 3 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac
index 617ec50..547bf0a 100644
--- a/configure.ac
+++ b/configure.ac
@@ -137,7 +137,7 @@ dnl Check for mmap
AC_REPLACE_FUNCS([mmap])
dnl Functions.
-AC_CHECK_FUNCS([bindtextdomain open_memstream])
+AC_CHECK_FUNCS([bindtextdomain])
dnl Check for pod2man and pod2text.
AC_CHECK_PROG([POD2MAN],[pod2man],[pod2man],[no])
@@ -177,7 +177,8 @@ AC_SUBST([LIBXML2_CFLAGS])
AC_SUBST([LIBXML2_LIBS])
dnl hivexsh depends on open_memstream, which is absent on OS X.
-AM_CONDITIONAL([HAVE_HIVEXSH],[test "x$HAVE_OPEN_MEMSTREAM" = "xyes"])
+AC_CHECK_FUNC([open_memstream])
+AM_CONDITIONAL([HAVE_HIVEXSH],[test "x$ac_cv_func_open_memstream" = "xyes"])
dnl Check for OCaml (optional, for OCaml bindings).
AC_PROG_OCAML