summaryrefslogtreecommitdiff
path: root/misc
diff options
context:
space:
mode:
authorheinz <heinz>2006-01-28 18:28:22 +0000
committerheinz <heinz>2006-01-28 18:28:22 +0000
commitb18949f42b9deabf166833a2a52620d97491cf63 (patch)
tree528b9065f225c341208f1758b7ff1243be6e4b50 /misc
parent87dc1e1c9b7d3c6aa111d5523cbec0dfe12639d1 (diff)
downloadpkgsrc-b18949f42b9deabf166833a2a52620d97491cf63.tar.gz
Added a forgotten include file in our patch for auction.c. This way, the
compiler does not complain (or abort) about "int to pointer conversion" anymore. This should fix the build on IRIX with the mipspro compiler.
Diffstat (limited to 'misc')
-rw-r--r--misc/esniper/distinfo4
-rw-r--r--misc/esniper/patches/patch-aa14
2 files changed, 13 insertions, 5 deletions
diff --git a/misc/esniper/distinfo b/misc/esniper/distinfo
index e351ee67d45..3b1ae2fe825 100644
--- a/misc/esniper/distinfo
+++ b/misc/esniper/distinfo
@@ -1,6 +1,6 @@
-$NetBSD: distinfo,v 1.1.1.1 2005/11/13 17:51:40 heinz Exp $
+$NetBSD: distinfo,v 1.2 2006/01/28 18:28:22 heinz Exp $
SHA1 (esniper-2-14-0.tgz) = 34c4575e4259ef19286c92c4909c8e6010672446
RMD160 (esniper-2-14-0.tgz) = 4bc6b0332d389d6c7dd62d7cc5955702c4e760c5
Size (esniper-2-14-0.tgz) = 115471 bytes
-SHA1 (patch-aa) = a4aed86c68a5374f88f204844fe279f71d73a136
+SHA1 (patch-aa) = e55f99b79796ef13a07479f7d605acfbfb136dc3
diff --git a/misc/esniper/patches/patch-aa b/misc/esniper/patches/patch-aa
index 4c9415bd267..a2bcbc9c1e0 100644
--- a/misc/esniper/patches/patch-aa
+++ b/misc/esniper/patches/patch-aa
@@ -1,8 +1,16 @@
-$NetBSD: patch-aa,v 1.1.1.1 2005/11/13 17:51:40 heinz Exp $
+$NetBSD: patch-aa,v 1.2 2006/01/28 18:28:22 heinz Exp $
--- auction.c.orig Wed Oct 19 13:37:59 2005
+++ auction.c
-@@ -1189,7 +1189,7 @@ ebayLogin(auctionInfo *aip)
+@@ -28,6 +28,7 @@
+ #include "buffer.h"
+ #include "http.h"
+ #include <ctype.h>
++#include <curl/curl.h>
+ #include <limits.h>
+ #include <stdio.h>
+ #include <stdlib.h>
+@@ -1189,7 +1190,7 @@ ebayLogin(auctionInfo *aip)
char *url, *logUrl;
pageInfo_t *pp;
int ret = 0;
@@ -11,7 +19,7 @@ $NetBSD: patch-aa,v 1.1.1.1 2005/11/13 17:51:40 heinz Exp $
if (!(mp = httpGet(LOGIN_1_URL, NULL)))
return httpError(aip);
-@@ -1198,11 +1198,18 @@ ebayLogin(auctionInfo *aip)
+@@ -1198,11 +1199,18 @@ ebayLogin(auctionInfo *aip)
urlLen = sizeof(LOGIN_2_URL) + strlen(options.username);
password = getPassword();