Eina_Debug: Fix config.h usage

It was used inside eina_debug.h that is a public header.
Terminology compilation was failing when including its own config.h.
This commit is contained in:
Daniel Zaoui 2017-06-05 10:51:51 +03:00
parent df54c13403
commit fa3e54b15e
3 changed files with 7 additions and 7 deletions

View File

@ -16,13 +16,13 @@
* if not, see <http://www.gnu.org/licenses/>.
*/
#include <Eina.h>
#include <Ecore.h>
# ifdef HAVE_CONFIG_H
# include "config.h"
# endif
#include <Eina.h>
#include <Ecore.h>
#if __BYTE_ORDER == __LITTLE_ENDIAN
#define SWAP_64(x) x
#define SWAP_32(x) x

View File

@ -22,10 +22,6 @@
# include "eina_config.h"
# include "eina_list.h"
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
#ifdef EFL_BETA_API_SUPPORT
/**

View File

@ -12,6 +12,10 @@
#include <sys/stat.h>
#include <fcntl.h>
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
#include "eina_debug.h"
#include "eina_types.h"
#include "eina_list.h"