dso_conf.h.in 1.2 KB

123456789101112131415161718192021222324252627282930
  1. {- join("\n",map { "/* $_ */" } @autowarntext) -}
  2. /*
  3. * Copyright 2016-2018 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. #ifndef HEADER_DSO_CONF_H
  11. # define HEADER_DSO_CONF_H
  12. {- output_off() if $disabled{dso} -}
  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 = uc $target{dso_scheme};
  20. my @macros = ( "DSO_$scheme" );
  21. if ($scheme eq 'DLFCN') {
  22. @macros = ( "DSO_DLFCN", "HAVE_DLFCN_H" );
  23. } elsif ($scheme eq "DLFCN_NO_H") {
  24. @macros = ( "DSO_DLFCN" );
  25. }
  26. join("\n", map { "# define $_" } @macros); -}
  27. # define DSO_EXTENSION "{- $target{dso_extension} -}"
  28. {- output_on() if $disabled{dso} -}
  29. #endif