Allow old openssl name in android client.
This commit is contained in:
parent
f56292afa4
commit
d7795c892b
6
client/Android/BuildFlags.java.in
Normal file
6
client/Android/BuildFlags.java.in
Normal file
@ -0,0 +1,6 @@
|
||||
package com.freerdp.freerdpcore.utils;
|
||||
|
||||
public class BuildFlags
|
||||
{
|
||||
private final static boolean USE_OPENSSL_DEFAULT_NAMES = @USE_OPENSSL_DEFAULT_NAMES@;
|
||||
}
|
@ -35,8 +35,15 @@ public class LibFreeRDP
|
||||
static
|
||||
{
|
||||
final String h264 = "openh264";
|
||||
final String[] libraries = { h264, "ssl", "crypto", "jpeg",
|
||||
"winpr2", "freerdp2", "freerdp-client2", "freerdp-android2" };
|
||||
final String[] libraries = { h264,
|
||||
"freerdp-openssl",
|
||||
"ssl",
|
||||
"crypto",
|
||||
"jpeg",
|
||||
"winpr2",
|
||||
"freerdp2",
|
||||
"freerdp-client2",
|
||||
"freerdp-android2" };
|
||||
final String LD_PATH = System.getProperty("java.library.path");
|
||||
|
||||
for (String lib : libraries)
|
||||
|
Loading…
Reference in New Issue
Block a user