diff options
author | Mike Blumenkrantz <zmike@osg.samsung.com> | 2017-07-17 08:14:28 -0400 |
---|---|---|
committer | Mike Blumenkrantz <zmike@osg.samsung.com> | 2017-07-17 08:14:24 -0400 |
commit | ea502c5e2b2dcb876e097ac2db3b4aa03c5ae0d4 (patch) | |
tree | 5734c94887217bae2e2a1b514bd0c3b1a6e89b56 | |
parent | f8de1a3f887f9693a0ff680de62971e0bcfcc0e3 (diff) | |
download | enlightenment-ea502c5e2b2dcb876e097ac2db3b4aa03c5ae0d4.tar.gz |
reduce include deps for enlightenment_thumb binary
-rw-r--r-- | src/bin/e_sha1.c | 6 | ||||
-rw-r--r-- | 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 375b264778..4c8db5ab2f 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 e79717a6aa..c4270207a3 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; |