diff options
author | obrien <obrien@FreeBSD.org> | 2003-07-10 02:14:45 +0000 |
---|---|---|
committer | obrien <obrien@FreeBSD.org> | 2003-07-10 02:14:45 +0000 |
commit | 229435e9cce435b0faf99c3ab853e7ec454ef079 (patch) | |
tree | 1ec9d3191041a41951d9ef55a323b9dd9e507f44 /misc/bidwatcher | |
parent | 09cf3cdbd47531f05332e817046430547b28ef9a (diff) | |
download | FreeBSD-ports-229435e9cce435b0faf99c3ab853e7ec454ef079.zip FreeBSD-ports-229435e9cce435b0faf99c3ab853e7ec454ef079.tar.gz |
Update to version 1.3.8.
Diffstat (limited to 'misc/bidwatcher')
-rw-r--r-- | misc/bidwatcher/Makefile | 4 | ||||
-rw-r--r-- | misc/bidwatcher/distinfo | 2 | ||||
-rw-r--r-- | misc/bidwatcher/files/patch-helpers.cpp | 21 |
3 files changed, 3 insertions, 24 deletions
diff --git a/misc/bidwatcher/Makefile b/misc/bidwatcher/Makefile index d477067..6cad3b0 100644 --- a/misc/bidwatcher/Makefile +++ b/misc/bidwatcher/Makefile @@ -6,8 +6,8 @@ # PORTNAME= bidwatcher -PORTVERSION= 1.3.7 -PORTREVISION?= 1 +PORTVERSION= 1.3.8 +PORTREVISION?= 0 CATEGORIES= misc MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR= ${PORTNAME} diff --git a/misc/bidwatcher/distinfo b/misc/bidwatcher/distinfo index 54837f4..7b71544 100644 --- a/misc/bidwatcher/distinfo +++ b/misc/bidwatcher/distinfo @@ -1 +1 @@ -MD5 (bidwatcher-1.3.7.tar.gz) = cc4a796086b2ceda350764cea164bb83 +MD5 (bidwatcher-1.3.8.tar.gz) = 6ab32a75d6c5e081bb0498ca1a0c91da diff --git a/misc/bidwatcher/files/patch-helpers.cpp b/misc/bidwatcher/files/patch-helpers.cpp deleted file mode 100644 index 525eff1..0000000 --- a/misc/bidwatcher/files/patch-helpers.cpp +++ /dev/null @@ -1,21 +0,0 @@ ---- helpers.cpp.orig Sat Dec 21 00:00:42 2002 -+++ helpers.cpp Sun Dec 29 09:31:01 2002 -@@ -344,13 +344,16 @@ - ////////////////////////////////////////////////////////////////////// - char * StripAndTab(const char * stringToStrip) - { -- char *Buff=(char *)malloc(strlen(stringToStrip)); -- Buff[0]='\0'; - int buffLength = strlen(stringToStrip); - int BuffIdx = 0; - int u,c; - int IncludeFlag = 5; - bool tabFlag = FALSE; -+ if (!buffLength) { -+ ++buffLength; // some malloc's don't handled malloc(0) well -+ } -+ char *Buff=(char *)malloc(buffLength); -+ Buff[0]='\0'; - for (u = 0; (u < buffLength);u++) { - c = stringToStrip[u]; - if (c=='<') { |