summaryrefslogtreecommitdiff
path: root/net
diff options
context:
space:
mode:
authordrochner <drochner@pkgsrc.org>2013-09-24 21:29:20 +0000
committerdrochner <drochner@pkgsrc.org>2013-09-24 21:29:20 +0000
commit97442e276012e52ae348ac4d37c7f161bcd812fc (patch)
treec16da3fedf50d8e6e0b725395782fd8907fe97a8 /net
parentf0cafe6953cff746ba2390c5f666dd7e8d2f9d6e (diff)
downloadpkgsrc-97442e276012e52ae348ac4d37c7f161bcd812fc.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')
-rw-r--r--net/nmap/distinfo3
-rw-r--r--net/nmap/patches/patch-ad12
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);