diff options
-rwxr-xr-x | configure.py | 10 | ||||
-rw-r--r-- | src/ssl/info.txt | 5 |
2 files changed, 13 insertions, 2 deletions
diff --git a/configure.py b/configure.py index cfd920fb8..4698b0f66 100755 --- a/configure.py +++ b/configure.py @@ -447,8 +447,10 @@ class ModuleInfo(object): lex_me_harder(infofile, self, ['source', 'header:internal', 'header:public', - 'requires', 'os', 'arch', 'cc', 'libs'], - { 'load_on': 'auto', + 'requires', 'os', 'arch', 'cc', 'libs', + 'comment'], + { + 'load_on': 'auto', 'define': None, 'uses_tr1': 'false', 'need_isa': None, @@ -500,6 +502,10 @@ class ModuleInfo(object): self.uses_tr1 = (True if self.uses_tr1 == 'yes' else False) + if self.comment != []: + logging.info('Module comment for ' + self.basename + ' - ' + + ' '.join(self.comment)) + def sources(self): return self.source diff --git a/src/ssl/info.txt b/src/ssl/info.txt index ec70e7248..17e6fd1c0 100644 --- a/src/ssl/info.txt +++ b/src/ssl/info.txt @@ -1,5 +1,10 @@ define SSL_TLS +<comment> +The SSL/TLS code is complex, new, and not yet reviewed, there may be +serious bugs or security issues. +</comment> + uses_tr1 yes <header:public> |