[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [libmicrohttpd] [PATCH] Fix configure failure for --disable-spdy
From: |
Christian Grothoff |
Subject: |
Re: [libmicrohttpd] [PATCH] Fix configure failure for --disable-spdy |
Date: |
Mon, 02 Sep 2013 18:02:10 +0200 |
User-agent: |
Mozilla/5.0 (X11; Linux x86_64; rv:17.0) Gecko/20130704 Icedove/17.0.7 |
Thanks, patched as suggested. -Christian
On 09/02/2013 12:14 PM, Gustavo Zacarias wrote:
> The @HAVE_OPENSSL@ conditional is used in src/Makefile.in so when SPDY
> support is forcibly disabled the AM_CONDITIONAL is never executed, causing
> configure to bail out.
>
> Signed-off-by: Gustavo Zacarias <address@hidden>
>
> diff -Nura libmicrohttpd-0.9.29.orig/configure.ac
> libmicrohttpd-0.9.29/configure.ac
> --- libmicrohttpd-0.9.29.orig/configure.ac 2013-09-02 06:17:44.660620584
> -0300
> +++ libmicrohttpd-0.9.29/configure.ac 2013-09-02 06:36:44.598189751 -0300
> @@ -341,6 +341,8 @@
> enable_spdy="yes"],
> [AM_CONDITIONAL(HAVE_OPENSSL, false)
> enable_spdy="no"])
> +else
> + AM_CONDITIONAL(HAVE_OPENSSL, false)
> fi
>
> if test "$enable_spdy" = "yes"
>