From 4e1ee55739bf90f7d63d08a049b31ca28f5e183d Mon Sep 17 00:00:00 2001 From: Sam Lantinga Date: Sat, 16 Nov 2013 12:02:09 -0800 Subject: [PATCH] Fixed bug 2231 - Move src/input/evdev into src/core/linux Ryan C. Gordon To keep the directory layout sane, we should probably move this one piece of source to the linux catch-all directory, instead of making it look like this is part of an SDL "input" subsystem. --- src/{input/evdev => core/linux}/SDL_evdev.c | 0 src/{input/evdev => core/linux}/SDL_evdev.h | 0 src/video/raspberry/SDL_rpievents.c | 2 +- src/video/raspberry/SDL_rpivideo.c | 2 +- 4 files changed, 2 insertions(+), 2 deletions(-) rename src/{input/evdev => core/linux}/SDL_evdev.c (100%) rename src/{input/evdev => core/linux}/SDL_evdev.h (100%) diff --git a/src/input/evdev/SDL_evdev.c b/src/core/linux/SDL_evdev.c similarity index 100% rename from src/input/evdev/SDL_evdev.c rename to src/core/linux/SDL_evdev.c diff --git a/src/input/evdev/SDL_evdev.h b/src/core/linux/SDL_evdev.h similarity index 100% rename from src/input/evdev/SDL_evdev.h rename to src/core/linux/SDL_evdev.h diff --git a/src/video/raspberry/SDL_rpievents.c b/src/video/raspberry/SDL_rpievents.c index 8c420fe710afc..8f6cc54537e80 100644 --- a/src/video/raspberry/SDL_rpievents.c +++ b/src/video/raspberry/SDL_rpievents.c @@ -30,7 +30,7 @@ #include "SDL_rpievents_c.h" #ifdef SDL_INPUT_LINUXEV -#include "../../input/evdev/SDL_evdev.h" +#include "../../core/linux/SDL_evdev.h" #endif void RPI_PumpEvents(_THIS) diff --git a/src/video/raspberry/SDL_rpivideo.c b/src/video/raspberry/SDL_rpivideo.c index bf03b5b8c31ce..8d9994dd36f65 100644 --- a/src/video/raspberry/SDL_rpivideo.c +++ b/src/video/raspberry/SDL_rpivideo.c @@ -40,7 +40,7 @@ #include "../../events/SDL_keyboard_c.h" #ifdef SDL_INPUT_LINUXEV -#include "../../input/evdev/SDL_evdev.h" +#include "../../core/linux/SDL_evdev.h" #endif /* RPI declarations */