summaryrefslogtreecommitdiff
path: root/src/lj_arch.h
diff options
context:
space:
mode:
authorMike Pall <mike>2014-10-07 16:17:29 +0200
committerMike Pall <mike>2014-10-07 16:17:29 +0200
commit4846a714a9b8e01bac8f9fc1de0eb2a5f00ea79b (patch)
tree8ec2daae67277bddbafc0c8e3b71a691cb48baba /src/lj_arch.h
parentcb886b58176dc5cd969f512d1a633f06d7120941 (diff)
downloadluajit-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/lj_arch.h')
-rw-r--r--src/lj_arch.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/lj_arch.h b/src/lj_arch.h
index f04da3bf..f1c6e5e0 100644
--- a/src/lj_arch.h
+++ b/src/lj_arch.h
@@ -67,7 +67,8 @@
67#elif defined(__MACH__) && defined(__APPLE__) 67#elif defined(__MACH__) && defined(__APPLE__)
68#define LUAJIT_OS LUAJIT_OS_OSX 68#define LUAJIT_OS LUAJIT_OS_OSX
69#elif (defined(__FreeBSD__) || defined(__FreeBSD_kernel__) || \ 69#elif (defined(__FreeBSD__) || defined(__FreeBSD_kernel__) || \
70 defined(__NetBSD__) || defined(__OpenBSD__)) && !defined(__ORBIS__) 70 defined(__NetBSD__) || defined(__OpenBSD__) || \
71 defined(__DragonFly__)) && !defined(__ORBIS__)
71#define LUAJIT_OS LUAJIT_OS_BSD 72#define LUAJIT_OS LUAJIT_OS_BSD
72#elif (defined(__sun__) && defined(__svr4__)) || defined(__CYGWIN__) 73#elif (defined(__sun__) && defined(__svr4__)) || defined(__CYGWIN__)
73#define LUAJIT_OS LUAJIT_OS_POSIX 74#define LUAJIT_OS LUAJIT_OS_POSIX