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 98443200C46 for ; Wed, 29 Mar 2017 21:03:28 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id 96A74160B8A; Wed, 29 Mar 2017 19:03:28 +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 DCAD9160B5D for ; Wed, 29 Mar 2017 21:03:27 +0200 (CEST) Received: (qmail 15022 invoked by uid 500); 29 Mar 2017 19:03:27 -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 15013 invoked by uid 99); 29 Mar 2017 19:03:27 -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; Wed, 29 Mar 2017 19:03:27 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id E01E1DFDCD; Wed, 29 Mar 2017 19:03:26 +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: X-Mailer: ASF-Git Admin Mailer Subject: arrow git commit: ARROW-731: [C++] Add shared library related versions to .pc Date: Wed, 29 Mar 2017 19:03:26 +0000 (UTC) archived-at: Wed, 29 Mar 2017 19:03:28 -0000 Repository: arrow Updated Branches: refs/heads/master b03236360 -> 8f386374e ARROW-731: [C++] Add shared library related versions to .pc They can be used to find real shared library path in parquet-cpp. See also https://github.com/apache/parquet-cpp/pull/276#issuecomment-289816148 Author: Kouhei Sutou Closes #451 from kou/cpp-add-soversion-to-pc and squashes the following commits: f657a88 [Kouhei Sutou] [C++] Add shared library related versions to .pc Project: http://git-wip-us.apache.org/repos/asf/arrow/repo Commit: http://git-wip-us.apache.org/repos/asf/arrow/commit/8f386374 Tree: http://git-wip-us.apache.org/repos/asf/arrow/tree/8f386374 Diff: http://git-wip-us.apache.org/repos/asf/arrow/diff/8f386374 Branch: refs/heads/master Commit: 8f386374eca26d0eebe562beac52fc75459f352c Parents: b032363 Author: Kouhei Sutou Authored: Wed Mar 29 15:03:20 2017 -0400 Committer: Wes McKinney Committed: Wed Mar 29 15:03:20 2017 -0400 ---------------------------------------------------------------------- cpp/src/arrow/arrow.pc.in | 3 +++ cpp/src/arrow/io/arrow-io.pc.in | 3 +++ cpp/src/arrow/ipc/arrow-ipc.pc.in | 3 +++ cpp/src/arrow/jemalloc/arrow-jemalloc.pc.in | 3 +++ 4 files changed, 12 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/arrow/blob/8f386374/cpp/src/arrow/arrow.pc.in ---------------------------------------------------------------------- diff --git a/cpp/src/arrow/arrow.pc.in b/cpp/src/arrow/arrow.pc.in index 1c3f65d..0debee3 100644 --- a/cpp/src/arrow/arrow.pc.in +++ b/cpp/src/arrow/arrow.pc.in @@ -19,6 +19,9 @@ prefix=@CMAKE_INSTALL_PREFIX@ libdir=${prefix}/@CMAKE_INSTALL_LIBDIR@ includedir=${prefix}/include +so_version=@ARROW_SO_VERSION@ +abi_version=@ARROW_ABI_VERSION@ + Name: Apache Arrow Description: Arrow is a set of technologies that enable big-data systems to process and move data fast. Version: @ARROW_VERSION@ http://git-wip-us.apache.org/repos/asf/arrow/blob/8f386374/cpp/src/arrow/io/arrow-io.pc.in ---------------------------------------------------------------------- diff --git a/cpp/src/arrow/io/arrow-io.pc.in b/cpp/src/arrow/io/arrow-io.pc.in index af28aae..61af357 100644 --- a/cpp/src/arrow/io/arrow-io.pc.in +++ b/cpp/src/arrow/io/arrow-io.pc.in @@ -19,6 +19,9 @@ prefix=@CMAKE_INSTALL_PREFIX@ libdir=${prefix}/@CMAKE_INSTALL_LIBDIR@ includedir=${prefix}/include +so_version=@ARROW_SO_VERSION@ +abi_version=@ARROW_ABI_VERSION@ + Name: Apache Arrow I/O Description: I/O interface for Arrow. Version: @ARROW_VERSION@ http://git-wip-us.apache.org/repos/asf/arrow/blob/8f386374/cpp/src/arrow/ipc/arrow-ipc.pc.in ---------------------------------------------------------------------- diff --git a/cpp/src/arrow/ipc/arrow-ipc.pc.in b/cpp/src/arrow/ipc/arrow-ipc.pc.in index cbc226a..29a942a 100644 --- a/cpp/src/arrow/ipc/arrow-ipc.pc.in +++ b/cpp/src/arrow/ipc/arrow-ipc.pc.in @@ -19,6 +19,9 @@ prefix=@CMAKE_INSTALL_PREFIX@ libdir=${prefix}/@CMAKE_INSTALL_LIBDIR@ includedir=${prefix}/include +so_version=@ARROW_SO_VERSION@ +abi_version=@ARROW_ABI_VERSION@ + Name: Apache Arrow IPC Description: IPC extension for Arrow. Version: @ARROW_VERSION@ http://git-wip-us.apache.org/repos/asf/arrow/blob/8f386374/cpp/src/arrow/jemalloc/arrow-jemalloc.pc.in ---------------------------------------------------------------------- diff --git a/cpp/src/arrow/jemalloc/arrow-jemalloc.pc.in b/cpp/src/arrow/jemalloc/arrow-jemalloc.pc.in index 18085aa..8e946d1 100644 --- a/cpp/src/arrow/jemalloc/arrow-jemalloc.pc.in +++ b/cpp/src/arrow/jemalloc/arrow-jemalloc.pc.in @@ -19,6 +19,9 @@ prefix=@CMAKE_INSTALL_PREFIX@ libdir=${prefix}/@CMAKE_INSTALL_LIBDIR@ includedir=${prefix}/include +so_version=@ARROW_SO_VERSION@ +abi_version=@ARROW_ABI_VERSION@ + Name: Apache Arrow jemalloc-based allocator Description: jemalloc allocator for Arrow. Version: @ARROW_VERSION@