Fix include in reduced config files

This commit is contained in:
Manuel Pégourié-Gonnard 2014-06-23 20:08:39 +02:00 committed by Paul Bakker
parent dd0c0f33c0
commit 725e7f4942
4 changed files with 5 additions and 3 deletions

View file

@ -8,6 +8,8 @@ These files are complete replacements for the default config.h. To use one of
them, you can pick one of the following methods:
1. Replace the default file include/polarssl/config.h with the chosen one.
(Depending on your compiler, you may need to ajust the line with
#include "polarssl/check_config.h" then.)
2. Define POLARSSL_CONFIG_FILE and adjust the include path accordingly.
For example, using make:

View file

@ -51,6 +51,6 @@
/* For testing with compat.sh */
#define POLARSSL_FS_IO
#include "check_config.h"
#include "polarssl/check_config.h"
#endif /* POLARSSL_CONFIG_H */

View file

@ -34,6 +34,6 @@
#define POLARSSL_SSL_SRV_C
#define POLARSSL_SSL_TLS_C
#include "check_config.h"
#include "polarssl/check_config.h"
#endif /* POLARSSL_CONFIG_H */

View file

@ -51,6 +51,6 @@
/* For testing with compat.sh */
#define POLARSSL_FS_IO
#include "check_config.h"
#include "polarssl/check_config.h"
#endif /* POLARSSL_CONFIG_H */