ecore_input: fix build without eeze

A dependency on HAVE_EEZE is missing in ecore_input_joystick_name_get():

lib/ecore_input/ecore_input_joystick.c: Dans la fonction « ecore_input_joystick_name_get »:
lib/ecore_input/ecore_input_joystick.c:632:4: erreur : unknown type name « Joystick_Info »
    Joystick_Info *ji;
    ^~~~~~~~~~~~~

Fixes T5665

Signed-off-by: Romain Naour <romain.naour@smile.fr>
This commit is contained in:
Romain Naour 2017-07-03 23:26:16 +02:00 committed by Stefan Schmidt
parent f41e276160
commit 0c21139b29
1 changed files with 1 additions and 1 deletions

View File

@ -625,7 +625,7 @@ ecore_input_joystick_event_axis_deadzone_get(void)
EAPI Eina_Slstr *
ecore_input_joystick_name_get(int index)
{
#ifdef JSIOCGNAME
#if defined(HAVE_EEZE) && defined(JSIOCGNAME)
int fd;
char name[128];
Eina_List *l;