summaryrefslogtreecommitdiff
path: root/databases/pgpool-II-33/files/patch-wd__packet.c
diff options
context:
space:
mode:
authorRene Ladan <rene@FreeBSD.org>2018-08-02 11:54:36 +0000
committerRene Ladan <rene@FreeBSD.org>2018-08-02 11:54:36 +0000
commit3f09c8cde1b2b74ec500335fb6aa87436eec722a (patch)
treef8beea525d5f6ef6552deb990b4ef7463afccf3f /databases/pgpool-II-33/files/patch-wd__packet.c
parentUnbreak `math/orpie' against OCaml 4.05.0 and make it fetchable (diff)
Remove expired ports:
2018-07-31 net/rubygem-gitaly-proto096: Obsoleted by update of www/gitlab-ce. Please use net/rubygem-gitaly-proto instead. 2018-07-31 security/tripwire12: unfetchable 2018-07-31 security/rubygem-rbnacl4: Obsoleted by update of www/gitlab-ce. Please use security/rubygem-rbnacl instead. 2018-07-31 www/rubygem-gon61: Obsoleted by update of www/gitlab-ce. Please use www/rubygem-gon instead. 2018-07-31 databases/pgpool-II-33: Will be deprecated by upstream, please switch to newer pgpool versions 2018-07-31 devel/rubygem-grape-entity060: Obsoleted by update of www/gitlab-ce. Please use devel/rubygem-grape-entity instead. 2018-07-31 net/rubygem-gitaly-proto099: Obsoleted by update of www/gitlab-ce. Please use net/rubygem-gitaly-proto instead. 2018-07-31 net/rubygem-gitaly-proto095: Obsoleted by update of www/gitlab-ce. Please use net/rubygem-gitaly-proto instead. 2018-07-31 net/rubygem-omniauth-github11: Obsoleted by update of www/gitlab-ce. Please use net/rubygem-omniauth-github instead. 2018-07-31 net/rubygem-asset_sync220: Obsoleted by update of www/gitlab-ce. Please use net/rubygem-asset_sync instead. 2018-07-31 www/rubygem-gollum-lib-gitlab: Obsoleted by update of www/gitlab-ce. Please use www/rubygem-gitlab-gollum-lib instead. 2018-08-01 www/py-django-threaded-multihost: Project development unmaintained 2018-08-01 www/py-django-keyedcache: Project development abandoned 2018-08-01 www/py-django-signals-ahoy: Project development unmaintained
Diffstat (limited to 'databases/pgpool-II-33/files/patch-wd__packet.c')
-rw-r--r--databases/pgpool-II-33/files/patch-wd__packet.c20
1 files changed, 0 insertions, 20 deletions
diff --git a/databases/pgpool-II-33/files/patch-wd__packet.c b/databases/pgpool-II-33/files/patch-wd__packet.c
deleted file mode 100644
index a4a071ea1561..000000000000
--- a/databases/pgpool-II-33/files/patch-wd__packet.c
+++ /dev/null
@@ -1,20 +0,0 @@
---- watchdog/wd_packet.c.orig 2018-02-22 00:06:40 UTC
-+++ watchdog/wd_packet.c
-@@ -1211,7 +1211,7 @@ static void calculate_hmac_sha256(const
- unsigned int res_len = WD_AUTH_HASH_LEN;
- HMAC_CTX *ctx = NULL;
-
--#if (OPENSSL_VERSION_NUMBER >= 0x10100000L)
-+#if (OPENSSL_VERSION_NUMBER >= 0x10100000L) && !defined(LIBRESSL_VERSION_NUMBER)
- ctx = HMAC_CTX_new();
- HMAC_CTX_reset(ctx);
- #else
-@@ -1222,7 +1222,7 @@ static void calculate_hmac_sha256(const
- HMAC_Init_ex(ctx, key, strlen(key), EVP_sha256(), NULL);
- HMAC_Update(ctx, (unsigned char*)data, len);
- HMAC_Final(ctx, (unsigned char*)str, &res_len);
--#if (OPENSSL_VERSION_NUMBER >= 0x10100000L)
-+#if (OPENSSL_VERSION_NUMBER >= 0x10100000L) && !defined(LIBRESSL_VERSION_NUMBER)
- HMAC_CTX_reset(ctx);
- HMAC_CTX_free(ctx);
- #else