d3e57132f6
- Dropped a lot of outdated patches. - Added /usr/sbin/captype application. - Added temporary workaround for wireshark.pc.in missing in the official tarball. - Removed outdated --with-dumpcap-group="wireshark" cli switch. It doesn't work during rpmbuild, and we still set group explicitly in the 'files' section. - Removed --enable-setcap-install. Likewise. - Some ANSI C header files were moved to epan/ Signed-off-by: Peter Lemenkov <lemenkov@gmail.com>
19 lines
761 B
Diff
19 lines
761 B
Diff
From: =?UTF-8?q?Radek=20Vok=C3=A1l?= <rvokal@fedoraproject.org>
|
|
Date: Tue, 15 Dec 2009 08:36:27 +0000
|
|
Subject: [PATCH] enable Lua support
|
|
|
|
|
|
diff --git a/epan/wslua/template-init.lua b/epan/wslua/template-init.lua
|
|
index 3fe2aca..2b48f9b 100644
|
|
--- a/epan/wslua/template-init.lua
|
|
+++ b/epan/wslua/template-init.lua
|
|
@@ -43,7 +43,7 @@ if running_superuser then
|
|
local disabled_lib = {}
|
|
setmetatable(disabled_lib,{ __index = function() error("this package ".. hint) end } );
|
|
|
|
- dofile = function() error("dofile " .. hint) end
|
|
+-- dofile = function() error("dofile " .. hint) end
|
|
loadfile = function() error("loadfile " .. hint) end
|
|
loadlib = function() error("loadlib " .. hint) end
|
|
require = function() error("require " .. hint) end
|