mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-08-26 08:51:25 +02:00
- build against system libnghttp2.so (which upstream bundles/uses since 8.x); - switch to bundled http_parser due to build failure and make the experimental bundled llhttp (claimed to be 2x faster) default. - remove binutils-gold from makedepends, it is not needed; - remove ca-certificates from makedepends, it seems the run-time dependency is enough.
27 lines
917 B
Diff
27 lines
917 B
Diff
From: Jakub Jirutka <jakub@jirutka.cz>
|
|
Date: Sat, 26 Nov 2016 01:32:00 +0200
|
|
Subject: Disable running gyp files for bundled deps
|
|
|
|
Author: Stephen Gallagher <sgallagh@redhat.com>
|
|
|
|
Modified 2016-11-26 by Jakub Jirutka <jakub@jirutka.cz> to update for
|
|
Node.js 7.2.0
|
|
|
|
--- a/Makefile
|
|
+++ b/Makefile
|
|
@@ -121,12 +121,12 @@ with-code-cache:
|
|
|
|
.PHONY: test-code-cache
|
|
test-code-cache: with-code-cache
|
|
$(PYTHON) tools/test.py $(PARALLEL_ARGS) --mode=$(BUILDTYPE_LOWER) code-cache
|
|
|
|
-out/Makefile: common.gypi deps/uv/uv.gyp deps/http_parser/http_parser.gyp \
|
|
- deps/zlib/zlib.gyp deps/v8/gypfiles/toolchain.gypi \
|
|
+out/Makefile: common.gypi deps/http_parser/http_parser.gyp \
|
|
+ deps/v8/gypfiles/toolchain.gypi \
|
|
deps/v8/gypfiles/features.gypi deps/v8/gypfiles/v8.gyp node.gyp \
|
|
config.gypi
|
|
$(PYTHON) tools/gyp_node.py -f make
|
|
|
|
config.gypi: configure configure.py
|