You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mesos.apache.org by be...@apache.org on 2019/04/12 11:48:22 UTC

[mesos] 01/03: Fixed detection of ELFIO header in Stout.

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 3f0daaab3d3d716944c956d2a383f116a49846a8
Author: James Wright <ja...@digital-chaos.com>
AuthorDate: Fri Apr 12 13:45:13 2019 +0200

    Fixed detection of ELFIO header in Stout.
    
    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
---
 3rdparty/stout/configure.ac | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/3rdparty/stout/configure.ac b/3rdparty/stout/configure.ac
index c996867..eae7b29 100644
--- a/3rdparty/stout/configure.ac
+++ b/3rdparty/stout/configure.ac
@@ -338,7 +338,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