Commit 24d92b97 authored by Tatsuhiro Tsujikawa's avatar Tatsuhiro Tsujikawa

Add deprecation warning when spdylay support is enabled

parent 4c92ff18
...@@ -119,7 +119,7 @@ AC_ARG_WITH([jemalloc], ...@@ -119,7 +119,7 @@ AC_ARG_WITH([jemalloc],
AC_ARG_WITH([spdylay], AC_ARG_WITH([spdylay],
[AS_HELP_STRING([--with-spdylay], [AS_HELP_STRING([--with-spdylay],
[Use spdylay [default=no]])], [(Deprecated) Use spdylay [default=no]])],
[request_spdylay=$withval], [request_spdylay=no]) [request_spdylay=$withval], [request_spdylay=no])
AC_ARG_WITH([systemd], AC_ARG_WITH([systemd],
...@@ -949,3 +949,7 @@ AC_MSG_NOTICE([summary of build options: ...@@ -949,3 +949,7 @@ AC_MSG_NOTICE([summary of build options:
Python bindings:${enable_python_bindings} Python bindings:${enable_python_bindings}
Threading: ${enable_threads} Threading: ${enable_threads}
]) ])
if test "x${have_spdylay}" == "xyes"; then
AC_MSG_WARN([spdylay support was deprecated, and will be removed in v1.29.0.])
fi
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment