From ede9884c59dd8586e1041372270e3e1b54f33327 Mon Sep 17 00:00:00 2001 From: Guenter Knauf Date: Fri, 24 Oct 2014 04:22:04 +0200 Subject: Added MinGW support to build with nghttp2. --- src/Makefile.m32 | 11 +++++++++++ 1 file changed, 11 insertions(+) (limited to 'src') diff --git a/src/Makefile.m32 b/src/Makefile.m32 index 91b38a150..ddfed417a 100644 --- a/src/Makefile.m32 +++ b/src/Makefile.m32 @@ -54,6 +54,10 @@ endif ifndef LDAP_SDK LDAP_SDK = c:/novell/ndk/cldapsdk/win32 endif +# Edit the path below to point to the base of your nghttp2 package. +ifndef NGHTTP2_PATH +NGHTTP2_PATH = ../../nghttp2-0.6.4 +endif PROOT = .. @@ -161,6 +165,9 @@ ifeq ($(findstring -winssl,$(CFG)),-winssl) WINSSL = 1 SSPI = 1 endif +ifeq ($(findstring -nghttp2,$(CFG)),-nghttp2) +NGHTTP2 = 1 +endif INCLUDES = -I. -I../include -I../lib @@ -188,6 +195,10 @@ ifdef RTMP CFLAGS += -DUSE_LIBRTMP curl_LDADD += -L"$(LIBRTMP_PATH)/librtmp" -lrtmp -lwinmm endif +ifdef NGHTTP2 + CFLAGS += -DUSE_NGHTTP2 + curl_LDADD += -L"$(NGHTTP2_PATH)/lib" -lnghttp2 +endif ifdef SSH2 CFLAGS += -DUSE_LIBSSH2 -DHAVE_LIBSSH2_H curl_LDADD += -L"$(LIBSSH2_PATH)/win32" -lssh2 -- cgit v1.2.3