Adapt sources to configurable config.h name
diff --git a/programs/hash/generic_sum.c b/programs/hash/generic_sum.c
index 498039b..b5de2a1 100644
--- a/programs/hash/generic_sum.c
+++ b/programs/hash/generic_sum.c
@@ -23,7 +23,11 @@
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
+#if !defined(POLARSSL_CONFIG_FILE)
#include "polarssl/config.h"
+#else
+#include POLARSSL_CONFIG_FILE
+#endif
#include <string.h>
#include <stdio.h>
diff --git a/programs/hash/hello.c b/programs/hash/hello.c
index 21c1387..5bcfee9 100644
--- a/programs/hash/hello.c
+++ b/programs/hash/hello.c
@@ -23,7 +23,11 @@
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
+#if !defined(POLARSSL_CONFIG_FILE)
#include "polarssl/config.h"
+#else
+#include POLARSSL_CONFIG_FILE
+#endif
#include <stdio.h>
diff --git a/programs/hash/md5sum.c b/programs/hash/md5sum.c
index 7429650..ba7eea4 100644
--- a/programs/hash/md5sum.c
+++ b/programs/hash/md5sum.c
@@ -23,7 +23,11 @@
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
+#if !defined(POLARSSL_CONFIG_FILE)
#include "polarssl/config.h"
+#else
+#include POLARSSL_CONFIG_FILE
+#endif
#include <string.h>
#include <stdio.h>
diff --git a/programs/hash/sha1sum.c b/programs/hash/sha1sum.c
index bd3fd6e..3a87b51 100644
--- a/programs/hash/sha1sum.c
+++ b/programs/hash/sha1sum.c
@@ -23,7 +23,11 @@
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
+#if !defined(POLARSSL_CONFIG_FILE)
#include "polarssl/config.h"
+#else
+#include POLARSSL_CONFIG_FILE
+#endif
#include <string.h>
#include <stdio.h>
diff --git a/programs/hash/sha2sum.c b/programs/hash/sha2sum.c
index 2e6884d..3452054 100644
--- a/programs/hash/sha2sum.c
+++ b/programs/hash/sha2sum.c
@@ -23,7 +23,11 @@
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
+#if !defined(POLARSSL_CONFIG_FILE)
#include "polarssl/config.h"
+#else
+#include POLARSSL_CONFIG_FILE
+#endif
#include <string.h>
#include <stdio.h>