blob: 3ac0fdac4c7b9d89e0187f5846a61bce875bb13a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
# Add explicit link to deb.o to pick up _Perl_deb symbol which is not
# mentioned in perl56.lib in non DEBUGGING builds
# Taken lock, stock, and barrel from hints/aix.pl
# -- BKS, 11-11-2000
if ($^O =~ /MSWin32/) {
$self->{OBJECT} .= ' ../../deb$(OBJ_EXT)';
}
# Add explicit link to deb.o to pick up _Perl_deb symbol which is not
# mentioned in perl56.lib in non DEBUGGING builds
# Taken lock, stock, and barrel from hints/aix.pl
# -- BKS, 11-11-2000
if ($^O =~ /MSWin32/) {
$self->{OBJECT} .= ' ../../deb$(OBJ_EXT)';
}
|