defined $PLATFORM || die "PLATFORM undefined, must be one of: @PLATFORM\n";
exists $PLATFORM{$PLATFORM} || die "PLATFORM must be one of: @PLATFORM\n";
-if ($PLATFORM eq 'win32') {
+if ($PLATFORM eq 'win32' or $PLATFORM eq "aix") {
# Add the compile-time options that miniperl was built with to %define.
# These are not the same options as perl itself will be built with since
# miniperl is built with a canned config (one of the win32/config_H.*)
# header files and don't include any BUILDOPT's that the user might have
# chosen to disable because the canned configs are minimal configs that
# don't include any of those options.
- my $config = `$^X -V`;
+ my $config = `$^X -Ilib -V`;
my($options) = $config =~ /^ Compile-time options: (.*?)^ \S/ms;
+ print STDERR "Options: ($options)\n";
foreach (split /\s+/, $options) {
$define{$_} = 1;
}