diff options
author | drochner <drochner@pkgsrc.org> | 2013-09-24 21:29:20 +0000 |
---|---|---|
committer | drochner <drochner@pkgsrc.org> | 2013-09-24 21:29:20 +0000 |
commit | cfcf82781119997e11843a23bb0bd02182e734d0 (patch) | |
tree | c16da3fedf50d8e6e0b725395782fd8907fe97a8 /net/nmap | |
parent | b1ff3bf9b7f869ae1e4d9c7456ec451fa360924a (diff) | |
download | pkgsrc-cfcf82781119997e11843a23bb0bd02182e734d0.tar.gz |
fix build on systems without builtin lua (with lua option disabled,
so that no pkgsrc lua is pulled in)
tested by John Klos
Diffstat (limited to 'net/nmap')
-rw-r--r-- | net/nmap/distinfo | 3 | ||||
-rw-r--r-- | net/nmap/patches/patch-ad | 12 |
2 files changed, 14 insertions, 1 deletions
diff --git a/net/nmap/distinfo b/net/nmap/distinfo index 2925696e0cb..d1c42eac3fa 100644 --- a/net/nmap/distinfo +++ b/net/nmap/distinfo @@ -1,7 +1,8 @@ -$NetBSD: distinfo,v 1.60 2013/09/14 14:11:25 drochner Exp $ +$NetBSD: distinfo,v 1.61 2013/09/24 21:29:20 drochner Exp $ SHA1 (nmap-6.40.tar.bz2) = ee1bec1bb62045c7c1fc69ff183b2ae9b97bd0eb RMD160 (nmap-6.40.tar.bz2) = 6da4bd1a71386e52d4c76d3c3c1773c989e72c55 Size (nmap-6.40.tar.bz2) = 7871636 bytes SHA1 (patch-ab) = ab3df07bc7a57fa6736f743c480e0c9497b43053 SHA1 (patch-ac) = c22e8f6411b1152a6e7582c90e5ec5bd4c6acaad +SHA1 (patch-ad) = 278be81387bc47566ee498a4f6ef4e2d4c1d522f diff --git a/net/nmap/patches/patch-ad b/net/nmap/patches/patch-ad new file mode 100644 index 00000000000..13ca8a383f8 --- /dev/null +++ b/net/nmap/patches/patch-ad @@ -0,0 +1,12 @@ +$NetBSD: patch-ad,v 1.17 2013/09/24 21:29:21 drochner Exp $ + +--- ncat/ncat_posix.c.orig 2013-07-29 00:03:01.000000000 +0000 ++++ ncat/ncat_posix.c +@@ -123,5 +123,7 @@ + + #include "ncat.h" ++#ifdef HAVE_LUA + #include "ncat_lua.h" ++#endif + + char **cmdline_split(const char *cmdexec); |