37 lines
1.1 KiB
Diff
37 lines
1.1 KiB
Diff
|
From a6ba26dca8dd496bec71d65746b3c3b65e604f03 Mon Sep 17 00:00:00 2001
|
||
|
From: "Richard W.M. Jones" <rjones@redhat.com>
|
||
|
Date: Mon, 24 Oct 2011 18:15:48 +0100
|
||
|
Subject: [PATCH] Fix conditional test for HAVE_HIVEXSH.
|
||
|
|
||
|
This fixes commit 0a28041f4156878a74543966f9a72ed3d214ba44.
|
||
|
---
|
||
|
configure.ac | 5 +++--
|
||
|
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
|
||
|
--
|
||
|
1.7.6
|
||
|
|