VirtualBox

source: vbox/trunk/src/libs/openssl-1.1.1l/include/crypto/dso_conf.h.in@ 92324

Last change on this file since 92324 was 91772, checked in by vboxsync, 3 years ago

openssl-1.1.1l: Applied and adjusted our OpenSSL changes to 1.1.1l. bugref:10126

File size: 1.3 KB
Line 
1{- join("\n",map { "/* $_ */" } @autowarntext) -}
2/*
3 * Copyright 2016-2019 The OpenSSL Project Authors. All Rights Reserved.
4 *
5 * Licensed under the OpenSSL license (the "License"). You may not use
6 * this file except in compliance with the License. You can obtain a copy
7 * in the file LICENSE in the source distribution or at
8 * https://www.openssl.org/source/license.html
9 */
10
11#ifndef OSSL_CRYPTO_DSO_CONF_H
12# define OSSL_CRYPTO_DSO_CONF_H
13{- # The DSO code currently always implements all functions so that no
14 # applications will have to worry about that from a compilation point
15 # of view. However, the "method"s may return zero unless that platform
16 # has support compiled in for them. Currently each method is enabled
17 # by a define "DSO_<name>" ... we translate the "dso_scheme" config
18 # string entry into using the following logic;
19 my $scheme = $disabled{dso} ? undef : uc $target{dso_scheme};
20 if (!$scheme) {
21 $scheme = "NONE";
22 }
23 my @macros = ( "DSO_$scheme" );
24 if ($scheme eq 'DLFCN') {
25 @macros = ( "DSO_DLFCN", "HAVE_DLFCN_H" );
26 } elsif ($scheme eq "DLFCN_NO_H") {
27 @macros = ( "DSO_DLFCN" );
28 }
29 join("\n", map { "# define $_" } @macros); -}
30# define DSO_EXTENSION "{- $target{dso_extension} -}"
31#endif
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette