Update to gambit 4.9.1.

This commit is contained in:
juanfra 2018-11-24 22:23:53 +00:00
parent 1b2d68db57
commit 2bbf2b63e2
3 changed files with 4 additions and 42 deletions

View File

@ -1,11 +1,10 @@
# $OpenBSD: Makefile,v 1.32 2018/09/20 21:41:40 juanfra Exp $
# $OpenBSD: Makefile,v 1.33 2018/11/24 22:23:53 juanfra Exp $
COMMENT= complete, efficient and reliable implementation of Scheme
V= 4.9.0
V= 4.9.1
DISTNAME= gambit-v${V:S/./_/g}
PKGNAME= gambit-$V
REVISION= 0
API_V= ${V:R:S/./0/}00${V:E}
SUBST_VARS+= API_V

View File

@ -1,2 +1,2 @@
SHA256 (gambit-v4_9_0.tgz) = F3Yz6VjT0WYUa8wxw1i67wS9ekKP0Kln7uUBGRMXBqU=
SIZE (gambit-v4_9_0.tgz) = 13568114
SHA256 (gambit-v4_9_1.tgz) = UeFyCVfqRLiQ2iNy7xuQmhFo5RmpCv6pOigc6IHqqZM=
SIZE (gambit-v4_9_1.tgz) = 13624618

View File

@ -1,37 +0,0 @@
$OpenBSD: patch-lib_os_io_c,v 1.1 2018/09/20 21:41:40 juanfra Exp $
Index: lib/os_io.c
--- lib/os_io.c.orig
+++ lib/os_io.c
@@ -4139,6 +4139,7 @@ ___SCMOBJ client_ca_path;)
SSL_CTX_set_options (c->tls_ctx,
SSL_OP_NO_TLSv1)));
case 0x301:
+#ifndef LIBRESSL_VERSION_NUMBER
OPENSSL_CHECK_ERROR ((SSL_OP_NO_SSLv3 &
SSL_CTX_set_options (c->tls_ctx,
SSL_OP_NO_SSLv3)));
@@ -4147,6 +4148,7 @@ ___SCMOBJ client_ca_path;)
SSL_CTX_set_options (c->tls_ctx,
SSL_OP_NO_SSLv2)));
case 0x200:
+#endif
break;
default:
return ___FIX(___TLS_WRONG_TLS_VERSION_ERR);
@@ -4365,6 +4367,7 @@ ___SCMOBJ client_ca_path;)
SSL_CTX_set_options (c->tls_ctx,
SSL_OP_NO_TLSv1)));
case 0x301:
+#ifndef LIBRESSL_VERSION_NUMBER
OPENSSL_CHECK_ERROR ((SSL_OP_NO_SSLv3 &
SSL_CTX_set_options (c->tls_ctx,
SSL_OP_NO_SSLv3)));
@@ -4373,6 +4376,7 @@ ___SCMOBJ client_ca_path;)
SSL_CTX_set_options (c->tls_ctx,
SSL_OP_NO_SSLv2)));
case 0x200:
+#endif
break;
default:
___release_rc_tls_context (c);