summaryrefslogtreecommitdiff
path: root/misc/bidwatcher/patches
diff options
context:
space:
mode:
authortron <tron@pkgsrc.org>2003-11-25 08:43:51 +0000
committertron <tron@pkgsrc.org>2003-11-25 08:43:51 +0000
commitfaee28f3d35e376e8cbf6cba7c620f6b4dd097b2 (patch)
tree292d4eb38d0e531e9675a0c08847385bd6c5efe2 /misc/bidwatcher/patches
parentca20945502a59943de31093e70d7ad1c5dc36740 (diff)
downloadpkgsrc-faee28f3d35e376e8cbf6cba7c620f6b4dd097b2.tar.gz
Update "bidwatcher" package to version 1.3.11rc1.
Changes since version 1.3.10: - Fixed Bug #779784 Keeps updating finished auctions - More portable build (builds with Compaq's C++ compiler) - Removed some dead code. - Details window shows all available information. - Fixed BuyItNow autodeletion bug. - Added basic proxy authentication. - Fixed some BuyItNow handling. - GetUserListings fixes. - Better compatibility with Purchase Only auctions. - Fixed quantity amount in detail window. - Fixed bigUpdate: timeToNextEnd was > 5 mins, so it wouldn't fire. - Fixed the idempotent header defines in bidwatcher.h - Added functionality to open to a specific ebay country website. - Fixed GMTIME BSD specific code. - Don't try to bid if we failed to get the snipe key - Fixed "Bid too low" message - Fixed "You are highest bidder" message - Fixed "Outbid" detection - Added Pragma headers to coerce proxies into refreshing the content - Printout log messages since they currently disappear in the statusbar. - Changed needelessly complex status bar operations. - Fixed pre-bid on ended auctions error message - Fixed pre-bid/snipe URL+headers - Fixed updating after snipe - Updated User-Agent - Handy --enable-debug configure option
Diffstat (limited to 'misc/bidwatcher/patches')
-rw-r--r--misc/bidwatcher/patches/patch-aa13
-rw-r--r--misc/bidwatcher/patches/patch-ab13
2 files changed, 0 insertions, 26 deletions
diff --git a/misc/bidwatcher/patches/patch-aa b/misc/bidwatcher/patches/patch-aa
deleted file mode 100644
index 6b1e981a3c3..00000000000
--- a/misc/bidwatcher/patches/patch-aa
+++ /dev/null
@@ -1,13 +0,0 @@
-$NetBSD: patch-aa,v 1.16 2003/04/06 11:48:25 tron Exp $
-
---- bidwatcher.cpp.orig 2002-12-23 08:49:08.000000000 +0100
-+++ bidwatcher.cpp 2003-03-31 09:53:56.000000000 +0200
-@@ -4093,7 +4093,7 @@
-
- if (strlen(HtmlBuff) < 1000) {
- #ifdef DEBUG_NETWORK
-- fprintf(stderr, "Short web page (%d bytes) from ebay's time web page, retrying... (%d)\n", strlen(HtmlBuff), i);
-+ fprintf(stderr, "Short web page (%ld bytes) from ebay's time web page, retrying... (%d)\n", (long int)strlen(HtmlBuff), i);
- #endif
- continue;
- }
diff --git a/misc/bidwatcher/patches/patch-ab b/misc/bidwatcher/patches/patch-ab
deleted file mode 100644
index afb077fd036..00000000000
--- a/misc/bidwatcher/patches/patch-ab
+++ /dev/null
@@ -1,13 +0,0 @@
-$NetBSD: patch-ab,v 1.5 2002/12/30 02:09:27 dmcmahill Exp $
-
---- netstuff.cpp.orig Sat Oct 19 14:40:15 2002
-+++ netstuff.cpp
-@@ -353,7 +353,7 @@ int fetchURL(URL *url, int Post, char **
- if (*Args != '\0')
- Args++;
-
-- sprintf(lineBuff, "POST %.*s HTTP/1.1\r\nConnection: close\r\nHost: %s\r\nContent-Length: %d\r\n%s\r\n%s", URLLen, url->url, url->hoststring, strlen(Args), UserAgent, Args);
-+ sprintf(lineBuff, "POST %.*s HTTP/1.1\r\nConnection: close\r\nHost: %s\r\nContent-Length: %ld\r\n%s\r\n%s", URLLen, url->url, url->hoststring, (long int) strlen(Args), UserAgent, Args);
- } else {
- sprintf(lineBuff, "GET %s HTTP/1.1\r\nConnection: close\r\nHost: %s\r\n%s\r\n", url->url, url->hoststring, UserAgent);
- }