Index: branches/2018Q4/audio/xmms2/files/patch-src_plugins_airplay_raop__client.c =================================================================== --- branches/2018Q4/audio/xmms2/files/patch-src_plugins_airplay_raop__client.c (nonexistent) +++ branches/2018Q4/audio/xmms2/files/patch-src_plugins_airplay_raop__client.c (revision 482303) @@ -0,0 +1,25 @@ +--- src/plugins/airplay/raop_client.c.orig 2011-10-20 19:26:08 UTC ++++ src/plugins/airplay/raop_client.c +@@ -1,6 +1,8 @@ + #include + #include + ++#include ++#include + #include + #include + #include +@@ -137,8 +139,13 @@ raop_rsa_encrypt (guchar *text, gint len, guchar *res) + static const guchar exp[] = {0x01, 0x00, 0x01}; + + rsa = RSA_new (); ++ ++#if OPENSSL_VERSION_NUMBER < 0x10100000L + rsa->n = BN_bin2bn (mod, 256, NULL); + rsa->e = BN_bin2bn (exp, 3, NULL); ++#else ++ RSA_set0_key(rsa, BN_bin2bn (mod, 256, NULL), BN_bin2bn (exp, 3, NULL), NULL); ++#endif + + size = RSA_public_encrypt (len, text, res, rsa, RSA_PKCS1_OAEP_PADDING); + Property changes on: branches/2018Q4/audio/xmms2/files/patch-src_plugins_airplay_raop__client.c ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: branches/2018Q4 =================================================================== --- branches/2018Q4 (revision 482302) +++ branches/2018Q4 (revision 482303) Property changes on: branches/2018Q4 ___________________________________________________________________ Modified: svn:mergeinfo ## -0,0 +0,1 ## Merged /head:r482109