This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Fix a memory leak in ck_grep(), spotted by coverity:
[perl5.git] / jpl / JNI / JNIConfig.Win32
1 # Are we using Kaffe?
2 #
3 $KAFFE = 0;
4
5 # Where are the Java includes?
6 #
7 @INCLUDE = ("C:\\jdk1.1.8\\include", "C:\\jdk1.1.8\\include\\win32");
8
9 # Are we embedding Perl in Java?
10 #
11 $EMBEDDEDPERL = 0;
12
13 # Extra C flags
14 #
15 $CCFLAGS=" -Z7 -D_DEBUG";
16
17 $MYEXTLIB = "C:\\jdk1.1.8\\lib\\javai.lib " .
18             "$Config{installarchlib}\\CORE\\perlcore.lib " .
19             "$Config{installarchlib}\\CORE\\perlcapi.lib";
20
21 1;