summaryrefslogtreecommitdiff
path: root/misc/esniper
diff options
context:
space:
mode:
authorheinz <heinz@pkgsrc.org>2006-01-28 18:28:22 +0000
committerheinz <heinz@pkgsrc.org>2006-01-28 18:28:22 +0000
commit2b51fc5d3f8c9ac0b2dda68d8d39b4e2498fb405 (patch)
tree528b9065f225c341208f1758b7ff1243be6e4b50 /misc/esniper
parente5abbfb4f2c986624fcd5d499f3fef1352b40cf6 (diff)
downloadpkgsrc-2b51fc5d3f8c9ac0b2dda68d8d39b4e2498fb405.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/esniper')
-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();