diff options
author | Peter Pentchev <roam@FreeBSD.org> | 2002-06-24 16:03:00 +0000 |
---|---|---|
committer | Peter Pentchev <roam@FreeBSD.org> | 2002-06-24 16:03:00 +0000 |
commit | 66087db901b7c4d6e28ea576323b2b0860cbae14 (patch) | |
tree | 47130291cd049d55b9d62bf22a5ea4d01e93ea3c /ftp/curl/Makefile | |
parent | o Update to 0.7.7.20020523 (diff) |
Fix a segfault in an IPv4-only case - realloc() may really, well,
"reallocate" memory even when the programmer only asks for a resizing
of the region.
Reported by: Steve Ames <steve@energistic.com>
While I'm here, change the way SSL header and library paths are handled
to avoid specifically referencing /usr/lib and /usr/include; while
-STABLE's GCC shrugs this off, GCC 3.1 whines loudly about an explicit
-I/usr/include (and rightly so, IMHO).
Notes
Notes:
svn path=/head/; revision=61882
Diffstat (limited to 'ftp/curl/Makefile')
-rw-r--r-- | ftp/curl/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ftp/curl/Makefile b/ftp/curl/Makefile index 4787bef3e1e6..34d982a5ab17 100644 --- a/ftp/curl/Makefile +++ b/ftp/curl/Makefile @@ -7,7 +7,7 @@ PORTNAME= curl PORTVERSION= 7.9.7 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= ftp ipv6 www MASTER_SITES= http://curl.haxx.se/download/ \ http://download.sourceforge.net/curl/ \ |