From ea502c5e2b2dcb876e097ac2db3b4aa03c5ae0d4 Mon Sep 17 00:00:00 2001 From: Mike Blumenkrantz Date: Mon, 17 Jul 2017 08:14:28 -0400 Subject: [PATCH] reduce include deps for enlightenment_thumb binary --- src/bin/e_sha1.c | 6 +++++- src/bin/e_user.c | 10 +++++++++- 2 files changed, 14 insertions(+), 2 deletions(-) diff --git a/src/bin/e_sha1.c b/src/bin/e_sha1.c index 375b26477..4c8db5ab2 100644 --- a/src/bin/e_sha1.c +++ b/src/bin/e_sha1.c @@ -1,6 +1,10 @@ -#include "e.h" +#ifdef HAVE_CONFIG_H +#include "config.h" +#endif #include +#include "e_macros.h" + #ifdef HAVE_ARPA_INET_H # include #endif diff --git a/src/bin/e_user.c b/src/bin/e_user.c index e79717a6a..c4270207a 100644 --- a/src/bin/e_user.c +++ b/src/bin/e_user.c @@ -1,4 +1,12 @@ -#include "e.h" +#ifdef HAVE_CONFIG_H +#include "config.h" +#endif +#include +#include +#include +#include + +#include "e_macros.h" static const char *_e_user_homedir = NULL; static size_t _e_user_homedir_len = 0;