Skip to content

Commit dddd994

Browse files
Guy BedfordJakeChampion
authored andcommitted
include component build for default make
1 parent 93361a0 commit dddd994

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

c-dependencies/js-compute-runtime/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ DEFINES += -DMOZ_JS_STREAMS
5151

5252
.PHONY: all install clean distclean
5353

54-
all: js-compute-runtime.wasm
54+
all: js-compute-runtime.wasm js-compute-runtime-component.wasm
5555

5656
compiler_flags:
5757
echo '$(CXX_OPT) $(CXX_FLAGS)' | cmp -s - $@ || echo '$(CXX_OPT) $(CXX_FLAGS)' > $@

c-dependencies/js-compute-runtime/xqd-world/xqd_world_adapter.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -683,7 +683,8 @@ bool xqd_fastly_http_req_cache_override_set(fastly_request_handle_t h,
683683
uint32_t *maybe_ttl,
684684
uint32_t *maybe_stale_while_revalidate,
685685
xqd_world_string_t *maybe_sk, fastly_error_t *err) {
686-
return fastly_http_req_cache_override_set(h, tag, ttl, stale_while_revalidate, sk, err);
686+
return fastly_http_req_cache_override_set(h, tag, maybe_ttl, maybe_stale_while_revalidate,
687+
maybe_sk, err);
687688
}
688689

689690
bool xqd_fastly_http_req_downstream_client_ip_addr(fastly_list_u8_t *ret, fastly_error_t *err) {

0 commit comments

Comments
 (0)