Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id E58CD200C57 for ; Sat, 15 Apr 2017 15:35:49 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id E4014160BA0; Sat, 15 Apr 2017 13:35:49 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id 5DA8A160B9D for ; Sat, 15 Apr 2017 15:35:49 +0200 (CEST) Received: (qmail 70992 invoked by uid 500); 15 Apr 2017 13:35:48 -0000 Mailing-List: contact commits-help@arrow.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@arrow.apache.org Delivered-To: mailing list commits@arrow.apache.org Received: (qmail 70983 invoked by uid 99); 15 Apr 2017 13:35:47 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 15 Apr 2017 13:35:47 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 58884DFCA1; Sat, 15 Apr 2017 13:35:47 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: wesm@apache.org To: commits@arrow.apache.org Message-Id: <342335b0a74c418ab2c31402258e753c@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: arrow git commit: ARROW-826: [C++/Python] Fix compilation error on Mac with -DARROW_PYTHON=on Date: Sat, 15 Apr 2017 13:35:47 +0000 (UTC) archived-at: Sat, 15 Apr 2017 13:35:50 -0000 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 Closes #544 from pcmoritz/fix-python-macos and squashes the following commits: cf59732 [Philipp Moritz] include before 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 Authored: Sat Apr 15 09:35:41 2017 -0400 Committer: Wes McKinney 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 #include #include "arrow/python/numpy_interop.h"