Overview
Comment: | Makefile updates to install gzipped man page on FreeBSD |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | tls-1.8 |
Files: | files | file ages | folders |
SHA3-256: |
7c444ee374f644f6cbfddbfb5c8107a2 |
User & Date: | bohagan on 2024-11-03 19:05:58 |
Original User & Date: | bohagan on 2024-11-03 19:05:59 |
Other Links: | branch diff | manifest | tags |
Context
2024-11-03
| ||
19:05 | Merged tls-1.8 branch into trunk Leaf check-in: 6d3664930c user: bohagan tags: trunk | |
19:05 | Makefile updates to install gzipped man page on FreeBSD Leaf check-in: 7c444ee374 user: bohagan tags: tls-1.8 | |
02:00 | BADSSL test updates for latest certificate status check-in: cf3d49b26b user: bohagan tags: tls-1.8 | |
Changes
Modified Makefile.in from [8f71c714bb] to [68c848565e].
︙ | |||
236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 | 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 | + - + + + + + + + + - - + + + | #======================================================================== # Install documentation. Unix manpages should go in the $(mandir) # directory. #======================================================================== install-doc-html: doc @$(INSTALL_DATA_DIR) "$(DESTDIR)$(pkglibdir)/html" @echo "Installing HTML documentation in $(DESTDIR)$(pkglibdir)/html" @list='doc/*.html'; for i in $$list; do \ if test -f $$i ; then \ echo "Installing $$i"; \ $(INSTALL_DATA) $$i "$(DESTDIR)$(pkglibdir)/html"; \ fi; \ done install-doc-n: doc @$(INSTALL_DATA_DIR) "$(DESTDIR)$(mandir)/mann" |
︙ |
Modified tests/badssl.csv from [ddfc47abc7] to [3a4497b1c1].
︙ | |||
44 45 46 47 48 49 50 | 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 | - + | BadSSL,no-subject,,,badssl no-subject.badssl.com,,,"handshake failed: certificate verify failed due to ""certificate has expired""",,,1 BadSSL,null,,,badssl null.badssl.com,,glob,handshake failed: * alert handshake failure,,,1 BadSSL,pinning-test,,,badssl pinning-test.badssl.com,,,,,, BadSSL,preact-cli,,,badssl preact-cli.badssl.com,,,"handshake failed: certificate verify failed due to ""unable to get local issuer certificate""",,,1 BadSSL,preloaded-hsts,,,badssl preloaded-hsts.badssl.com,,,,,, BadSSL,rc4-md5,,,badssl rc4-md5.badssl.com,,glob,handshake failed: * alert handshake failure,,,1 BadSSL,rc4,,,badssl rc4.badssl.com,,glob,handshake failed: * alert handshake failure,,,1 |
︙ |