diff options
author | Konstantin Pavlov <thresh@nginx.com> | 2023-07-11 13:02:43 -0700 |
---|---|---|
committer | Konstantin Pavlov <thresh@nginx.com> | 2023-07-11 13:02:43 -0700 |
commit | 497f08d15fc040b3484562cf95dbe242a85fe0df (patch) | |
tree | e79a7e42a68880a7f2644ebeca27d6a830ebff32 /auto | |
parent | 142006528dbe77eba69a90e7f743eaf65c998592 (diff) | |
download | unit-497f08d15fc040b3484562cf95dbe242a85fe0df.tar.gz unit-497f08d15fc040b3484562cf95dbe242a85fe0df.tar.bz2 |
NJS: explicitely require 0.8.0 or later versions in configure.
Diffstat (limited to 'auto')
-rw-r--r-- | auto/njs | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -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 |