diff options
author | Pete Fritchman <petef@FreeBSD.org> | 2002-03-25 20:24:43 +0000 |
---|---|---|
committer | Pete Fritchman <petef@FreeBSD.org> | 2002-03-25 20:24:43 +0000 |
commit | b9eac19b3fdd2c1a378b82fdfefe45974896b144 (patch) | |
tree | 109555b69abeea629ce873cfdc910fa95db5d3df /www/comline | |
parent | Update to 1.0.3. (diff) |
Unbreak: don't clobber the system's strcasestr() function.
Notes
Notes:
svn path=/head/; revision=56649
Diffstat (limited to 'www/comline')
-rw-r--r-- | www/comline/Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/www/comline/Makefile b/www/comline/Makefile index 5e9db07514df..7a37b161ac41 100644 --- a/www/comline/Makefile +++ b/www/comline/Makefile @@ -17,10 +17,12 @@ DISTFILES= w3c-libwww-4.0D.tar.gz \ MAINTAINER= ports@FreeBSD.org -BROKEN= "Does not build (duplicate strcasestr)" - WRKSRC= ${WRKDIR}/WWW +post-patch: + @${PERL} -pi -e 's,strcasestr,strcasestr_,' \ + ${WRKSRC}/Library/Implementation/HTString.* + do-build: cd ${WRKSRC}; ./BUILD comline |