diff options
author | Mike Pall <mike> | 2014-10-07 16:17:29 +0200 |
---|---|---|
committer | Mike Pall <mike> | 2014-10-07 16:17:29 +0200 |
commit | 4846a714a9b8e01bac8f9fc1de0eb2a5f00ea79b (patch) | |
tree | 8ec2daae67277bddbafc0c8e3b71a691cb48baba /src/jit | |
parent | cb886b58176dc5cd969f512d1a633f06d7120941 (diff) | |
download | luajit-4846a714a9b8e01bac8f9fc1de0eb2a5f00ea79b.tar.gz luajit-4846a714a9b8e01bac8f9fc1de0eb2a5f00ea79b.tar.bz2 luajit-4846a714a9b8e01bac8f9fc1de0eb2a5f00ea79b.zip |
Fix DragonFly build (unsupported).
Thanks to Robin Hahling, Alex Hornung and Joris Giovannangeli.
Diffstat (limited to 'src/jit')
-rw-r--r-- | src/jit/bcsave.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/jit/bcsave.lua b/src/jit/bcsave.lua index f55bda97..122bb24b 100644 --- a/src/jit/bcsave.lua +++ b/src/jit/bcsave.lua | |||
@@ -69,7 +69,7 @@ local map_arch = { | |||
69 | 69 | ||
70 | local map_os = { | 70 | local map_os = { |
71 | linux = true, windows = true, osx = true, freebsd = true, netbsd = true, | 71 | linux = true, windows = true, osx = true, freebsd = true, netbsd = true, |
72 | openbsd = true, solaris = true, | 72 | openbsd = true, dragonfly = true, solaris = true, |
73 | } | 73 | } |
74 | 74 | ||
75 | local function checkarg(str, map, err) | 75 | local function checkarg(str, map, err) |