This is an automated email from the ASF dual-hosted git repository. huor pushed a commit to branch huor_orc in repository https://gitbox.apache.org/repos/asf/hawq.git
commit eeb7f17195b50940eb41498abca53cc9a3d93ea3 Author: Ruilong Huo <[email protected]> AuthorDate: Sat Mar 9 18:01:43 2019 +0800 Disable orc compilation until it is available --- configure | 2 +- configure.in | 2 +- contrib/Makefile | 6 +++--- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/configure b/configure index de64b1b..2a442c4 100755 --- a/configure +++ b/configure @@ -5861,7 +5861,7 @@ if test "${with_orc+set}" = set; then : esac else - with_orc=yes + with_orc=no fi diff --git a/configure.in b/configure.in index 7d1825c..10024e4 100644 --- a/configure.in +++ b/configure.in @@ -726,7 +726,7 @@ AC_SUBST(with_pgcrypto) # Optionally build with orc format in pluggable storage framework. # AC_MSG_CHECKING([whether to build orc modules]) -PGAC_ARG_BOOL(with, orc, yes, [ --with-orc build with orc format]) +PGAC_ARG_BOOL(with, orc, no, [ --with-orc build with orc format]) AC_MSG_RESULT([$with_orc]) AC_SUBST(with_orc) # diff --git a/contrib/Makefile b/contrib/Makefile index a5c87d4..8915506 100644 --- a/contrib/Makefile +++ b/contrib/Makefile @@ -16,9 +16,9 @@ ifeq ($(with_pgcrypto), yes) WANTED_DIRS += pgcrypto endif -ifeq ($(with_orc), yes) -WANTED_DIRS += orc -endif +# ifeq ($(with_orc), yes) +# WANTED_DIRS += orc +# endif # Missing: # start-scripts \ (does not have a makefile)
