From 24d92b979d36ebe82b24c831265ea1352a1aa0ff Mon Sep 17 00:00:00 2001 From: Tatsuhiro Tsujikawa Date: Sat, 25 Nov 2017 22:16:23 +0900 Subject: [PATCH] Add deprecation warning when spdylay support is enabled --- configure.ac | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 29deb289..8742e2e5 100644 --- a/configure.ac +++ b/configure.ac @@ -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