This is an automated email from the ASF dual-hosted git repository.
wesm 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 b74cc65 ARROW-4592: [GLib] Stop configure immediately when GLib isn't
available
b74cc65 is described below
commit b74cc6547ad07e91351f29e7b0fa84c7d6b81e09
Author: Kouhei Sutou <[email protected]>
AuthorDate: Sat Feb 16 17:48:08 2019 -0600
ARROW-4592: [GLib] Stop configure immediately when GLib isn't available
Author: Kouhei Sutou <[email protected]>
Closes #3665 from kou/glib-exit-on-error and squashes the following commits:
d8bc0731b <Kouhei Sutou> Stop configure immediately when GLib isn't
available
---
c_glib/configure.ac | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/c_glib/configure.ac b/c_glib/configure.ac
index 75654d2..3e3e328 100644
--- a/c_glib/configure.ac
+++ b/c_glib/configure.ac
@@ -99,7 +99,10 @@ fi
AC_SUBST(GARROW_CFLAGS)
AC_SUBST(GARROW_CXXFLAGS)
-AM_PATH_GLIB_2_0([2.32.4], [], [], [gobject gio])
+AM_PATH_GLIB_2_0([2.32.4],
+ [],
+ [AC_MSG_ERROR(GLib isn't available)],
+ [gobject gio])
GOBJECT_INTROSPECTION_REQUIRE([1.32.1])
GTK_DOC_CHECK([1.18-2])