47 lines
1.8 KiB
Perl
Vendored
47 lines
1.8 KiB
Perl
Vendored
package OpenSSL::safe::installdata;
|
|
|
|
use strict;
|
|
use warnings;
|
|
use Exporter;
|
|
our @ISA = qw(Exporter);
|
|
our @EXPORT = qw(
|
|
@PREFIX
|
|
@libdir
|
|
@BINDIR @BINDIR_REL_PREFIX
|
|
@LIBDIR @LIBDIR_REL_PREFIX
|
|
@INCLUDEDIR @INCLUDEDIR_REL_PREFIX
|
|
@APPLINKDIR @APPLINKDIR_REL_PREFIX
|
|
@ENGINESDIR @ENGINESDIR_REL_LIBDIR
|
|
@MODULESDIR @MODULESDIR_REL_LIBDIR
|
|
@PKGCONFIGDIR @PKGCONFIGDIR_REL_LIBDIR
|
|
@CMAKECONFIGDIR @CMAKECONFIGDIR_REL_LIBDIR
|
|
$COMMENT $VERSION @LDLIBS
|
|
);
|
|
|
|
our $COMMENT = '';
|
|
our @PREFIX = ( '/nonexistent' );
|
|
our @libdir = ( '/nonexistent/lib64' );
|
|
our @BINDIR = ( '/nonexistent/bin' );
|
|
our @BINDIR_REL_PREFIX = ( 'bin' );
|
|
our @LIBDIR = ( '/nonexistent/lib64' );
|
|
our @LIBDIR_REL_PREFIX = ( 'lib64' );
|
|
our @INCLUDEDIR = ( '/nonexistent/include' );
|
|
our @INCLUDEDIR_REL_PREFIX = ( 'include' );
|
|
our @APPLINKDIR = ( '/nonexistent/include/openssl' );
|
|
our @APPLINKDIR_REL_PREFIX = ( 'include/openssl' );
|
|
our @ENGINESDIR = ( '/nonexistent/lib64/engines-3' );
|
|
our @ENGINESDIR_REL_LIBDIR = ( 'engines-3' );
|
|
our @MODULESDIR = ( '/nonexistent/lib64/ossl-modules' );
|
|
our @MODULESDIR_REL_LIBDIR = ( 'ossl-modules' );
|
|
our @PKGCONFIGDIR = ( '/nonexistent/lib64/pkgconfig' );
|
|
our @PKGCONFIGDIR_REL_LIBDIR = ( 'pkgconfig' );
|
|
our @CMAKECONFIGDIR = ( '/nonexistent/lib64/cmake/OpenSSL' );
|
|
our @CMAKECONFIGDIR_REL_LIBDIR = ( 'cmake/OpenSSL' );
|
|
our $VERSION = '3.5.7';
|
|
our @LDLIBS =
|
|
# Unix and Windows use space separation, VMS uses comma separation
|
|
$^O eq 'VMS'
|
|
? split(/ *, */, '-ldl -pthread ')
|
|
: split(/ +/, '-ldl -pthread ');
|
|
|
|
1;
|