blob: 98781c98e7b0cb3aa3685d89a92c04e3f1d5145b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
use ExtUtils::MakeMaker;
WriteMakefile(
NAME => 'File::Glob',
VERSION_FROM => 'Glob.pm',
MAN3PODS => {}, # Pods will be built by installman.
OBJECT => 'bsd_glob$(OBJ_EXT) Glob$(OBJ_EXT)',
## uncomment for glob debugging (will cause make test to fail)
# DEFINE => '-DGLOB_DEBUG',
# OPTIMIZE => '-g',
);
use Config;
sub MY::cflags {
package MY;
my $inherited = shift->SUPER::cflags(@_);
if ($Config::Config{archname} =~ /^aix/ and
$Config::Config{use64bitall} eq 'define') {
$inherited =~ s/\s-O\d?//m;
}
$inherited;
}
|