We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fe0ffc1 commit d07c6dcCopy full SHA for d07c6dc
lib/ExtUtils/Liblist/Kid.pm
@@ -210,7 +210,8 @@ sub _unix_os2_ext {
210
# Now update library lists
211
212
# what do we know about this library...
213
- my $is_dyna = ( $fullname !~ /\Q$Config_libext\E\z/ );
+ # "Sounds like we should always assume it's a dynamic library on AIX."
214
+ my $is_dyna = $^O eq 'aix' ? 1 : ( $fullname !~ /\Q$Config_libext\E\z/ );
215
my $in_perl = ( $libs =~ /\B-l:?\Q${thislib}\E\b/s );
216
217
# include the path to the lib once in the dynamic linker path
0 commit comments