ecore_drm: ensure we have the symbol available at the right place.

Summary:
Linking under Fedora32 toolchain got more picky. Ecore_drm_device.c
needs the symbol so make sure we have it there.

Reviewers: devilhorns, raster

Reviewed By: raster

Subscribers: raster, cedric, #reviewers, #committers

Tags: #efl

Differential Revision: https://phab.enlightenment.org/D11772
This commit is contained in:
Stefan Schmidt 2020-05-05 11:28:39 +01:00 committed by Carsten Haitzler (Rasterman)
parent fd0f8362f4
commit 7d3e8fcad0
2 changed files with 5 additions and 2 deletions

View File

@ -36,6 +36,9 @@
static Eina_List *drm_devices;
static int ticking = 0;
struct xkb_keymap *cached_keymap;
struct xkb_context *cached_context;
static void _ecore_drm_tick_source_set(Ecore_Drm_Device *dev);
static void

View File

@ -96,8 +96,8 @@
# endif
extern int _ecore_drm_log_dom;
struct xkb_keymap *cached_keymap;
struct xkb_context *cached_context;
extern struct xkb_keymap *cached_keymap;
extern struct xkb_context *cached_context;
# define EVDEV_MAX_SLOTS 32