Last change
on this file since 104078 was 104078, checked in by vboxsync, 11 months ago |
openssl-3.1.5: Applied and adjusted our OpenSSL changes to 3.1.4. bugref:10638
|
File size:
365 bytes
|
Line | |
---|
1 | package platform::Cygwin;
|
---|
2 |
|
---|
3 | use strict;
|
---|
4 | use warnings;
|
---|
5 | use Carp;
|
---|
6 |
|
---|
7 | use vars qw(@ISA);
|
---|
8 |
|
---|
9 | require platform::mingw;
|
---|
10 | @ISA = qw(platform::mingw);
|
---|
11 |
|
---|
12 | # Assume someone set @INC right before loading this module
|
---|
13 | use configdata;
|
---|
14 |
|
---|
15 | sub sharedname {
|
---|
16 | my $class = shift;
|
---|
17 | my $lib = platform::mingw->sharedname(@_);
|
---|
18 | $lib =~ s|^lib|cyg| if defined $lib;
|
---|
19 | return $lib;
|
---|
20 | }
|
---|
21 |
|
---|
22 | 1;
|
---|
Note:
See
TracBrowser
for help on using the repository browser.