diff options
author | krion <krion@FreeBSD.org> | 2004-02-23 16:40:57 +0000 |
---|---|---|
committer | krion <krion@FreeBSD.org> | 2004-02-23 16:40:57 +0000 |
commit | b3e09c857e793c49833a593970860ac61b1a93b3 (patch) | |
tree | a8b42302574602317c390aeb1b1a4233615d2d9c | |
parent | 90feb52c31fd4d11b6c22437cefaaa08103a434d (diff) | |
download | FreeBSD-ports-b3e09c857e793c49833a593970860ac61b1a93b3.zip FreeBSD-ports-b3e09c857e793c49833a593970860ac61b1a93b3.tar.gz |
- Update to version 0.2.6
- Fix build on 4.x
PR: ports/63269
Submitted by: maintainer
-rw-r--r-- | security/doscan/Makefile | 5 | ||||
-rw-r--r-- | security/doscan/distinfo | 3 | ||||
-rw-r--r-- | security/doscan/files/freebsd4.diff | 11 |
3 files changed, 15 insertions, 4 deletions
diff --git a/security/doscan/Makefile b/security/doscan/Makefile index e5a3bbd..d5c5072 100644 --- a/security/doscan/Makefile +++ b/security/doscan/Makefile @@ -6,8 +6,7 @@ # PORTNAME= doscan -PORTVERSION= 0.2.5 -PORTREVISION= 1 +PORTVERSION= 0.2.6 CATEGORIES= security net MASTER_SITES= http://static.enyo.de/fw/releases/doscan/ @@ -25,7 +24,7 @@ MAN1= doscan.1 .include <bsd.port.pre.mk> .if ${OSVERSION} < 500000 -BROKEN= "Does not compile" +EXTRA_PATCHES= ${PATCHDIR}/freebsd4.diff .endif post-install: diff --git a/security/doscan/distinfo b/security/doscan/distinfo index 5a6e693..e763625 100644 --- a/security/doscan/distinfo +++ b/security/doscan/distinfo @@ -1 +1,2 @@ -MD5 (doscan-0.2.5.tar.gz) = 57fcb9d260c8cea003ed484b3fe7bd70 +MD5 (doscan-0.2.6.tar.gz) = 3391cc5a8e84b9f6b89e2219b8eae477 +SIZE (doscan-0.2.6.tar.gz) = 224734 diff --git a/security/doscan/files/freebsd4.diff b/security/doscan/files/freebsd4.diff new file mode 100644 index 0000000..cc89721 --- /dev/null +++ b/security/doscan/files/freebsd4.diff @@ -0,0 +1,11 @@ +--- src/results.cc.orig Mon Feb 23 15:15:59 2004 ++++ src/results.cc Mon Feb 23 15:30:54 2004 +@@ -427,7 +427,7 @@ + #ifdef GETHOSTBYADDR_ACCEPTS_CHAR + he = gethostbyaddr (reinterpret_cast<char*>(&in), sizeof (in), AF_INET); + #else +-#error Type of first argument to gethostbyaddr() is not known. ++ he = gethostbyaddr ((const char*)(&in), sizeof (in), AF_INET); + #endif + #endif + |