47 lines
2.1 KiB
Perl
Vendored
47 lines
2.1 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 = 'This file should be used when building against this OpenSSL build, and should never be installed';
|
|
our @PREFIX = ( '/home/scott/claude/calog/vendor/openssl' );
|
|
our @libdir = ( '' );
|
|
our @BINDIR = ( '/home/scott/claude/calog/vendor/openssl/apps' );
|
|
our @BINDIR_REL_PREFIX = ( 'apps' );
|
|
our @LIBDIR = ( '/home/scott/claude/calog/vendor/openssl' );
|
|
our @LIBDIR_REL_PREFIX = ( '' );
|
|
our @INCLUDEDIR = ( '/home/scott/claude/calog/vendor/openssl/include', '/home/scott/claude/calog/vendor/openssl/include' );
|
|
our @INCLUDEDIR_REL_PREFIX = ( 'include', './include' );
|
|
our @APPLINKDIR = ( '/home/scott/claude/calog/vendor/openssl/ms' );
|
|
our @APPLINKDIR_REL_PREFIX = ( 'ms' );
|
|
our @ENGINESDIR = ( '/home/scott/claude/calog/vendor/openssl/engines' );
|
|
our @ENGINESDIR_REL_LIBDIR = ( 'engines' );
|
|
our @MODULESDIR = ( '/home/scott/claude/calog/vendor/openssl/providers' );
|
|
our @MODULESDIR_REL_LIBDIR = ( 'providers' );
|
|
our @PKGCONFIGDIR = ( '/home/scott/claude/calog/vendor/openssl' );
|
|
our @PKGCONFIGDIR_REL_LIBDIR = ( '.' );
|
|
our @CMAKECONFIGDIR = ( '/home/scott/claude/calog/vendor/openssl' );
|
|
our @CMAKECONFIGDIR_REL_LIBDIR = ( '.' );
|
|
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;
|