Roxen.git
/
server
/
etc
/
env.d
/
java.pike
version
»
Context lines:
10
20
40
80
file
none
3
Roxen.git/server/etc/env.d/java.pike:75:
array archs = ({ (Process.popen("(/usr/bin/uname -p||uname -p) 2>/dev/null | sed -e 's/^i[4-9]86/i386/'")||"")-"\n", (Process.popen("(/usr/bin/uname -m||uname -m) 2>/dev/null | sed -e 's/^i[4-9]86/i386/'")||"")-"\n" }); foreach(Array.uniq(archs), string arch) { if(arch == "") arch = "_";
+
else if(arch == "x86_64")
+
arch = "amd64";
-
foreach(({arch+"/"+threads_type, arch+"/classic", arch}), string dir) {
+
foreach(({arch+"/"+threads_type, arch+"/classic",
arch+"/server",
arch}), string dir) {
mixed s = file_stat(jrehome+"/lib/"+dir); if(s && s[1]==-2) env->append("LD_LIBRARY_PATH", jrehome+"/lib/"+dir); } } /* AIX */ if(file_stat(jrehome+"/bin/libjava.a")) env->append("LIBPATH", jrehome+"/bin/:"+jrehome+"/bin/classic/" ); // Only add _JAVA_OPTIONS if user hasn't got it already if (!env->get("_JAVA_OPTIONS")) env->set("_JAVA_OPTIONS", "\"-Xmx256m -Xrs\""); }