You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by we...@apache.org on 2016/03/22 00:34:18 UTC

arrow git commit: ARROW-72: Search for alternative parquet-cpp header

Repository: arrow
Updated Branches:
  refs/heads/master 3a99f39d6 -> 016b92bcc


ARROW-72: Search for alternative parquet-cpp header

Author: Uwe L. Korn <uw...@xhochy.com>

Closes #30 from xhochy/arrow-72 and squashes the following commits:

5b6b328 [Uwe L. Korn] ARROW-72: Search for alternative parquet-cpp header


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

Branch: refs/heads/master
Commit: 016b92bccf60de480da07acbabe876fb695c45e5
Parents: 3a99f39
Author: Uwe L. Korn <uw...@xhochy.com>
Authored: Mon Mar 21 16:34:07 2016 -0700
Committer: Wes McKinney <we...@apache.org>
Committed: Mon Mar 21 16:34:07 2016 -0700

----------------------------------------------------------------------
 cpp/cmake_modules/FindParquet.cmake | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/arrow/blob/016b92bc/cpp/cmake_modules/FindParquet.cmake
----------------------------------------------------------------------
diff --git a/cpp/cmake_modules/FindParquet.cmake b/cpp/cmake_modules/FindParquet.cmake
index d16e6c9..e3350d6 100644
--- a/cpp/cmake_modules/FindParquet.cmake
+++ b/cpp/cmake_modules/FindParquet.cmake
@@ -29,14 +29,14 @@ endif()
 
 # Try the parameterized roots, if they exist
 if ( _parquet_roots )
-    find_path( PARQUET_INCLUDE_DIR NAMES parquet/parquet.h
+    find_path( PARQUET_INCLUDE_DIR NAMES parquet/api/reader.h
         PATHS ${_parquet_roots} NO_DEFAULT_PATH
         PATH_SUFFIXES "include" )
     find_library( PARQUET_LIBRARIES NAMES parquet
         PATHS ${_parquet_roots} NO_DEFAULT_PATH
         PATH_SUFFIXES "lib" )
 else ()
-    find_path( PARQUET_INCLUDE_DIR NAMES parquet/parquet.h )
+    find_path( PARQUET_INCLUDE_DIR NAMES parquet/api/reader.h )
     find_library( PARQUET_LIBRARIES NAMES parquet )
 endif ()