Date: Tue, 1 Apr 2008 15:18:06 +1100 (EST) From: Edwin Groothuis <edwin@mavetju.org> To: FreeBSD-gnats-submit@FreeBSD.org Subject: ports/122327: [patch] ftp/curl - update to 7.16.4 Message-ID: <20080401041806.20011382@k7.mavetju> Resent-Message-ID: <200804010420.m314K1ce071976@freefall.freebsd.org>
next in thread | raw e-mail | index | archive | help
>Number: 122327 >Category: ports >Synopsis: [patch] ftp/curl - update to 7.16.4 >Confidential: no >Severity: critical >Priority: high >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Apr 01 04:20:01 UTC 2008 >Closed-Date: >Last-Modified: >Originator: Edwin Groothuis >Release: FreeBSD 6.3-RELEASE i386 >Organization: - >Environment: System: FreeBSD k7.mavetju 6.3-RELEASE FreeBSD 6.3-RELEASE #0: Sun Feb 17 22:11:52 EST 2008 edwin@k7.mavetju:/usr/src/sys/i386/compile/SMP i386 >Description: Update curl to 7.16.4 to overcome a problem with 64 bit machines and setopt. >How-To-Repeat: >Fix: Index: Makefile =================================================================== RCS file: /home/pcvs/ports/ftp/curl/Makefile,v retrieving revision 1.91 diff -u -r1.91 Makefile --- Makefile 3 Mar 2008 11:57:01 -0000 1.91 +++ Makefile 1 Apr 2008 04:16:35 -0000 @@ -6,8 +6,7 @@ # PORTNAME= curl -PORTVERSION= 7.16.3 -PORTREVISION= 1 +PORTVERSION= 7.16.4 CATEGORIES= ftp ipv6 www MASTER_SITES= http://curl.haxx.se/download/ \ ${MASTER_SITE_SOURCEFORGE} \ Index: distinfo =================================================================== RCS file: /home/pcvs/ports/ftp/curl/distinfo,v retrieving revision 1.49 diff -u -r1.49 distinfo --- distinfo 27 Aug 2007 15:44:21 -0000 1.49 +++ distinfo 1 Apr 2008 04:16:35 -0000 @@ -1,3 +1,3 @@ -MD5 (curl-7.16.3.tar.bz2) = ed55dfa8946ad53f245fae5db3a9d0ca -SHA256 (curl-7.16.3.tar.bz2) = 7dc1ff9b06686650669befd8884f3dab599de6795f24148c56d67b285211e494 -SIZE (curl-7.16.3.tar.bz2) = 1667847 +MD5 (curl-7.16.4.tar.bz2) = ffa6d1f4e28ca493a43f9dc17882c4d8 +SHA256 (curl-7.16.4.tar.bz2) = 45c69529126b6ff50e7ebe2c2b8157a4ecb405174a1349234903021e9ac5c87b +SIZE (curl-7.16.4.tar.bz2) = 1668101 Index: files/patch-lib::ssh.c =================================================================== RCS file: /home/pcvs/ports/ftp/curl/files/patch-lib::ssh.c,v retrieving revision 1.1 diff -u -r1.1 patch-lib::ssh.c --- files/patch-lib::ssh.c 27 Aug 2007 15:44:22 -0000 1.1 +++ files/patch-lib::ssh.c 1 Apr 2008 04:16:36 -0000 @@ -637,23 +637,19 @@ } if (path1) -@@ -2299,18 +2317,18 @@ +@@ -2299,14 +2317,14 @@ infof(conn->data, "Creating directory '%s'\n", sftp->path); /* 'mode' - parameter is preliminary - default to 0644 */ -#if (LIBSSH2_APINO >= 200706012030) +#if HAVE_LIBSSH2_NBLOCK while ((rc = libssh2_sftp_mkdir(sftp->sftp_session, sftp->path, - LIBSSH2_SFTP_S_IRWXU | - LIBSSH2_SFTP_S_IRGRP | LIBSSH2_SFTP_S_IXGRP | - LIBSSH2_SFTP_S_IROTH | LIBSSH2_SFTP_S_IXOTH)) == + conn->data->set.new_directory_perms)) == LIBSSH2_ERROR_EAGAIN); -#else /* !(LIBSSH2_APINO >= 200706012030) */ +#else /* !HAVE_LIBSSH2_NBLOCK */ rc = libssh2_sftp_mkdir(sftp->sftp_session, sftp->path, - LIBSSH2_SFTP_S_IRWXU | - LIBSSH2_SFTP_S_IRGRP | LIBSSH2_SFTP_S_IXGRP | - LIBSSH2_SFTP_S_IROTH | LIBSSH2_SFTP_S_IXOTH); + conn->data->set.new_directory_perms); -#endif /* !(LIBSSH2_APINO >= 200706012030) */ +#endif /* !HAVE_LIBSSH2_NBLOCK */ *slash_pos = '/'; >Release-Note: >Audit-Trail: >Unformatted:
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20080401041806.20011382>