From 04038853b905fc2321e96c6da948ac1fcda52550 Mon Sep 17 00:00:00 2001 From: Michael Wallner Date: Wed, 4 Feb 2015 10:06:34 +0100 Subject: [PATCH] check for HTTP2 support --- config9.m4 | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/config9.m4 b/config9.m4 index 3b1f701..6178eb2 100644 --- a/config9.m4 +++ b/config9.m4 @@ -202,6 +202,14 @@ dnl ---- if test `echo $CURL_VERSION | $SED -e 's/[[^0-9]]/ /g' | $AWK '{print $1*10000 + $2*100 + $3}'` -lt 71802; then AC_MSG_ERROR([libcurl version greater or equal to 7.18.2 required]) fi + + AC_MSG_CHECKING([for HTTP2 support in libcurl]) + if $CURL_CONFIG --features | $EGREP -q HTTP2; then + AC_MSG_RESULT([yes]) + AC_DEFINE([PHP_HTTP_HAVE_HTTP2], [1], [ ]) + else + AC_MSG_RESULT([no]) + fi dnl dnl compile tests -- 2.30.2