You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mesos.apache.org by ka...@apache.org on 2017/09/15 18:42:41 UTC

mesos git commit: Replaced xlocale.h with locale.h.

Repository: mesos
Updated Branches:
  refs/heads/master bfadcdebc -> 95406868a


Replaced xlocale.h with locale.h.

As of glibc 2.26, xlocale.h has been removed as this was never supposed
to be used directly by user programs. They should be including locale.h
instead.

Review: https://reviews.apache.org/r/62358


Project: http://git-wip-us.apache.org/repos/asf/mesos/repo
Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/95406868
Tree: http://git-wip-us.apache.org/repos/asf/mesos/tree/95406868
Diff: http://git-wip-us.apache.org/repos/asf/mesos/diff/95406868

Branch: refs/heads/master
Commit: 95406868a5fde47770fe9de1105ce193b359c28a
Parents: bfadcde
Author: Kapil Arya <ka...@mesosphere.io>
Authored: Fri Sep 15 13:47:46 2017 -0400
Committer: Kapil Arya <ka...@mesosphere.io>
Committed: Fri Sep 15 14:42:20 2017 -0400

----------------------------------------------------------------------
 3rdparty/stout/include/stout/jsonify.hpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/mesos/blob/95406868/3rdparty/stout/include/stout/jsonify.hpp
----------------------------------------------------------------------
diff --git a/3rdparty/stout/include/stout/jsonify.hpp b/3rdparty/stout/include/stout/jsonify.hpp
index 06b18e2..2314980 100644
--- a/3rdparty/stout/include/stout/jsonify.hpp
+++ b/3rdparty/stout/include/stout/jsonify.hpp
@@ -14,7 +14,7 @@
 #define __STOUT_JSONIFY__
 
 #ifndef __WINDOWS__
-#include <xlocale.h>
+#include <locale.h>
 #endif // __WINDOWS__
 
 #include <clocale>