[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [libmicrohttpd] Cross-compilation is broken in 0.9.35
From: |
Christian Grothoff |
Subject: |
Re: [libmicrohttpd] Cross-compilation is broken in 0.9.35 |
Date: |
Sun, 04 May 2014 11:06:59 +0200 |
User-agent: |
Mozilla/5.0 (X11; Linux x86_64; rv:17.0) Gecko/20131103 Icedove/17.0.10 |
Thanks, fixed in SVN 33160.
Happy hacking!
Christian
On 05/04/2014 10:03 AM, Bernd Kuhls wrote:
> Hi,
>
> the latest release added
>
> AC_CHECK_FILE([$with_gnutls/include/gnutls/gnutls.h],
>
> to configure.ac which is not cross-compile aware, for the precise error
> message have a look at the bottom of
> http://autobuild.buildroot.net/results/cb2/cb2cec1295a40667a3c21060864dd0e65a
> 312c3e/build-end.log
>
> The following patch fixes the problem
>
> --- configure.ac 2014-05-02 20:38:40.000000000 +0200
> +++ configure.ac 2014-05-04 09:17:00.000000000 +0200
> @@ -639,8 +639,7 @@
> SAVE_CPPFLAGS="$CPPFLAGS"
> LDFLAGS="-L$with_gnutls/lib $LDFLAGS"
> CPPFLAGS="-I$with_gnutls/include $CPPFLAGS"
> - AC_CHECK_FILE([$with_gnutls/include/gnutls/gnutls.h],
> - [AC_CHECK_HEADERS([gnutls/gnutls.h],
> + AC_CHECK_HEADERS([gnutls/gnutls.h],
> [AC_CHECK_LIB([gnutls], [gnutls_priority_set],
> [
> GNUTLS_CPPFLAGS="-I$with_gnutls/include"
> @@ -648,7 +647,7 @@
> GNUTLS_LIBS="-lgnutls"
> AC_CHECK_LIB([gnutls], [gnutls_load_file], [AC_CHECK_LIB
> ([gnutls], [gnutls_privkey_import_x509_raw], [have_gnutls_sni=yes])])
> have_gnutls=yes
> - ])])])
> + ])])
> AS_IF([test "x$have_gnutls" != "xyes"], [AC_MSG_ERROR([can't find
> usable libgnutls at specified prefix $with_gnutls])])
> LDFLAGS="$SAVE_LDFLAGS"
> CPPFLAGS="$SAVE_CPPFLAGS"
>
> Regards, Bernd
>
>