clean up mixer includes

config.h needs to be included. always.
This commit is contained in:
Mike Blumenkrantz 2016-05-06 13:38:09 -04:00
parent 720074e926
commit ed25a5005f
2 changed files with 10 additions and 4 deletions

View File

@ -1,9 +1,11 @@
#include <Eina.h>
#include <Ecore.h>
#include <pulse/pulseaudio.h>
#include "e.h"
#include "emix.h"
#include <pulse/pulseaudio.h>
#undef ERR
#undef DBG
#undef WRN
#define ERR(...) EINA_LOG_ERR(__VA_ARGS__)
#define DBG(...) EINA_LOG_DBG(__VA_ARGS__)
#define WRN(...) EINA_LOG_WARN(__VA_ARGS__)

View File

@ -1,6 +1,10 @@
#ifndef EMIX_H
#define EMIX_H
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif
#include <Eina.h>
#include <Evas.h>