libmicrohttpd-01-openssl-conditional.patch 764 B

1234567891011121314151617181920
  1. Subject: [PATCH] Fix configure failure for --disable-spdy
  2. The @HAVE_OPENSSL@ conditional is used in src/Makefile.in so when SPDY
  3. support is forcibly disabled the AM_CONDITIONAL is never executed, causing
  4. configure to bail out.
  5. Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
  6. diff -Nura libmicrohttpd-0.9.29.orig/configure.ac libmicrohttpd-0.9.29/configure.ac
  7. --- libmicrohttpd-0.9.29.orig/configure.ac 2013-09-02 06:17:44.660620584 -0300
  8. +++ libmicrohttpd-0.9.29/configure.ac 2013-09-02 06:36:44.598189751 -0300
  9. @@ -341,6 +341,8 @@
  10. enable_spdy="yes"],
  11. [AM_CONDITIONAL(HAVE_OPENSSL, false)
  12. enable_spdy="no"])
  13. +else
  14. + AM_CONDITIONAL(HAVE_OPENSSL, false)
  15. fi
  16. if test "$enable_spdy" = "yes"