1
0
mirror of https://github.com/libretro/RetroArch synced 2024-07-05 09:48:42 +00:00

Move x11_common.c to gfx/common

This commit is contained in:
twinaphex 2015-04-09 05:02:57 +02:00
parent 16b7b454a9
commit 5e8a78bb25
9 changed files with 7 additions and 7 deletions

View File

@ -384,7 +384,7 @@ endif
ifeq ($(HAVE_X11), 1)
OBJ += input/drivers/x11_input.o \
gfx/drivers_wm/x11_common.o \
gfx/common/x11_common.o \
input/drivers_keyboard/keyboard_event_x11.o
LIBS += $(X11_LIBS) $(XEXT_LIBS) $(XF86VM_LIBS) $(XINERAMA_LIBS)
DEFINES += $(X11_CFLAGS) $(XEXT_CFLAGS) $(XF86VM_CFLAGS) $(XINERAMA_CFLAGS)

View File

@ -31,7 +31,7 @@
#include "../font_renderer_driver.h"
#ifdef HAVE_X11
#include "../drivers_wm/x11_common.h"
#include "../common/x11_common.h"
#endif
#if defined(_WIN32) && !defined(_XBOX)

View File

@ -27,7 +27,7 @@
#include "../font_renderer_driver.h"
#ifdef HAVE_X11
#include "../drivers_wm/x11_common.h"
#include "../common/x11_common.h"
#endif
#if defined(_WIN32) && !defined(_XBOX)

View File

@ -24,7 +24,7 @@
#include "../font_renderer_driver.h"
#include <retro_inline.h>
#include "../drivers_wm/x11_common.h"
#include "../common/x11_common.h"
#include <X11/Xlib.h>
#include <X11/Xutil.h>

View File

@ -18,7 +18,7 @@
#include "../../runloop.h"
#include "../drivers/gl_common.h"
#include "../video_monitor.h"
#include "../drivers_wm/x11_common.h"
#include "../common/x11_common.h"
#include <signal.h>
#include <stdint.h>

View File

@ -22,7 +22,7 @@
#include "../../runloop.h"
#include "../drivers/gl_common.h"
#include "../video_monitor.h"
#include "../drivers_wm/x11_common.h"
#include "../common/x11_common.h"
#include <signal.h>
#include <stdint.h>

View File

@ -135,7 +135,7 @@ VIDEO CONTEXT
#endif
#ifdef HAVE_X11
#include "../gfx/drivers_wm/x11_common.c"
#include "../gfx/common/x11_common.c"
#endif