summaryrefslogtreecommitdiff
path: root/build.info
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2021-08-23 09:06:10 +0200
committerRichard Levitte <levitte@openssl.org>2022-05-22 17:33:08 +0200
commit4d02d500aac80c136e3d6582b908e0fab77bbf42 (patch)
tree77f2bc56feafc66fc495ea5b1f01d8fe56a51d0d /build.info
parent2522889620446f1e56338367d1b6b028ea952bb4 (diff)
downloadopenssl-new-4d02d500aac80c136e3d6582b908e0fab77bbf42.tar.gz
Building: For the FIPS module checksum, keep track of configuration,h
The FIPS module checksum needs to know that configuration.h is generated from configuration.h.in, so that information is conserved. To make this possible, it's now possible to have attributes with the GENERATE keyword, and the attribute "skip" is added to make a keyword a no-op, which makes it informative only. Reviewed-by: Tomas Mraz <tomas@openssl.org> Reviewed-by: Todd Short <todd.short@me.com> (Merged from https://github.com/openssl/openssl/pull/16378)
Diffstat (limited to 'build.info')
-rw-r--r--build.info5
1 files changed, 5 insertions, 0 deletions
diff --git a/build.info b/build.info
index 881dc907b5..76284cb70f 100644
--- a/build.info
+++ b/build.info
@@ -22,6 +22,7 @@ DEPEND[]=include/openssl/asn1.h \
include/openssl/cmp.h \
include/openssl/cms.h \
include/openssl/conf.h \
+ include/openssl/configuration.h \
include/openssl/crmf.h \
include/openssl/crypto.h \
include/openssl/ct.h \
@@ -48,6 +49,10 @@ GENERATE[include/openssl/bio.h]=include/openssl/bio.h.in
GENERATE[include/openssl/cmp.h]=include/openssl/cmp.h.in
GENERATE[include/openssl/cms.h]=include/openssl/cms.h.in
GENERATE[include/openssl/conf.h]=include/openssl/conf.h.in
+# include/openssl/configuration.h is generated by configdata.pm
+# We still need this information for the FIPS module checksum, but the attribute
+# 'skip' ensures that nothing is actually done with it.
+GENERATE[include/openssl/configuration.h]{skip}=include/openssl/configuration.h.in
GENERATE[include/openssl/crmf.h]=include/openssl/crmf.h.in
GENERATE[include/openssl/crypto.h]=include/openssl/crypto.h.in
GENERATE[include/openssl/ct.h]=include/openssl/ct.h.in