Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | libressl *_namespace.h: adjust *_ALIAS() to require a semicolon | tb | 2023-02-16 | 1 | -3/+3 |
| | | | | | | | | | | LCRYPTO_ALIAS() and LSSL_ALIAS() contained a trailing semicolon. This does not conform to style(9), breaks editors and ctags and (most importantly) my workflow. Fix this by neutering them with asm("") so that -Wpedantic doesn't complain. There's precedent in libc's namespace.h fix suggested by & ok jsing | ||||
* | Add support for symbol hiding disabled by default. | beck | 2022-11-11 | 2 | -0/+68 |
Fully explained in libcrypto/README. TL;DR make sure libcrypto and libssl's function calls internally and to each other are via symbol names that won't get overridden by linking other libraries. Mostly work by guenther@, which will currently be gated behind a build setting NAMESPACE=yes. once we convert all the symbols to this method we will do a major bump and pick up the changes. ok tb@ jsing@ |