Add deprecation warning when spdylay support is enabled

This commit is contained in:
Tatsuhiro Tsujikawa 2017-11-25 22:16:23 +09:00
parent 4c92ff1843
commit 24d92b979d
1 changed files with 5 additions and 1 deletions

View File

@ -119,7 +119,7 @@ AC_ARG_WITH([jemalloc],
AC_ARG_WITH([spdylay],
[AS_HELP_STRING([--with-spdylay],
[Use spdylay [default=no]])],
[(Deprecated) Use spdylay [default=no]])],
[request_spdylay=$withval], [request_spdylay=no])
AC_ARG_WITH([systemd],
@ -949,3 +949,7 @@ AC_MSG_NOTICE([summary of build options:
Python bindings:${enable_python_bindings}
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