Fix header include

The current way of including directfb.h makes it hard for people with multiple
versions of DirectFB installed.

This is the correct way to include that header, and it's the way
ecore_directfb does it.

Patch by: Eduardo Felipe <eduardofelipe87@gmail.com>




SVN revision: 51610
This commit is contained in:
Eduardo Felipe 2010-08-24 11:47:41 +00:00 committed by Lucas De Marchi
parent 864fcb6c17
commit 7c94436ffc
1 changed files with 1 additions and 1 deletions

View File

@ -2,7 +2,7 @@
#define _EVAS_ENGINE_DIRECTFB_H
#include <Evas.h>
#include <directfb/directfb.h>
#include <directfb.h>
typedef struct _Evas_Engine_Info_DirectFB Evas_Engine_Info_DirectFB;