You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hawq.apache.org by hu...@apache.org on 2019/03/14 02:40:38 UTC

[hawq] 01/01: HAWQ-1677. Disable orc compilation until it is available

This is an automated email from the ASF dual-hosted git repository.

huor pushed a commit to branch huor
in repository https://gitbox.apache.org/repos/asf/hawq.git

commit c9acd2094c1c72bab690eacac4362953c8cc8b54
Author: Ruilong Huo <hu...@163.com>
AuthorDate: Sat Mar 9 18:01:43 2019 +0800

    HAWQ-1677. 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)