Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 9 Oct 2014 15:24:44 +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: r370549 - in head/ftp/curl: . files
Message-ID:  <201410091524.s99FOi6X042158@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: sunpoet
Date: Thu Oct  9 15:24:43 2014
New Revision: 370549
URL: https://svnweb.freebsd.org/changeset/ports/370549
QAT: https://qat.redports.org/buildarchive/r370549/

Log:
  - Fix threaded-resolver
  - Bump PORTREVISION for package change
  
  PR:		ports/193972
  Submitted by:	bsduser <local@o2.pl>, mickael.maillot@gmail.com
  Obtained by:	https://github.com/bagder/curl/commit/d9762a7cdb35e70f8cb0bf1c2f8019e8391616e1

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

Modified: head/ftp/curl/Makefile
==============================================================================
--- head/ftp/curl/Makefile	Thu Oct  9 15:24:39 2014	(r370548)
+++ head/ftp/curl/Makefile	Thu Oct  9 15:24:43 2014	(r370549)
@@ -3,7 +3,7 @@
 
 PORTNAME=	curl
 PORTVERSION=	7.38.0
-PORTREVISION=	1
+PORTREVISION=	2
 CATEGORIES=	ftp www
 MASTER_SITES=	http://curl.haxx.se/download/ \
 		LOCAL/sunpoet

Added: head/ftp/curl/files/patch-lib-asyn-thread.c
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/ftp/curl/files/patch-lib-asyn-thread.c	Thu Oct  9 15:24:43 2014	(r370549)
@@ -0,0 +1,11 @@
+--- lib/asyn-thread.c.orig	2014-09-08 05:15:44.000000000 +0800
++++ lib/asyn-thread.c	2014-10-09 08:28:38.036235206 +0800
+@@ -541,7 +541,7 @@
+       td->poll_interval = 250;
+ 
+     td->interval_end = elapsed + td->poll_interval;
+-    Curl_expire_latest(conn->data, td->poll_interval);
++    Curl_expire(conn->data, td->poll_interval);
+   }
+ 
+   return CURLE_OK;



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