-
Notifications
You must be signed in to change notification settings - Fork 94
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add --with-system-libsafec flag to link against system libsafec
Specifying the --with-system-libsafec flag shall allow the configuration program to search for and, if found, to link against the libsafec library that is installed in the system. After configuring --with-system-libsafec, the compilation will may with following error: In file included from /usr/include/libsafec/safe_lib.h:43, from est_server_http.c:39: /usr/include/libsafec/safe_types.h:42:9: error: unknown type name 'size_t' 42 | typedef size_t rsize_t; | ^~~~~~ The system libsafec lacks including stddef.h in its safe_types.h. Fix that by moving libsafec include directives below the openssl; the latter apparently does the inclusion of the necessary stddef.h at some point. Signed-off-by: Aleksandr Makarov <[email protected]>
- Loading branch information
Aleksandr Makarov
committed
Jul 17, 2020
1 parent
0d6b817
commit 0f8de87
Showing
3 changed files
with
39 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters