pkgsrc-Changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
CVS commit: pkgsrc/net/nmap
Module Name: pkgsrc
Committed By: leot
Date: Thu Oct 19 21:43:25 UTC 2017
Modified Files:
pkgsrc/net/nmap: Makefile options.mk
Log Message:
nmap: set LUA_VERSIONS_ACCEPTED to avoid using internal Lua provided by nmap
Without that change the nmap configure script checks for `lua_isyield'
symbol (appeared on Lua 5.3), and for LUA_VERSION_DEFAULT != 53
(pkgsrc by default set LUA_VERSION_DEFAULT to 52) it will just
silently use its internal version.
Set LUA_VERSIONS_ACCEPTED to 53 to avoid that.
Fix PR pkg/52624 reported by Patrick Mackey.
Bump PKGREVISION.
To generate a diff of this commit:
cvs rdiff -u -r1.136 -r1.137 pkgsrc/net/nmap/Makefile
cvs rdiff -u -r1.18 -r1.19 pkgsrc/net/nmap/options.mk
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: pkgsrc/net/nmap/Makefile
diff -u pkgsrc/net/nmap/Makefile:1.136 pkgsrc/net/nmap/Makefile:1.137
--- pkgsrc/net/nmap/Makefile:1.136 Thu Aug 3 13:52:00 2017
+++ pkgsrc/net/nmap/Makefile Thu Oct 19 21:43:25 2017
@@ -1,6 +1,7 @@
-# $NetBSD: Makefile,v 1.136 2017/08/03 13:52:00 adam Exp $
+# $NetBSD: Makefile,v 1.137 2017/10/19 21:43:25 leot Exp $
DISTNAME= nmap-7.60
+PKGREVISION= 1
CATEGORIES= net security
MASTER_SITES= http://nmap.org/dist/
EXTRACT_SUFX= .tar.bz2
Index: pkgsrc/net/nmap/options.mk
diff -u pkgsrc/net/nmap/options.mk:1.18 pkgsrc/net/nmap/options.mk:1.19
--- pkgsrc/net/nmap/options.mk:1.18 Sun Jan 1 14:43:50 2017
+++ pkgsrc/net/nmap/options.mk Thu Oct 19 21:43:25 2017
@@ -1,4 +1,4 @@
-# $NetBSD: options.mk,v 1.18 2017/01/01 14:43:50 wiz Exp $
+# $NetBSD: options.mk,v 1.19 2017/10/19 21:43:25 leot Exp $
PKG_OPTIONS_VAR= PKG_OPTIONS.nmap
@@ -37,6 +37,7 @@ CONFIGURE_ARGS+= --without-zenmap
.endif
.if !empty(PKG_OPTIONS:Mlua)
+LUA_VERSIONS_ACCEPTED= 53 # needs lua_isyieldable, introduced in Lua 5.3
.include "../../lang/lua/buildlink3.mk"
CONFIGURE_ARGS+= --with-liblua=${BUILDLINK_PREFIX.lua}
PLIST.lua= yes
Home |
Main Index |
Thread Index |
Old Index