blob: ae03b2c2250b8324ed7da7024d923f1d071ee4bd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
eval `$JPL_SRC/setvars -perl`;
$java = $ENV{JAVA_HOME};
$jpl = $ENV{JPL_HOME};
# Are we using Kaffe?
#
$KAFFE = 0;
# What is the name of the JVM library?
#
$LIBJVM="java";
# Where is the JVM library?
#
$LIBLOC="/usr/local/java/lib/i686/green_threads/";
# Where are the Java includes?
#
@INCLUDE = ("$java/include", "$java/include/$^O", "$java/include/genunix");
# Are we embedding Perl in Java?
#
$EMBEDDEDPERL = 0;
1;
|