Repository: arrow Updated Branches: refs/heads/master ce5b98e1d -> 4d2ac871c
ARROW-826: [C++/Python] Fix compilation error on Mac with -DARROW_PYTHON=on This fixes https://github.com/ray-project/ray/issues/461 Author: Philipp Moritz <pcmor...@gmail.com> Closes #544 from pcmoritz/fix-python-macos and squashes the following commits: cf59732 [Philipp Moritz] include <iostream> before <Python.h> Project: http://git-wip-us.apache.org/repos/asf/arrow/repo Commit: http://git-wip-us.apache.org/repos/asf/arrow/commit/4d2ac871 Tree: http://git-wip-us.apache.org/repos/asf/arrow/tree/4d2ac871 Diff: http://git-wip-us.apache.org/repos/asf/arrow/diff/4d2ac871 Branch: refs/heads/master Commit: 4d2ac871c9126ba431ebb193ea19bd5eb7ef8ab3 Parents: ce5b98e Author: Philipp Moritz <pcmor...@gmail.com> Authored: Sat Apr 15 09:35:41 2017 -0400 Committer: Wes McKinney <wes.mckin...@twosigma.com> Committed: Sat Apr 15 09:35:41 2017 -0400 ---------------------------------------------------------------------- cpp/src/arrow/python/config.h | 1 + 1 file changed, 1 insertion(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/arrow/blob/4d2ac871/cpp/src/arrow/python/config.h ---------------------------------------------------------------------- diff --git a/cpp/src/arrow/python/config.h b/cpp/src/arrow/python/config.h index dd554e0..c132726 100644 --- a/cpp/src/arrow/python/config.h +++ b/cpp/src/arrow/python/config.h @@ -18,6 +18,7 @@ #ifndef ARROW_PYTHON_CONFIG_H #define ARROW_PYTHON_CONFIG_H +#include <iostream> #include <Python.h> #include "arrow/python/numpy_interop.h"