discomfitor pushed a commit to branch master. http://git.enlightenment.org/core/enlightenment.git/commit/?id=ea502c5e2b2dcb876e097ac2db3b4aa03c5ae0d4
commit ea502c5e2b2dcb876e097ac2db3b4aa03c5ae0d4 Author: Mike Blumenkrantz <zm...@osg.samsung.com> Date: Mon Jul 17 08:14:28 2017 -0400 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 <string.h> +#include "e_macros.h" + #ifdef HAVE_ARPA_INET_H # include <arpa/inet.h> #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 <stdio.h> +#include <string.h> +#include <limits.h> +#include <Efreet.h> + +#include "e_macros.h" static const char *_e_user_homedir = NULL; static size_t _e_user_homedir_len = 0; --