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 32