diff options
author | Zhidao HONG <z.hong@f5.com> | 2022-11-20 23:16:51 +0800 |
---|---|---|
committer | Zhidao HONG <z.hong@f5.com> | 2022-11-20 23:16:51 +0800 |
commit | 4d6d146e920667a8afeacd355e4fb6a94387066e (patch) | |
tree | d25e70f93a4f91960434c4d631072e9936f80e36 /auto/sources | |
parent | 4735931ace321752c387dae04c8b217ef22897ee (diff) | |
download | unit-4d6d146e920667a8afeacd355e4fb6a94387066e.tar.gz unit-4d6d146e920667a8afeacd355e4fb6a94387066e.tar.bz2 |
Basic njs support.
Diffstat (limited to 'auto/sources')
-rw-r--r-- | auto/sources | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/auto/sources b/auto/sources index 7d3f62cf..9f9a27f7 100644 --- a/auto/sources +++ b/auto/sources @@ -135,6 +135,10 @@ NXT_LIB_POLARSSL_SRCS="src/nxt_polarssl.c" NXT_LIB_PCRE_SRCS="src/nxt_pcre.c" NXT_LIB_PCRE2_SRCS="src/nxt_pcre2.c" +if [ "$NXT_NJS" != "NO" ]; then + NXT_LIB_SRCS="$NXT_LIB_SRCS src/nxt_js.c" +fi + NXT_LIB_EPOLL_SRCS="src/nxt_epoll_engine.c" NXT_LIB_KQUEUE_SRCS="src/nxt_kqueue_engine.c" NXT_LIB_EVENTPORT_SRCS="src/nxt_eventport_engine.c" |