commit | cef4ad2509f6c19f6c3e9cf4e6a077bac9d98280 | [log] [tgz] |
---|---|---|
author | Manuel Pégourié-Gonnard <mpg@elzevir.fr> | Tue Apr 29 12:39:06 2014 +0200 |
committer | Paul Bakker <p.j.bakker@polarssl.org> | Wed Apr 30 16:40:20 2014 +0200 |
tree | 9ee80f4e4a152c436628174f9a1e0a6d62acef05 | |
parent | 27f1caed0284c5e4e6245dafb30375f9567db87e [diff] [blame] |
Adapt sources to configurable config.h name
diff --git a/library/gcm.c b/library/gcm.c index 1c6cf9f..d5918a5 100644 --- a/library/gcm.c +++ b/library/gcm.c
@@ -33,7 +33,11 @@ * [MGV] 4.1, pp. 12-13, to enhance speed without using too much memory. */ +#if !defined(POLARSSL_CONFIG_FILE) #include "polarssl/config.h" +#else +#include POLARSSL_CONFIG_FILE +#endif #if defined(POLARSSL_GCM_C)