Anybody know how to access non-core Win32.pm module functions with the latest Cygwin perl-5.8.8 package? I'm upgrading a Cygwin install I maintain to the latest release, and some Perl Win32.pm module functions that an auto configure script I wrote uses seem to have disappeared.
The specific functions that are missing are:
Win32::IsAdminUser()
Win32::LookupAccountName()
Previously with the Cygwin perl-5.8.7 package these could be accessed by simply loading the Win32.pm module first. However, with the Cygwin perl-5.8.8 package, the Win32.pm module doesn't exist. Instead there is a Win32Core.pm module that implements the Win32 CORE functions, which doesn't include the above two functions.
Is there a solution short of manually re-installing the Win32 module?