diff options
author | Mike Pall <mike> | 2022-09-12 11:16:20 +0200 |
---|---|---|
committer | Mike Pall <mike> | 2022-09-12 11:16:20 +0200 |
commit | e19db605129ea755b325e4396f58141dbdfd23a0 (patch) | |
tree | b027992a7ef08f0685e81dac7e4c6b57c15846ed /src/lj_prng.c | |
parent | 03080b795aa3496ed62d4a0697c9f4767e7ca7e5 (diff) | |
download | luajit-e19db605129ea755b325e4396f58141dbdfd23a0.tar.gz luajit-e19db605129ea755b325e4396f58141dbdfd23a0.tar.bz2 luajit-e19db605129ea755b325e4396f58141dbdfd23a0.zip |
Fix QNX build.
Note: this is not an officially supported target.
Contributed by Wen Yang.
Diffstat (limited to 'src/lj_prng.c')
-rw-r--r-- | src/lj_prng.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lj_prng.c b/src/lj_prng.c index 9e57505e..01935e57 100644 --- a/src/lj_prng.c +++ b/src/lj_prng.c | |||
@@ -125,7 +125,7 @@ static PRGR libfunc_rgr; | |||
125 | #if __MAC_OS_X_VERSION_MIN_REQUIRED >= 101200 | 125 | #if __MAC_OS_X_VERSION_MIN_REQUIRED >= 101200 |
126 | #define LJ_TARGET_HAS_GETENTROPY 1 | 126 | #define LJ_TARGET_HAS_GETENTROPY 1 |
127 | #endif | 127 | #endif |
128 | #elif (LJ_TARGET_BSD && !defined(__NetBSD__)) || LJ_TARGET_SOLARIS || LJ_TARGET_CYGWIN | 128 | #elif (LJ_TARGET_BSD && !defined(__NetBSD__)) || LJ_TARGET_SOLARIS || LJ_TARGET_CYGWIN || LJ_TARGET_QNX |
129 | #define LJ_TARGET_HAS_GETENTROPY 1 | 129 | #define LJ_TARGET_HAS_GETENTROPY 1 |
130 | #endif | 130 | #endif |
131 | 131 | ||