Hi,
I'm trying to use the GL4Java Installer for the new version of Arkanae.
I think that a "ldconfig" may be needed after Linux installation !
Something like :
protected void ldconfig() {
if("Linux".equals(System.getProperty("os.name"))) {
System.out.println("Linux system - good ! - Running ldconfig...");
try {
Process p = Runtime.getRuntime().exec("ldconfig");
int r = p.waitFor();
if(r != 0) throw new Exception("ldconfig failed ! You should do
it manually...");
}
catch(Exception x) {
x.printStackTrace();
}
}
}
I'm right ???
Thanks !
A11W
|