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

kou pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/arrow.git


The following commit(s) were added to refs/heads/master by this push:
     new 3147bf1  ARROW-3216: [C++] Add missing libpython link to 
libarrow_python in MinGW build
3147bf1 is described below

commit 3147bf131f168e3840875ced1fb1a3b978f2013e
Author: Kouhei Sutou <[email protected]>
AuthorDate: Tue Sep 11 15:24:20 2018 +0900

    ARROW-3216: [C++] Add missing libpython link to libarrow_python in MinGW 
build
    
    Author: Kouhei Sutou <[email protected]>
    
    Closes #2541 from kou/cpp-add-missing-libpython-link-with-mingw and 
squashes the following commits:
    
    97c9581f <Kouhei Sutou>  Add missing libpython link to libarrow_python in 
MinGW build
---
 cpp/src/arrow/python/CMakeLists.txt | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/cpp/src/arrow/python/CMakeLists.txt 
b/cpp/src/arrow/python/CMakeLists.txt
index 798217d..59c6a0b 100644
--- a/cpp/src/arrow/python/CMakeLists.txt
+++ b/cpp/src/arrow/python/CMakeLists.txt
@@ -54,7 +54,7 @@ set(ARROW_PYTHON_SHARED_LINK_LIBS
   ${PYTHON_OTHER_LIBS}
 )
 
-if (MSVC)
+if (WIN32)
   set(ARROW_PYTHON_SHARED_LINK_LIBS
     ${ARROW_PYTHON_SHARED_LINK_LIBS}
     ${PYTHON_LIBRARIES}

Reply via email to