mirror of
https://github.com/overcuriousity/autopsy-flatpak.git
synced 2025-07-06 21:00:22 +00:00
Add libiconv-2 for new PostgreSQL dependency
This commit is contained in:
parent
c4888f511e
commit
846fd421c5
@ -122,16 +122,18 @@ public class Installer extends ModuleInstall {
|
||||
logger.log(Level.SEVERE, "Error loading SSLEAY32 library, ", e); //NON-NLS
|
||||
}
|
||||
|
||||
// This library name is different in 32-bit versus 64-bit
|
||||
String libintlName = "libintl-8"; //NON-NLS
|
||||
if (PlatformUtil.is64BitJVM() == false) {
|
||||
libintlName = "intl"; //NON-NLS
|
||||
}
|
||||
try {
|
||||
System.loadLibrary(libintlName); //NON-NLS
|
||||
logger.log(Level.INFO, libintlName + " library loaded"); //NON-NLS
|
||||
System.loadLibrary("libiconv-2"); //NON-NLS
|
||||
logger.log(Level.INFO, "libiconv-2 library loaded"); //NON-NLS
|
||||
} catch (UnsatisfiedLinkError e) {
|
||||
logger.log(Level.SEVERE, "Error loading " + libintlName + " library, ", e); //NON-NLS
|
||||
logger.log(Level.SEVERE, "Error loading libiconv-2 library, ", e); //NON-NLS
|
||||
}
|
||||
|
||||
try {
|
||||
System.loadLibrary("libintl-8"); //NON-NLS
|
||||
logger.log(Level.INFO, "libintl-8 library loaded"); //NON-NLS
|
||||
} catch (UnsatisfiedLinkError e) {
|
||||
logger.log(Level.SEVERE, "Error loading libintl-8 library, ", e); //NON-NLS
|
||||
}
|
||||
|
||||
try {
|
||||
@ -156,7 +158,7 @@ public class Installer extends ModuleInstall {
|
||||
/**
|
||||
* Check if JavaFx initialized
|
||||
*
|
||||
* @return false if java fx not initialized (classes coult not load), true
|
||||
* @return false if java fx not initialized (classes could not load), true
|
||||
* if initialized
|
||||
*/
|
||||
public static boolean isJavaFxInited() {
|
||||
|
@ -1,5 +1,5 @@
|
||||
#Updated by build script
|
||||
#Mon, 22 Feb 2016 16:37:47 -0500
|
||||
#Tue, 28 Jun 2016 10:55:17 -0400
|
||||
LBL_splash_window_title=Starting Autopsy
|
||||
SPLASH_HEIGHT=314
|
||||
SPLASH_WIDTH=538
|
||||
|
@ -1,4 +1,4 @@
|
||||
#Updated by build script
|
||||
#Mon, 22 Feb 2016 16:37:47 -0500
|
||||
#Tue, 28 Jun 2016 10:55:17 -0400
|
||||
CTL_MainWindow_Title=Autopsy 4.1.0
|
||||
CTL_MainWindow_Title_No_Project=Autopsy 4.1.0
|
||||
|
@ -53,6 +53,7 @@
|
||||
<include name="libeay32.dll"/>
|
||||
<include name="ssleay32.dll"/>
|
||||
<include name="libintl-8.dll"/>
|
||||
<include name="libiconv-2.dll"/>
|
||||
<include name="libpq.dll"/>
|
||||
<include name="msvcr120.dll"/>
|
||||
</fileset>
|
||||
|
Loading…
x
Reference in New Issue
Block a user