Adding upstream version 2.0.0.
Signed-off-by: Daniel Baumann <daniel@debian.org>
This commit is contained in:
parent
564691d061
commit
8a0fa2b011
28 changed files with 10291 additions and 0 deletions
11
dnsjit_version.lua
Normal file
11
dnsjit_version.lua
Normal file
|
@ -0,0 +1,11 @@
|
|||
local _, major, minor, patch = unpack(arg)
|
||||
major = tonumber(major)
|
||||
minor = tonumber(minor)
|
||||
patch = tonumber(patch)
|
||||
if DNSJIT_MAJOR_VERSION > major then os.exit(0) end
|
||||
if DNSJIT_MAJOR_VERSION < major then os.exit(1) end
|
||||
if DNSJIT_MINOR_VERSION > minor then os.exit(0) end
|
||||
if DNSJIT_MINOR_VERSION < minor then os.exit(1) end
|
||||
if DNSJIT_PATCH_VERSION > patch then os.exit(0) end
|
||||
if DNSJIT_PATCH_VERSION < patch then os.exit(1) end
|
||||
os.exit(0)
|
Loading…
Add table
Add a link
Reference in a new issue