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 34e77b0 commit 3ae8f20Copy full SHA for 3ae8f20
t/Liblist_Kid.t
@@ -58,6 +58,19 @@ sub conf_reset {
58
delete $Config{$_} for keys %Config;
59
%Config = %save_config;
60
$Config{installarchlib} = 'lib';
61
+ # The following are all used and always are defined in the real world.
62
+ # Define them to something here to avoid spewing uninitialized value warnings.
63
+ if ($^O eq 'VMS') {
64
+ $Config{ldflags} = '';
65
+ $Config{dbgprefix} = '';
66
+ $Config{libc} = '';
67
+ $Config{ext_ext} = '';
68
+ $Config{lib_ext} = '';
69
+ $Config{obj_ext} = '';
70
+ $Config{so} = '';
71
+ $Config{vms_cc_type} = '';
72
+ $Config{libpth} = '';
73
+ }
74
delete $ENV{LIB};
75
delete $ENV{LIBRARY_PATH};
76
return;
0 commit comments