Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 31 May 2019 10:27:54 +0000 (UTC)
From:      Sunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r503135 - in head/ftp/curl: . files
Message-ID:  <201905311027.x4VARseD030838@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: sunpoet
Date: Fri May 31 10:27:54 2019
New Revision: 503135
URL: https://svnweb.freebsd.org/changeset/ports/503135

Log:
  Fix runtime with OpenSSL without MD4
  
  - Bump PORTREVISION for package change
  
  Obtained from:	https://github.com/curl/curl/commit/0dc9a8019962d31787c4929d36de6817ae3090e7

Added:
  head/ftp/curl/files/patch-lib-md4.c   (contents, props changed)
Modified:
  head/ftp/curl/Makefile

Modified: head/ftp/curl/Makefile
==============================================================================
--- head/ftp/curl/Makefile	Fri May 31 10:07:08 2019	(r503134)
+++ head/ftp/curl/Makefile	Fri May 31 10:27:54 2019	(r503135)
@@ -3,7 +3,7 @@
 
 PORTNAME=	curl
 PORTVERSION=	7.65.0
-PORTREVISION=	2
+PORTREVISION=	3
 CATEGORIES=	ftp net www
 MASTER_SITES=	https://curl.haxx.se/download/ \
 		LOCAL/sunpoet

Added: head/ftp/curl/files/patch-lib-md4.c
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/ftp/curl/files/patch-lib-md4.c	Fri May 31 10:27:54 2019	(r503135)
@@ -0,0 +1,15 @@
+Obtained from:	https://github.com/curl/curl/commit/0dc9a8019962d31787c4929d36de6817ae3090e7
+
+--- lib/md4.c.orig	2019-05-20 08:13:23 UTC
++++ lib/md4.c
+@@ -38,6 +38,10 @@
+ 
+ #include "curl_setup.h"
+ 
++#ifdef USE_OPENSSL
++#include <openssl/opensslconf.h>
++#endif
++
+ /* The NSS, OS/400, and when not included, OpenSSL and mbed TLS crypto
+  * libraries do not provide the MD4 hash algorithm, so we use this
+  * implementation of it */



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201905311027.x4VARseD030838>