summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Configurations/descrip.mms.tmpl14
1 files changed, 10 insertions, 4 deletions
diff --git a/Configurations/descrip.mms.tmpl b/Configurations/descrip.mms.tmpl
index 85a3c778b7..57834630b9 100644
--- a/Configurations/descrip.mms.tmpl
+++ b/Configurations/descrip.mms.tmpl
@@ -229,12 +229,18 @@
}
foreach (grep /\[\.ssl\].*?\.o$/, keys %{$unified_info{sources}}) {
my $obj = platform->obj($_);
- # Most of the files in [.ssl.record.methods] include "ssl_local.h"
- # which includes things like "record/record.h". Adding "./" as an
- # inclusion directory helps making this sort of header from these
- # directories.
+ # Most of the files in [.ssl] include "ssl_local.h" which includes things
+ # like "record/record.h". Adding "./" as an inclusion directory helps
+ # making this sort of header from these directories.
push @{$unified_info{includes_extra}->{$obj}}, qw(./);
}
+ foreach (grep /\[\.ssl\].*?ssl_lib\.o$/, keys %{$unified_info{sources}}) {
+ my $obj = platform->obj($_);
+ # Some files in [.ssl] include "quic/quic_local.h", which in turn
+ # includes "../ssl_local.h". Adding "./quic" as an inclusion directory
+ # helps making this sort of header from these directories.
+ push @{$unified_info{includes_extra}->{$obj}}, qw(./quic);
+ }
foreach (grep /\[\.ssl\.(?:record|statem)\].*?\.o$/, keys %{$unified_info{sources}}) {
my $obj = platform->obj($_);
# Most of the files in [.ssl.record] and [.ssl.statem] include