Branch :
| Author | Commit | Date | CI | Message |
|---|---|---|---|---|
| 31e9396b | 2024-03-13 00:56:07 | build: Only install time struct conversion macros where missing These macros are available in several systems, and we should not install the man pages for them, otherwise we might end up shadowing the system man pages if present. | ||
| 3b8416ac | 2024-03-10 18:01:02 | man: Add links for errc module functions Reported-by: Alejandro Colomar <alx@kernel.org> | ||
| 94d0fb3c | 2024-03-08 03:05:24 | man: Do not install timeval(3bsd) nor timespec(3bsd) These are system types, which we should not be documenting. Rewrite the man pages around the TIMEVAL_TO_TIMESPEC and TIMESPEC_TO_TIMEVAL macros. | ||
| be4aced4 | 2024-02-11 23:55:40 | build: Make almost all exposed interfaces use the new ABI selection Explicitly select what to include as part of the target ABI, instead of letting autoconfiguration potentially break ABI if the system grows functionality provided by the library. Make almost all the library selectable per target. Do not install manual pages for interfaces not included in the library. Control inclusion of symbols in map file via pre-processor macros, and move the comments describing the ABI selection to configure.ac. For now the header files are included as is and filtered through pre-processor conditionals. Eventually they might get switched to be autogenerated at build time. | ||
| 99739877 | 2024-02-14 04:59:44 | build: Rename ABI selection variables from need_ to abi_ This should make the purpose of these variables more clear. | ||
| a81d0b71 | 2024-02-11 23:55:40 | build: Sort variables and their contents in automake files This should make it easier to add new entries, and find them afterwards. | ||
| f8cb9d8b | 2024-02-20 03:57:37 | build: Remove space before shell redirection This makes it more clear what the redirection applies to. | ||
| 9fab225f | 2024-02-17 05:25:01 | Split errc family of functions from err ones On most systems the err family of functions is already present, but are missing the errc family of functions, which are also present on some other systems. Splitting them into separate files will make it easer to conditionally include one or the other. | ||
| 461f10ac | 2024-02-17 03:07:58 | Sync strtoi()/strtou() implementations from NetBSD These contain the fixes to the error handling logic. In NetBSD the manual page for strtou.3 is generated from the strtoi.3 manual page applying some substitutions, the problem is that the cross-references are then lost. We will still keep them separate. Reported-by: Alejandro Colomar <alx@kernel.org> | ||
| 10920c30 | 2024-02-12 00:06:56 | build: Make name_from_id man pages conditional instead of id_from_name The code is only making the name_from_id function conditional, and assumes id_from_name are always to be included, so we need to match the logic for the man page inclusion. |