You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by ko...@apache.org on 2019/08/15 01:24:17 UTC

[arrow] branch master updated: ARROW-5307: [CI][GLib] Enable GTK-Doc

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 a2828a0  ARROW-5307: [CI][GLib] Enable GTK-Doc
a2828a0 is described below

commit a2828a021e72820beb92a2512936987d9f4c5645
Author: Yosuke Shiro <yo...@gmail.com>
AuthorDate: Thu Aug 15 10:23:59 2019 +0900

    ARROW-5307: [CI][GLib] Enable GTK-Doc
    
    > Enable GTK-Doc when 1.31 is released.
    >See https://issues.apache.org/jira/browse/ARROW-5306.
    
    GTK-Doc 1.31 was released.
    
    Closes #5087 from shiro615/enable-gtk-doc and squashes the following commits:
    
    d0b7c3744 <Yosuke Shiro>  Enable GTK-Doc
    
    Authored-by: Yosuke Shiro <yo...@gmail.com>
    Signed-off-by: Sutou Kouhei <ko...@clear-code.com>
---
 ci/travis_before_script_c_glib.sh | 6 ++----
 1 file changed, 2 insertions(+), 4 deletions(-)

diff --git a/ci/travis_before_script_c_glib.sh b/ci/travis_before_script_c_glib.sh
index fefae2d..ee3668d 100755
--- a/ci/travis_before_script_c_glib.sh
+++ b/ci/travis_before_script_c_glib.sh
@@ -53,8 +53,7 @@ export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$ARROW_CPP_INSTALL/lib
 # Build with GNU Autotools
 ./autogen.sh
 CONFIGURE_OPTIONS="--prefix=$ARROW_C_GLIB_INSTALL_AUTOTOOLS"
-# TODO(ARROW-5307): Enable this
-# CONFIGURE_OPTIONS="$CONFIGURE_OPTIONS --enable-gtk-doc"
+CONFIGURE_OPTIONS="$CONFIGURE_OPTIONS --enable-gtk-doc"
 CONFIGURE_OPTIONS="$CONFIGURE_OPTIONS CFLAGS=-DARROW_NO_DEPRECATED_API"
 CONFIGURE_OPTIONS="$CONFIGURE_OPTIONS CXXFLAGS=-DARROW_NO_DEPRECATED_API"
 mkdir -p build
@@ -67,8 +66,7 @@ rm -rf build
 
 # Build with Meson
 MESON_OPTIONS="--prefix=$ARROW_C_GLIB_INSTALL_MESON"
-# TODO(ARROW-5307): Enable this
-# MESON_OPTIONS="$MESON_OPTIONS -Dgtk_doc=true"
+MESON_OPTIONS="$MESON_OPTIONS -Dgtk_doc=true"
 mkdir -p build
 env \
   CFLAGS="-DARROW_NO_DEPRECATED_API" \