blob: 9b2fa874142d20d59b9847088c709df6cadc9029 (
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
26
|
eval `$JPL_SRC/setvars -perl`;
$java = $ENV{JAVA_HOME};
$jpl = $ENV{JPL_HOME};
# Are we using Kaffe?
#
$KAFFE = 1;
# What is the name of the JVM library?
#
$LIBJVM="kaffevm";
# Where is the JVM library?
#
$LIBLOC="/usr/local/lib";
# Where are the Java includes?
#
#@INCLUDE = ('$java/include', '$java/include/$^O' '$java/include/genunix');
@INCLUDE = ( '/usr/local/include/kaffe');
# Are we embedding Perl in Java?
#
$EMBEDDEDPERL = 0;
1;
|