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:23 UTC

[mesos] 02/03: Fixed detection of ELFIO header in libprocess.

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

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

diff --git a/3rdparty/libprocess/configure.ac b/3rdparty/libprocess/configure.ac
index 177cbf6..6652c08 100644
--- a/3rdparty/libprocess/configure.ac
+++ b/3rdparty/libprocess/configure.ac
@@ -599,7 +599,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