Re: [OE-core] [PATCH] wget: use GnuTLS instead of OpenSSL

2014-07-25 Thread Koen Kooi
Op 4 jul. 2014, om 11:08 heeft Jack Mitchell m...@communistcode.co.uk het volgende geschreven: On 16/06/14 11:52, Ross Burton wrote: OpenSSL has license complications and GnuTLS is preferred, so although the license complications don't impact wget use GnuTLS for consistency. Also add a

Re: [OE-core] [PATCH] wget: use GnuTLS instead of OpenSSL

2014-07-25 Thread Khem Raj
On Mon, Jun 16, 2014 at 3:52 AM, Ross Burton ross.bur...@intel.com wrote: OpenSSL has license complications and GnuTLS is preferred, so although the license complications don't impact wget use GnuTLS for consistency. Also add a recommendation on ca-certificates so that https: URLs work.

Re: [OE-core] [PATCH] wget: use GnuTLS instead of OpenSSL

2014-07-25 Thread Burton, Ross
On 25 July 2014 17:22, Khem Raj raj.k...@gmail.com wrote: it would be nice if this was either virtual/ssh or some sort of PACKAGECONFIG so folks who have ssl on the system dont need to pull gnutls as well. There's API differences so it would have to be a PACKAGECONFIG but agreed. For what

Re: [OE-core] [PATCH] wget: use GnuTLS instead of OpenSSL

2014-07-25 Thread Khem Raj
On Thu, Jul 17, 2014 at 5:48 AM, Richard Purdie richard.pur...@linuxfoundation.org wrote: So why on earth is it looking at /usr/lib/libgnutls.so? Total guess by try adding EXTRA_OECONF += --without-libgnutls-prefix The problem is due to use of AC_LIB_HAVE_LINKFLAGS([gnutls] since we use

Re: [OE-core] [PATCH] wget: use GnuTLS instead of OpenSSL

2014-07-25 Thread Richard Purdie
On Fri, 2014-07-25 at 09:40 -0700, Khem Raj wrote: On Thu, Jul 17, 2014 at 5:48 AM, Richard Purdie richard.pur...@linuxfoundation.org wrote: So why on earth is it looking at /usr/lib/libgnutls.so? Total guess by try adding EXTRA_OECONF += --without-libgnutls-prefix The problem is due to

Re: [OE-core] [PATCH] wget: use GnuTLS instead of OpenSSL

2014-07-17 Thread Jack Mitchell
So this error is still blocking my master build, any ideas? On 04/07/14 10:08, Jack Mitchell wrote: Ross, I've just pulled this in today after being on holiday for a while and it causes a breakage on my system. | checking for libgnutls... no | configure: error: --with-ssl=gnutls was given,

Re: [OE-core] [PATCH] wget: use GnuTLS instead of OpenSSL

2014-07-17 Thread Richard Purdie
On Thu, 2014-07-17 at 12:06 +0100, Jack Mitchell wrote: So this error is still blocking my master build, any ideas? Share the config.log so we can see how the configure test is failing? Is gnutls actually built and in the sysroot or not? Cheers, Richard --

Re: [OE-core] [PATCH] wget: use GnuTLS instead of OpenSSL

2014-07-17 Thread Jack Mitchell
config.log: http://ix.io/dr3 and yes, gnutls is being built, or at least it's in the work dir. [jack@jackArch gnutls]$ pwd /home/jack/Work/oe-core.git/test-build/tmp-eglibc/work/core2-32-oe-linux/gnutls [jack@jackArch gnutls]$ ls 2.12.23-r8.4 3.2.13-r0 3.2.15-r0 3.3.5-r0 [jack@jackArch

Re: [OE-core] [PATCH] wget: use GnuTLS instead of OpenSSL

2014-07-17 Thread Jack Mitchell
Wait, that config.log is bad. It's from my build with the patch reverted. Hold up I'll get the proper one out. On 17/07/14 12:39, Jack Mitchell wrote: config.log: http://ix.io/dr3 and yes, gnutls is being built, or at least it's in the work dir. [jack@jackArch gnutls]$ pwd

Re: [OE-core] [PATCH] wget: use GnuTLS instead of OpenSSL

2014-07-17 Thread Jack Mitchell
Failed with gnutls config.log: http://ix.io/dr4 On 17/07/14 12:39, Jack Mitchell wrote: config.log: http://ix.io/dr3 and yes, gnutls is being built, or at least it's in the work dir. [jack@jackArch gnutls]$ pwd

Re: [OE-core] [PATCH] wget: use GnuTLS instead of OpenSSL

2014-07-17 Thread Richard Purdie
On Thu, 2014-07-17 at 12:46 +0100, Jack Mitchell wrote: Failed with gnutls config.log: http://ix.io/dr4 That is helpful: configure:35748: checking for libgnutls configure:35772: i586-oe-linux-gcc -m32 -march=core2 -mtune=core2 -msse3 -mfpmath=sse

Re: [OE-core] [PATCH] wget: use GnuTLS instead of OpenSSL

2014-07-17 Thread Richard Purdie
On Thu, 2014-07-17 at 13:39 +0100, Richard Purdie wrote: On Thu, 2014-07-17 at 12:46 +0100, Jack Mitchell wrote: Failed with gnutls config.log: http://ix.io/dr4 That is helpful: configure:35748: checking for libgnutls configure:35772: i586-oe-linux-gcc -m32 -march=core2 -mtune=core2

Re: [OE-core] [PATCH] wget: use GnuTLS instead of OpenSSL

2014-07-04 Thread Jack Mitchell
On 16/06/14 11:52, Ross Burton wrote: OpenSSL has license complications and GnuTLS is preferred, so although the license complications don't impact wget use GnuTLS for consistency. Also add a recommendation on ca-certificates so that https: URLs work. Signed-off-by: Ross Burton

[OE-core] [PATCH] wget: use GnuTLS instead of OpenSSL

2014-06-16 Thread Ross Burton
OpenSSL has license complications and GnuTLS is preferred, so although the license complications don't impact wget use GnuTLS for consistency. Also add a recommendation on ca-certificates so that https: URLs work. Signed-off-by: Ross Burton ross.bur...@intel.com ---