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

[mesos] branch master updated (1a4516a -> b52e1e0)

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

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


    from 1a4516a  Fixed the URI fetcher image fetch test failure on windows.
     new 3f0daaa  Fixed detection of ELFIO header in Stout.
     new 638ce96  Fixed detection of ELFIO header in libprocess.
     new b52e1e0  Fixed detection of ELFIO header.

The 3 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 3rdparty/libprocess/configure.ac | 2 +-
 3rdparty/stout/configure.ac      | 2 +-
 configure.ac                     | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)


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

Posted by be...@apache.org.
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


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

Posted by be...@apache.org.
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


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

Posted by be...@apache.org.
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 <ja...@digital-chaos.com>
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