Repository: arrow
Updated Branches:
  refs/heads/master f9d1e1be7 -> 808a14330


ARROW-1612:[GLib] Update readme for mac os

I tried to build Arrow GLib released source archive on mac os. but build failed.
Accutally, We need to install `gobject-introspection` and set `PKG_CONFIG_PATH 
` before build Arrow Glib.
so, I added some commands to README.md.

Author: m-nakamura145 <masato.nakamura...@gmail.com>

Closes #1134 from m-nakamura145/update_c_glib_readme_for_mac_os and squashes 
the following commits:

3bd886b [m-nakamura145] ARROW-1612:[GLib] Fix PKG_CONFIG_PATH
bbd95d4 [m-nakamura145] ARROW-1612:[GLib] Update readme for mac os


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

Branch: refs/heads/master
Commit: 808a1433005ce5325ba69b1a65d05e1b547eea2c
Parents: f9d1e1b
Author: m-nakamura145 <masato.nakamura...@gmail.com>
Authored: Tue Sep 26 22:21:47 2017 -0400
Committer: Wes McKinney <wes.mckin...@twosigma.com>
Committed: Tue Sep 26 22:21:47 2017 -0400

----------------------------------------------------------------------
 c_glib/README.md | 14 +++++++++++++-
 1 file changed, 13 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/arrow/blob/808a1433/c_glib/README.md
----------------------------------------------------------------------
diff --git a/c_glib/README.md b/c_glib/README.md
index 2a9d5d6..1f67d7e 100644
--- a/c_glib/README.md
+++ b/c_glib/README.md
@@ -71,7 +71,19 @@ GLib (replace the version number in the following commands 
with the one you use)
 You need to build and install Arrow C++ before you build and install
 Arrow GLib. See Arrow C++ document about how to install Arrow C++.
 
-You can build and install Arrow GLib after you install Arrow C++:
+You can build and install Arrow GLib after you install Arrow C++.
+
+If you use macOS with [Homebrew](https://brew.sh/), you must install 
`gobject-introspection` and set `PKG_CONFIG_PATH` before build Arrow GLib:
+
+```text
+% cd c_glib
+% brew install -y gobject-introspection
+% ./configure PKG_CONFIG_PATH=$(brew --prefix 
libffi)/lib/pkgconfig:$PKG_CONFIG_PATH
+% make
+% sudo make install
+```
+
+Others:
 
 ```text
 % cd c_glib

Reply via email to