I'm trying to patch a program that checked for a portable version of perl like this:
use Config;
my $is_portable = $Config{userelocatableinc};
This does not work on Strawberry Perl, and thus the program is failing.
I am using Perl 5.20.1, 64-bit:
>perl -V:userelocatableinc
userelocatableinc='undef';
What can I do to find if the current Perl is a portable one, Strawberry or not?