summaryrefslogtreecommitdiffhomepage
path: root/auto
diff options
context:
space:
mode:
authorAndrew Clayton <a.clayton@nginx.com>2025-05-08 20:03:59 +0100
committerAndrew Clayton <a.clayton@nginx.com>2025-05-08 22:07:18 +0100
commit7e1f4a7f7505139411818bdc03ee710a54c98488 (patch)
treeac9a0ca09b14912c57b10a58339b1c1a04b2c861 /auto
parent0a89e837d4bec864eba2fbf1e81bc9302c843d32 (diff)
downloadunit-7e1f4a7f7505139411818bdc03ee710a54c98488.tar.gz
unit-7e1f4a7f7505139411818bdc03ee710a54c98488.tar.bz2
njs: Update for version 0.9.0 API changes
This bumps the minimum required version of njs to 0.9.0 Cc: Sergey A. Osokin <sergey.osokin@nginx.com> Signed-off-by: Andrew Clayton <a.clayton@nginx.com>
Diffstat (limited to 'auto')
-rw-r--r--auto/njs6
1 files changed, 3 insertions, 3 deletions
diff --git a/auto/njs b/auto/njs
index 0a911ec2..ce2e5972 100644
--- a/auto/njs
+++ b/auto/njs
@@ -25,8 +25,8 @@ 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 < 0x000803
- # error njs < 0.8.3 is not supported.
+ #if NJS_VERSION_NUMBER < 0x000900
+ # error njs < 0.9.0 is not supported.
#endif
int main(void) {
@@ -44,7 +44,7 @@ nxt_feature_test="#include <njs.h>
if [ $nxt_found = no ]; then
$echo
- $echo $0: error: no njs library \>= 0.8.3 found.
+ $echo $0: error: no njs library \>= 0.9.0 found.
$echo
exit 1;
fi