From a4d2104c3c23debb9cf8cb374db91535ae8da589 Mon Sep 17 00:00:00 2001 From: Tatsuhiro Tsujikawa Date: Tue, 2 Aug 2016 22:00:00 +0900 Subject: [PATCH] Revert "Output availability of ALPN in configure summary" This reverts commit f4a4abd180485c9c62a7301b1330ab4db087709c. --- configure.ac | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/configure.ac b/configure.ac index 1bc0326c..ab9bd2ed 100644 --- a/configure.ac +++ b/configure.ac @@ -650,16 +650,6 @@ AC_CHECK_FUNCS([ \ AC_CHECK_FUNC([timerfd_create], [have_timerfd_create=yes], [have_timerfd_create=no]) -# Explicitly check for availability of ALPN for human - -save_LDFLAGS=$LDFLAGS - -LDFLAGS="$LDFLAGS $OPENSSL_LIBS" - -AC_CHECK_FUNC([SSL_CTX_set_alpn_select_cb], [have_alpn=yes], [have_alpn=no]) - -LDFLAGS=$save_LDFLAGS - # For cygwin: we can link initgroups, so AC_CHECK_FUNCS succeeds, but # cygwin disables initgroups due to feature test macro magic with our # configuration. FreeBSD declares initgroups() in unistd.h. @@ -877,5 +867,4 @@ AC_MSG_NOTICE([summary of build options: Examples: ${enable_examples} Python bindings:${enable_python_bindings} Threading: ${enable_threads} - ALPN: ${have_alpn} ])