-
Notifications
You must be signed in to change notification settings - Fork 2.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
File pem.h does not include "confg.h" #1371
Labels
Comments
Hi @Dmitry-Frantsev Thank you for reporting this issue! |
ARM Internal Ref: IOTSSL-2096 |
RonEld
pushed a commit
to RonEld/mbedtls
that referenced
this issue
Feb 14, 2018
Add inclusion to configration file in header files, instead of relying on other header files to include the configuration file. This issue resolves Mbed-TLS#1371
RonEld
pushed a commit
to RonEld/mbedtls
that referenced
this issue
Jun 26, 2018
Add inclusion to configration file in header files, instead of relying on other header files to include the configuration file. This issue resolves Mbed-TLS#1371
RonEld
pushed a commit
to RonEld/mbedtls
that referenced
this issue
Jun 26, 2018
Add inclusion to configration file in header files, instead of relying on other header files to include the configuration file. This issue resolves Mbed-TLS#1371
RonEld
pushed a commit
to RonEld/mbedtls
that referenced
this issue
Dec 16, 2018
Add inclusion to configration file in header files, instead of relying on other header files to include the configuration file. This issue resolves Mbed-TLS#1371
RonEld
pushed a commit
to RonEld/mbedtls
that referenced
this issue
Dec 16, 2018
Add inclusion to configration file in header files, instead of relying on other header files to include the configuration file. This issue resolves Mbed-TLS#1371
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Description
Bug
File pem.h does not include "confg.h"
It is neccessary to add such code
#if !defined(MBEDTLS_CONFIG_FILE)
#include "config.h"
#else
#include MBEDTLS_CONFIG_FILE
#endif
The text was updated successfully, but these errors were encountered: