Re: [pulseaudio-discuss] [PATCH v2] raop: add compatibility with openssl 1.1.0

2016-11-03 Thread Tanu Kaskinen
On Thu, 2016-11-03 at 09:54 -0300, Felipe Sateler wrote: > On 3 November 2016 at 09:30, Tanu Kaskinen wrote: > > Openssl 1.1.0 made all structs opaque, which caused a build failure in > > raop_client.c. The struct member assignments are now replaced with a > > call to RSA_set0_key(). > > > > BugL

Re: [pulseaudio-discuss] [PATCH v2] raop: add compatibility with openssl 1.1.0

2016-11-03 Thread Felipe Sateler
On 3 November 2016 at 09:30, Tanu Kaskinen wrote: > Openssl 1.1.0 made all structs opaque, which caused a build failure in > raop_client.c. The struct member assignments are now replaced with a > call to RSA_set0_key(). > > BugLink: https://bugs.freedesktop.org/show_bug.cgi?id=96726 > --- > > Chan

[pulseaudio-discuss] [PATCH v2] raop: add compatibility with openssl 1.1.0

2016-11-03 Thread Tanu Kaskinen
Openssl 1.1.0 made all structs opaque, which caused a build failure in raop_client.c. The struct member assignments are now replaced with a call to RSA_set0_key(). BugLink: https://bugs.freedesktop.org/show_bug.cgi?id=96726 --- Changes in v2: * More verbose comment. * Implement RSA_set0_key() a