Re: Building software that requires older libressl on snapshots

2018-03-21 Thread Patrick Marchand
> There is a patch on rust-openssl to force the build using the latest > suppported version (see > lang/rust/patches/patch-src_vendor_openssl-sys_build_rs). Applying the patch worked > Running testsuite is usually a good method to check breakage. And the test suite passed > For me, rust FFI is a

Re: Building software that requires older libressl on snapshots

2018-03-21 Thread Stuart Henderson
On 2018-03-21, Sebastien Marie wrote: > For me, rust FFI is a bit a shame: it is a *copy* of C headers, written > and maintained in Rust language. It is good for crosscompilation (as > Rust know how to build stuff without any C headers), but it is awful to > maintain and keep up-to-date. If these

Re: Building software that requires older libressl on snapshots

2018-03-20 Thread Sebastien Marie
On Tue, Mar 20, 2018 at 11:18:06PM -0400, Patrick Marchand wrote: > So I'm trying to build pijul (rust vcs based on patch theory) but it > requires rust-openssl, which only supports the latest release of > libressl (2.6). Is there a quick fix to build software that requires > an older libressl than

Building software that requires older libressl on snapshots

2018-03-20 Thread Patrick Marchand
So I'm trying to build pijul (rust vcs based on patch theory) but it requires rust-openssl, which only supports the latest release of libressl (2.6). Is there a quick fix to build software that requires an older libressl than what is currently used in snapshots? Or should I try to patch the rust-op