aboutsummaryrefslogtreecommitdiffstats
path: root/testing/x11vnc/libressl.patch
diff options
context:
space:
mode:
Diffstat (limited to 'testing/x11vnc/libressl.patch')
-rw-r--r--testing/x11vnc/libressl.patch15
1 files changed, 15 insertions, 0 deletions
diff --git a/testing/x11vnc/libressl.patch b/testing/x11vnc/libressl.patch
new file mode 100644
index 0000000000..e650c92d7b
--- /dev/null
+++ b/testing/x11vnc/libressl.patch
@@ -0,0 +1,15 @@
+diff --git a/src/enc.h b/src/enc.h
+index 55d49bb..edf8f6b 100644
+--- a/src/enc.h
++++ b/src/enc.h
+@@ -454,8 +454,10 @@ extern void enc_do(char *ciph, char *keyfile, char *lport, char *rhp) {
+ p++;
+ if (strstr(p, "md5+") == p) {
+ Digest = EVP_md5(); p += strlen("md5+");
++#ifndef OPENSSL_NO_SHA0
+ } else if (strstr(p, "sha+") == p) {
+ Digest = EVP_sha(); p += strlen("sha+");
++#endif
+ } else if (strstr(p, "sha1+") == p) {
+ Digest = EVP_sha1(); p += strlen("sha1+");
+ } else if (strstr(p, "ripe+") == p) {