This is an automated email from the ASF dual-hosted git repository.

bennoe pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/mesos.git

commit b52e1e003fa37f9b8eb9f774a15186c0a1c33f5b
Author: James Wright <[email protected]>
AuthorDate: Fri Apr 12 13:46:05 2019 +0200

    Fixed detection of ELFIO header.
    
    Build fails to detect system provided ELFIO headers when using `configure 
--with-elfio` flag. Basically this is the same fix as the patch
    provided here: https://issues.apache.org/jira/browse/MESOS-6605
    
    This closes #332
---
 configure.ac | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/configure.ac b/configure.ac
index 459713a..e5afde4 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1027,7 +1027,7 @@ if test "x$without_bundled_elfio" = "xyes" || \
      CPPFLAGS="-I${with_elfio} $CPPFLAGS"
   fi
 
-  AC_CHECK_HEADERS([elfio/elfio.h], [],
+  AC_CHECK_HEADERS([elfio/elfio.hpp], [],
                    [AC_MSG_ERROR([Cannot find the ELFIO headers
 -------------------------------------------------------------------
 You have requested the use of a non-bundled ELFIO but no suitable

Reply via email to