Revert "nginx-mod-njs: fix endianess patch"
This reverts commit 7fdb92b59a
.
Now that the actual issue has been found and fixed, this is incorrect
so revert it.
Signed-off-by: Robert Marko <robimarko@gmail.com>
This commit is contained in:
parent
ea29db6daa
commit
3d5bc4c9ce
|
@ -34,18 +34,18 @@
|
|||
cd $ngx_addon_dir/.. \\
|
||||
&& if [ -f build/Makefile ]; then \$(MAKE) clean; fi \\
|
||||
- && CFLAGS="\$(CFLAGS)" CC="\$(CC)" ./configure --no-openssl \\
|
||||
- --no-libxml2 --no-zlib --no-pcre --no-quickjs --ld-opt="$NGX_LD_OPT" \\
|
||||
- --no-libxml2 --no-zlib --no-pcre --no-quickjs \\
|
||||
+ && CFLAGS="\$(CFLAGS)" CC="\$(CC)" CONFIG_BIG_ENDIAN=\$(CONFIG_BIG_ENDIAN) \\
|
||||
+ ./configure --no-openssl --no-libxml2 --no-zlib --no-pcre --no-quickjs --ld-opt="$NGX_LD_OPT" \\
|
||||
+ ./configure --no-openssl --no-libxml2 --no-zlib --no-pcre --no-quickjs \\
|
||||
&& \$(MAKE) libnjs
|
||||
|
||||
$ngx_addon_dir/../build/libqjs.a: $NGX_MAKEFILE
|
||||
cd $ngx_addon_dir/.. \\
|
||||
&& if [ -f build/Makefile ]; then \$(MAKE) clean; fi \\
|
||||
- && CFLAGS="\$(CFLAGS)" CC="\$(CC)" ./configure --no-openssl \\
|
||||
- --no-libxml2 --no-zlib --no-pcre --ld-opt="$NGX_LD_OPT" \\
|
||||
- --no-libxml2 --no-zlib --no-pcre \\
|
||||
+ && CFLAGS="\$(CFLAGS)" CC="\$(CC)" CONFIG_BIG_ENDIAN=\$(CONFIG_BIG_ENDIAN) \\
|
||||
+ ./configure --no-openssl --no-libxml2 --no-zlib --no-pcre --ld-opt="$NGX_LD_OPT" \\
|
||||
+ ./configure --no-openssl --no-libxml2 --no-zlib --no-pcre \\
|
||||
&& \$(MAKE) libnjs libqjs
|
||||
|
||||
END
|
||||
|
|
Loading…
Reference in New Issue