pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/www/squid3 Changes 3.5.5:



details:   https://anonhg.NetBSD.org/pkgsrc/rev/7f1449a6b31e
branches:  trunk
changeset: 652290:7f1449a6b31e
user:      adam <adam%pkgsrc.org@localhost>
date:      Fri May 29 07:50:59 2015 +0000

description:
Changes 3.5.5:
* Portability: migrate auto_ptr to C++11 unique_ptr
* Portability: Define nullptr if not provided
* Cleanup: sync ModSelect.cc and ModSelectWin32.cc
* Fix segmentation fault inside Adaptation::Icap::Xaction::swanSong
* Fix "Not enough space to hold server hello message" error message
* Bug 4132: regression in short_icon_urls with global_internal_static on
* Prevent unused ssl_crtd helpers being run
* Docs: fix debug output on https_port context failure
* HTTP/2: publish RFC 7540
* Fix incorrect use of errno in various libcomm.la places
* Bug 4236: SSL negotiation error of 'success'
* Fix signal.h usage to resolve compiler warning
* Bug 3930: assertion 'connIsUsable(http->getConn())'
* Fix missing external ACL helper notes
* Bug 4238: assertion Read.cc:205: "params.data == data"
* Docs: remove 4.0-only info added by rev.13823
* comm_connect_addr on failures returns Comm:OK
* Docs: shuffle SMP specific options to the top of squid.conf
* CacheMgr: display 'client_db off' instead of 0 clients accessing cache
* Fix assertion errorpage.cc:600: "entry->isEmpty()"
* Fix assertion MemBuf.cc:380: "new_cap > (size_t) capacity" in SSL I/O buffer

diffstat:

 www/squid3/Makefile                             |   4 ++--
 www/squid3/distinfo                             |  10 +++++-----
 www/squid3/patches/patch-src_base_TidyPointer.h |   8 ++++----
 3 files changed, 11 insertions(+), 11 deletions(-)

diffs (58 lines):

diff -r 1b713db5a5fc -r 7f1449a6b31e www/squid3/Makefile
--- a/www/squid3/Makefile       Thu May 28 21:09:07 2015 +0000
+++ b/www/squid3/Makefile       Fri May 29 07:50:59 2015 +0000
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.45 2015/05/04 09:13:34 adam Exp $
+# $NetBSD: Makefile,v 1.46 2015/05/29 07:50:59 adam Exp $
 
-DISTNAME=      squid-3.5.4
+DISTNAME=      squid-3.5.5
 CATEGORIES=    www
 MASTER_SITES=  http://www.squid-cache.org/Versions/v3/${PKGVERSION_NOREV:R}/ \
                ftp://ftp.squid-cache.org/pub/squid/ \
diff -r 1b713db5a5fc -r 7f1449a6b31e www/squid3/distinfo
--- a/www/squid3/distinfo       Thu May 28 21:09:07 2015 +0000
+++ b/www/squid3/distinfo       Fri May 29 07:50:59 2015 +0000
@@ -1,14 +1,14 @@
-$NetBSD: distinfo,v 1.32 2015/05/04 09:13:34 adam Exp $
+$NetBSD: distinfo,v 1.33 2015/05/29 07:50:59 adam Exp $
 
-SHA1 (squid-3.5.4.tar.xz) = 71a04a5f7c4c38464a8a08ae1089c47abcea0e49
-RMD160 (squid-3.5.4.tar.xz) = 3bf031032aa131ebb58c859d56740e29e7a290a9
-Size (squid-3.5.4.tar.xz) = 2289772 bytes
+SHA1 (squid-3.5.5.tar.xz) = 2c168e8b13251ed8050d9e780127c4de016dcb61
+RMD160 (squid-3.5.5.tar.xz) = b08a0f3be548873b14353a96d694e7999e0021d1
+Size (squid-3.5.5.tar.xz) = 2290016 bytes
 SHA1 (patch-compat_compat.h) = d6cd93fa7a6d0faad3bf1aca8ae4fa5c984fe288
 SHA1 (patch-configure) = 4e658ac4722695f52412f77e168f31a2f523bb1b
 SHA1 (patch-errors_Makefile.in) = afbac822ac84d5e1734d55fc625e949ae0b85289
 SHA1 (patch-src_Makefile.in) = 7233a92a4f6ecc06d88e125f08f7413e0741f3b6
 SHA1 (patch-src_SquidNew.cc) = eef6e72e168cf7f40518fab13dc2f55ed0268db9
-SHA1 (patch-src_base_TidyPointer.h) = 93428d26bb2479fc845764a324658eaacd26588e
+SHA1 (patch-src_base_TidyPointer.h) = d05017d7db904286afb02600ed3cc2f0f253b939
 SHA1 (patch-src_ip_Intercept.cc) = 80de6ca56d61e389641b35515e3509b264b1950f
 SHA1 (patch-src_store.cc) = 055d98a59103b02a51876a5c8ffed9514954beb4
 SHA1 (patch-tools_Makefile.in) = 3a7678c63a11a35fabef091a3b18e63859f0796f
diff -r 1b713db5a5fc -r 7f1449a6b31e www/squid3/patches/patch-src_base_TidyPointer.h
--- a/www/squid3/patches/patch-src_base_TidyPointer.h   Thu May 28 21:09:07 2015 +0000
+++ b/www/squid3/patches/patch-src_base_TidyPointer.h   Fri May 29 07:50:59 2015 +0000
@@ -1,10 +1,10 @@
-$NetBSD: patch-src_base_TidyPointer.h,v 1.1 2013/02/10 18:16:53 adam Exp $
+$NetBSD: patch-src_base_TidyPointer.h,v 1.2 2015/05/29 07:50:59 adam Exp $
 
 Define NULL if not defined.
 
---- src/base/TidyPointer.h.orig        2011-07-08 09:42:57.000000000 +0000
+--- src/base/TidyPointer.h.orig        2015-05-28 11:06:38.000000000 +0000
 +++ src/base/TidyPointer.h
-@@ -1,6 +1,10 @@
+@@ -9,6 +9,10 @@
  #ifndef SQUID_BASE_TIDYPOINTER_H
  #define SQUID_BASE_TIDYPOINTER_H
  
@@ -14,4 +14,4 @@
 +
  /**
   * A pointer that deletes the object it points to when the pointer's owner or
-  * context is gone. Similar to std::auto_ptr but without confusing assignment
+  * context is gone. Similar to std::unique_ptr but without confusing assignment



Home | Main Index | Thread Index | Old Index