upgrade to Curl 7.3

This commit is contained in:
brad 2000-09-28 17:29:47 +00:00
parent d77986c784
commit feec3659ce
5 changed files with 45 additions and 6 deletions

View File

@ -1,8 +1,8 @@
# $OpenBSD: Makefile,v 1.15 2000/09/06 20:50:13 brad Exp $
# $OpenBSD: Makefile,v 1.16 2000/09/28 17:29:47 brad Exp $
DISTNAME= curl-7.2.1
DISTNAME= curl-7.3
CATEGORIES= net
NEED_VERSION= 1.324
NEED_VERSION= 1.330
MASTER_SITES= http://curl.haxx.se/download/ \
ftp://ftp.rhrz.uni-bonn.de/pub-koeln/net/inet/ \
ftp://ftp.win.or.jp/pub/network/www/misc/ \
@ -21,6 +21,13 @@ CONFIGURE_STYLE= gnu
CONFIGURE_ARGS+= ${CONFIGURE_SHARED}
CONFIGURE_ARGS+= --enable-static --disable-thread
FLAVORS= kerberos
FLAVOR?=
.if ${FLAVOR:L:Mkerberos}
CONFIGURE_ARGS+= --with-krb4-includes="/usr/include/kerberosIV"
.endif
DOCS= CHANGES LEGAL MPL-1.0.txt README
post-install:

View File

@ -1,3 +1,3 @@
MD5 (curl-7.2.1.tar.gz) = f74497cf49e1f61bb1f07e9353606f38
RMD160 (curl-7.2.1.tar.gz) = 195928b7a333593585e5998b86d83ee129240a4d
SHA1 (curl-7.2.1.tar.gz) = 2f0fce7515b36a38a6322db0f09fe440b20a34f9
MD5 (curl-7.3.tar.gz) = 9e8aaaae60012f2617aba3bcf3fe0e80
RMD160 (curl-7.3.tar.gz) = 8bdca3b0ef3a90c5fb6ca9ed66294753f51f9825
SHA1 (curl-7.3.tar.gz) = 1d91d604591aa1d8bc0eb6f35cecf1cd2407a0fc

View File

@ -0,0 +1,10 @@
--- lib/hostip.c.orig Thu Sep 28 12:41:36 2000
+++ lib/hostip.c Thu Sep 28 12:41:43 2000
@@ -41,7 +41,6 @@
#include "setup.h"
#include <string.h>
-#include <malloc.h>
#include <errno.h>
#define _REENTRANT

View File

@ -0,0 +1,11 @@
--- lib/krb4.c.orig Thu Sep 28 12:52:39 2000
+++ lib/krb4.c Thu Sep 28 12:52:52 2000
@@ -40,7 +40,7 @@
#ifdef KRB4
#include "security.h"
-#include "base64_krb.h"
+#include "base64.h"
#include <stdlib.h>
#include <netdb.h>
#include <syslog.h>

View File

@ -0,0 +1,11 @@
--- lib/security.c.orig Thu Sep 28 12:46:50 2000
+++ lib/security.c Thu Sep 28 12:47:18 2000
@@ -46,7 +46,7 @@
#include <stdlib.h>
#include <string.h>
#include <netdb.h>
-#include "base64_krb.h"
+#include "base64.h"
#define min(a, b) ((a) < (b) ? (a) : (b))