From 399328cb49a9eab0439346dc03d3195052e19d72 Mon Sep 17 00:00:00 2001 From: Tatsuhiro Tsujikawa Date: Thu, 12 Mar 2015 01:18:04 +0900 Subject: [PATCH] Depend on spdylay >= 1.3.2 for spdylay_session_set_stream_user_data --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index f8b1de11..0078b1de 100644 --- a/configure.ac +++ b/configure.ac @@ -373,7 +373,7 @@ fi # spdylay (for src/nghttpx and src/h2load) have_spdylay=no if test "x${request_spdylay}" != "xno"; then - PKG_CHECK_MODULES([LIBSPDYLAY], [libspdylay >= 1.3.0], + PKG_CHECK_MODULES([LIBSPDYLAY], [libspdylay >= 1.3.2], [have_spdylay=yes], [have_spdylay=no]) if test "x${have_spdylay}" = "xyes"; then AC_DEFINE([HAVE_SPDYLAY], [1], [Define to 1 if you have `spdylay` library.])