summaryrefslogtreecommitdiff
path: root/databases/couchdb/files/patch-configure
diff options
context:
space:
mode:
authorDave Cottlehuber <dch@FreeBSD.org>2017-11-08 10:48:36 +0000
committerDave Cottlehuber <dch@FreeBSD.org>2017-11-08 10:48:36 +0000
commit18b53496c2eed02c9c78f64bfd09a783fd1fe8f6 (patch)
treeb4a792e97310e958c3aee90a59aa88ae74495bff /databases/couchdb/files/patch-configure
parentdevel/lfcbase: update 1.10.3 -> 1.11.0 (diff)
databases/couchdb: 1.7.0 incl critical security fixes
See https://blog.couchdb.org/2017/11/07/2-1-1-1-7-0/ for details; CVE notifications will land 2017-11-14 Reviewed by: olgeni (maintainer) Approved by: jrm (mentor) Sponsored by: https://iwantmyname.com/ Differential Revision: https://reviews.freebsd.org/D12991
Notes
Notes: svn path=/head/; revision=453729
Diffstat (limited to 'databases/couchdb/files/patch-configure')
-rw-r--r--databases/couchdb/files/patch-configure38
1 files changed, 0 insertions, 38 deletions
diff --git a/databases/couchdb/files/patch-configure b/databases/couchdb/files/patch-configure
deleted file mode 100644
index 2e5f7d2f1ba0..000000000000
--- a/databases/couchdb/files/patch-configure
+++ /dev/null
@@ -1,38 +0,0 @@
---- configure.orig 2015-06-26 09:25:19 UTC
-+++ configure
-@@ -18532,7 +18532,7 @@ esac
-
- { $as_echo "$as_me:${as_lineno-$LINENO}: checking Erlang version compatibility" >&5
- $as_echo_n "checking Erlang version compatibility... " >&6; }
--erlang_version_error="The installed Erlang version must be >= R14B (erts-5.8.1) and =< 17 (erts-6.0)"
-+erlang_version_error="The installed Erlang version must be >= R14B (erts-5.8.1) and =< 20 (erts-9.0)"
-
- version="`${ERL} -version 2>&1 | ${SED} 's/[^0-9]/ /g'` 0 0 0"
- major_version=`echo $version | ${AWK} "{print \\$1}"`
-@@ -18540,7 +18540,7 @@ minor_version=`echo $version | ${AWK} "{
- patch_version=`echo $version | ${AWK} "{print \\$3}"`
- echo -n "detected Erlang version: $major_version.$minor_version.$patch_version..."
-
--if test $major_version -lt 5 -o $major_version -gt 6; then
-+if test $major_version -lt 5 -o $major_version -gt 9; then
- as_fn_error $? "$erlang_version_error major_version does not match" "$LINENO" 5
- fi
-
-@@ -18559,7 +18559,7 @@ otp_release="`\
-
-
-
-- if can_use_nifs=$(echo $otp_release | grep -E "^(R14B|R15|R16|17)"); then
-+ if can_use_nifs=$(echo $otp_release | grep -E "^(R14B|R15|R16|17|18|19|20)"); then
- USE_OTP_NIFS_TRUE=
- USE_OTP_NIFS_FALSE='#'
- else
-@@ -18567,7 +18567,7 @@ else
- USE_OTP_NIFS_FALSE=
- fi
-
-- if can_use_ejson=$(echo $otp_release | grep -E "^(R14B03|R15|R16|17)"); then
-+ if can_use_ejson=$(echo $otp_release | grep -E "^(R14B03|R15|R16|17|18|19|20)"); then
- USE_EJSON_COMPARE_NIF_TRUE=
- USE_EJSON_COMPARE_NIF_FALSE='#'
- else