diff options
author | mph <mph@FreeBSD.org> | 2002-09-18 00:56:48 +0800 |
---|---|---|
committer | mph <mph@FreeBSD.org> | 2002-09-18 00:56:48 +0800 |
commit | 6f47ec78f8ee3b40e05fbdc94f0964e31e870b03 (patch) | |
tree | 1477a0edc3d266cdcdcb0ac28c1ec7b457ab0a55 /misc/bidwatcher/files | |
parent | b85af296f5b5ae1de5141fb44944c052d8c1d22c (diff) | |
download | freebsd-ports-gnome-6f47ec78f8ee3b40e05fbdc94f0964e31e870b03.tar.gz freebsd-ports-gnome-6f47ec78f8ee3b40e05fbdc94f0964e31e870b03.tar.zst freebsd-ports-gnome-6f47ec78f8ee3b40e05fbdc94f0964e31e870b03.zip |
Upgrade to 1.3.5.
Add provision to circumvent the five minute "fudge factor" on snipe
timers.
Submitted by: Bruce Burden <brucegb@realtime.net>
Diffstat (limited to 'misc/bidwatcher/files')
-rw-r--r-- | misc/bidwatcher/files/patch-aa | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/misc/bidwatcher/files/patch-aa b/misc/bidwatcher/files/patch-aa new file mode 100644 index 000000000000..848fd257a6cb --- /dev/null +++ b/misc/bidwatcher/files/patch-aa @@ -0,0 +1,16 @@ +--- bidwatcher.cpp.orig Tue Sep 17 09:42:59 2002 ++++ bidwatcher.cpp Tue Sep 17 09:44:43 2002 +@@ -4006,8 +4006,12 @@ + + // ebay is GMT+8hrs, but add a 5 minute fudge so that we bid + // early to be safe ++ ++ // In the era of accurate timekeeping, it's not clear that this is ++ // necessary, so we allow TIMEFUDGE to be set when building the ++ // FreeBSD port. -mph + +- timeDiff += 5*60; ++ timeDiff += TIMEFUDGE; + + showError("WARNING: Couldn't reach eBay, using local clock." + " Do not depend on times or sniping."); |