diff options
author | Richard Levitte <levitte@openssl.org> | 2019-06-16 23:01:10 +0200 |
---|---|---|
committer | Richard Levitte <levitte@openssl.org> | 2019-06-17 16:08:53 +0200 |
commit | 30478c97837a026ba56718f98d490adf7bce2760 (patch) | |
tree | 10166f933851346d6f4fd6387394087843ce26a3 /Configure | |
parent | Move padlock_asm_src file information to build.info files (diff) | |
download | openssl-30478c97837a026ba56718f98d490adf7bce2760.tar.xz openssl-30478c97837a026ba56718f98d490adf7bce2760.zip |
Configure: final cleanup of asm related things
Remove the *_asm templates in Configurations/00-base-templates.conf,
all attempts to inherit them, and the asm() perl function.
[extended tests]
Reviewed-by: Matt Caswell <matt@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/9166)
Diffstat (limited to 'Configure')
-rwxr-xr-x | Configure | 12 |
1 files changed, 0 insertions, 12 deletions
@@ -2894,18 +2894,6 @@ _____ # Thus, whenever there's mention of a returned value, it's about that # intended value. -# Helper function to implement conditional inheritance depending on the -# value of $disabled{asm}. Used in inherit_from values as follows: -# -# inherit_from => [ "template", asm("asm_tmpl") ] -# -sub asm { - my @x = @_; - sub { - $disabled{asm} ? () : @x; - } -} - # Helper function to implement conditional value variants, with a default # plus additional values based on the value of $config{build_type}. # Arguments are given in hash table form: |