summaryrefslogtreecommitdiffhomepage
path: root/auto/njs
diff options
context:
space:
mode:
authorKonstantin Pavlov <thresh@nginx.com>2023-08-31 09:41:46 -0700
committerKonstantin Pavlov <thresh@nginx.com>2023-08-31 09:41:46 -0700
commitc45c8919c7232eb20023484f6d1fc9f1f50395d8 (patch)
treecc12eb307c1611494948645e4b487fa06495c3d2 /auto/njs
parent88c90e1c351ab8c5bd487a5cd4b735014b08e271 (diff)
parent9b22b6957bc87b3df002d0bc691fdae6a20abdac (diff)
downloadunit-c45c8919c7232eb20023484f6d1fc9f1f50395d8.tar.gz
unit-c45c8919c7232eb20023484f6d1fc9f1f50395d8.tar.bz2
Merged with the default branch.1.31.0-1
Diffstat (limited to '')
-rw-r--r--auto/njs6
1 files changed, 5 insertions, 1 deletions
diff --git a/auto/njs b/auto/njs
index c0c43f19..c54a27c7 100644
--- a/auto/njs
+++ b/auto/njs
@@ -25,6 +25,10 @@ nxt_feature_incs="$NXT_NJS_CFLAGS $NXT_NJS_AUX_CFLAGS"
nxt_feature_libs="$NXT_NJS_LIBS $NXT_NJS_AUX_LIBS"
nxt_feature_test="#include <njs.h>
+ #if NJS_VERSION_NUMBER < 0x000800
+ # error NJS < 0.8.0 is not supported.
+ #endif
+
int main(void) {
njs_vm_t *vm;
njs_vm_opt_t opts;
@@ -40,7 +44,7 @@ nxt_feature_test="#include <njs.h>
if [ $nxt_found = no ]; then
$echo
- $echo $0: error: no NJS library found.
+ $echo $0: error: no NJS library \>= 0.8.0 found.
$echo
exit 1;
fi