Results 48 comments of Chris Young

@anchor76 Did you ever get this resolved? If I try to build Curl against AmiSSL now, I get: ``` ../lib/.libs/libcurl.a()(.text+0x58d6):: undefined reference to `_X509_free' ../lib/.libs/libcurl.a()(.text+0x59be):: undefined reference to `_X509_free' ../lib/.libs/libcurl.a()(.text+0x5bee)::...

OK, I've managed to build it but the curl executable won't connect to any secure sites: ``` curl: (35) OpenSSL SSL_connect: SSL_ERROR_SYSCALL in connection to www.howsmyssl.com:443 ```

You may want to try my amissl branch at https://github.com/chris-y/curl This will allow you to do a configure --with-amissl and build without any modifications (hopefully! It's geared up for building...

Sadly not. The [source code](https://github.com/curl/curl/blob/0bb56392d4d077c5d62c63831536354a29d59f26/lib/vtls/openssl.c#L2858) says: ``` /* detail is already set to the SSL error above */ /* If we e.g. use SSLv2 request-method and the server doesn't like...

Ah, OK, some of my code was messed up by GCC having a default __ixemul__ define even though this build of GCC has never been near ixemul ☹. I think...

OK, I have a working build. Yay! https://github.com/chris-y/curl/releases/download/curl-7_64_0-amissl/curl.zip

@anchor76 Here: https://github.com/chris-y/curl/releases/download/curl-7_64_0-amissl/libcurl.lzh Just make sure you build anything against it with -lamisslauto (or equivalent code) and use bsdsocket.library directly, not any C lib wrapper.

It was built for clib2, as follows: ``` Host setup: m68k-unknown-amigaos Install prefix: /opt/netsurf/m68k-unknown-amigaos/env Compiler: /opt/netsurf/m68k-unknown-amigaos/cross/bin/m68k-unknown-amigaos-gcc CFLAGS: -Werror-implicit-function-declaration -O2 -Wno-system-headers CPPFLAGS: -isystem /opt/netsurf/m68k-unknown-amigaos/env/include -isystem /opt/netsurf/m68k-unknown-amigaos/cross/m68k-unknown-amigaos/netinclude -D__NO_NET_API -I/opt/netsurf/m68k-unknown-amigaos/env/include LDFLAGS: -L/opt/netsurf/m68k-unknown-amigaos/env/lib -L/opt/netsurf/m68k-unknown-amigaos/env/lib...

3.4.6 I've never managed to get anything newer working for 68k.

I'm not entirely sure this is the right place for this, but since this is discussing building Curl with AmiSSL I'll ask here. Curl 7.77.0 contains @OliverUrbann's fixes, so this...