aboutsummaryrefslogtreecommitdiffstats
path: root/configdata.pm.in
Commit message (Collapse)AuthorAgeFilesLines
* configdata.pm.in, util/dofile.pl: Make a HERE document stricter.Richard Levitte2020-10-271-1/+1
| | | | | | | | | Fixes #13221 Fixes #12743 Fixes #12078 Reviewed-by: Tim Hudson <tjh@openssl.org> (Merged from https://github.com/openssl/openssl/pull/13225)
* configdata.pm.in: Don't try to quotify undefined valuesRichard Levitte2019-12-041-1/+7
| | | | | | | Fixes #10503 Reviewed-by: Matthias St. Pierre <Matthias.St.Pierre@ncp-e.com> (Merged from https://github.com/openssl/openssl/pull/10548)
* configdata.pm.in, util/dofile.pl: load 'platform' unconditionallyRichard Levitte2019-11-291-2/+0
| | | | | | | | | | The 'platform' module handles defaults fine, there's no need to add extra conditions on it being loaded. Fixes #10513 Reviewed-by: Matt Caswell <matt@openssl.org> (Merged from https://github.com/openssl/openssl/pull/10514)
* confdata.pm.in: New template for configdata.pmRichard Levitte2019-09-121-0/+418
To have the configdata.pm text embedded in Configure was kind of ugly, and becomes clearer if put into a template file, configdata.pm.in. We can then use OpenSSL::Template to generate it. We also modify configdata.pm to be the build file generator, and run it from Configure. The benefit with that is that developers who tinker and play with the build file can do a "factory reset" without having to go through the configuration process, i.e. they can re-use the config data the already have. Reviewed-by: Matt Caswell <matt@openssl.org> (Merged from https://github.com/openssl/openssl/pull/9693)