[njs] Configure: fixed default path QuickJS discovery typo.
Dmitry Volyntsev
xeioex at nginx.com
Tue Apr 23 01:59:36 UTC 2024
details: https://hg.nginx.org/njs/rev/a97a9f3b3cea
branches:
changeset: 2321:a97a9f3b3cea
user: Dmitry Volyntsev <xeioex at nginx.com>
date: Mon Apr 22 18:59:03 2024 -0700
description:
Configure: fixed default path QuickJS discovery typo.
The issue was introduced in 1c8b6b9bc06c (0.8.4).
This closes #706 issue on Github.
diffstat:
auto/quickjs | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diffs (21 lines):
diff -r 0cb259f67ade -r a97a9f3b3cea auto/quickjs
--- a/auto/quickjs Mon Apr 22 17:52:14 2024 -0700
+++ b/auto/quickjs Mon Apr 22 18:59:03 2024 -0700
@@ -40,7 +40,7 @@ if [ $NJS_TRY_QUICKJS = YES ]; then
if [ $njs_found = no ]; then
njs_feature="QuickJS library -I/usr/include/quickjs/ -L/usr/lib/quickjs/ -lquickjs.lto"
njs_feature_incs="/usr/include/quickjs/"
- njs_feature_libs="-L/usr/lib/quickjs/ -lquijs.lto -lm -ldl -lpthread"
+ njs_feature_libs="-L/usr/lib/quickjs/ -lquickjs.lto -lm -ldl -lpthread"
. auto/feature
fi
@@ -48,7 +48,7 @@ if [ $NJS_TRY_QUICKJS = YES ]; then
if [ $njs_found = no ]; then
njs_feature="QuickJS library -I/usr/include/quickjs/ -L/usr/lib/quickjs/ -lquickjs"
njs_feature_incs="/usr/include/quickjs/"
- njs_feature_libs="-L/usr/lib/quickjs/ -lquijs -lm -ldl -lpthread"
+ njs_feature_libs="-L/usr/lib/quickjs/ -lquickjs -lm -ldl -lpthread"
. auto/feature
fi
More information about the nginx-devel
mailing list