From e02512032be39346e377688174c0f3677eaf8544 Mon Sep 17 00:00:00 2001 From: Jan-E Date: Sun, 13 Mar 2016 18:12:39 +0100 Subject: [PATCH] Fix missing external symbol nghttp2_rcbuf_new2 --- lib/Makefile.msvc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/Makefile.msvc b/lib/Makefile.msvc index c34b6995..391ae0e3 100644 --- a/lib/Makefile.msvc +++ b/lib/Makefile.msvc @@ -90,7 +90,8 @@ NGHTTP2_SRC := nghttp2_pq.c \ nghttp2_option.c \ nghttp2_callbacks.c \ nghttp2_mem.c \ - nghttp2_http.c + nghttp2_http.c \ + nghttp2_rcbuf.c NGHTTP2_OBJ_R := $(addprefix $(OBJ_DIR)/r_, $(notdir $(NGHTTP2_SRC:.c=.obj))) NGHTTP2_OBJ_D := $(addprefix $(OBJ_DIR)/d_, $(notdir $(NGHTTP2_SRC:.c=.obj)))