Move location drivers to location/drivers/

This commit is contained in:
twinaphex 2015-01-12 19:05:33 +01:00
parent 444adb622f
commit 6a9d24b10a
4 changed files with 5 additions and 5 deletions

View File

@ -141,7 +141,7 @@ OBJ += frontend/frontend.o \
audio/resamplers/sinc.o \ audio/resamplers/sinc.o \
audio/resamplers/nearest.o \ audio/resamplers/nearest.o \
audio/resamplers/cc_resampler.o \ audio/resamplers/cc_resampler.o \
location/nulllocation.o \ location/drivers/nulllocation.o \
camera/drivers/nullcamera.o \ camera/drivers/nullcamera.o \
gfx/drivers/nullgfx.o \ gfx/drivers/nullgfx.o \
audio/drivers/nullaudio.o \ audio/drivers/nullaudio.o \

View File

@ -433,10 +433,10 @@ CAMERA
LOCATION LOCATION
============================================================ */ ============================================================ */
#if defined(ANDROID) #if defined(ANDROID)
#include "../location/android.c" #include "../location/drivers/android.c"
#endif #endif
#include "../location/nulllocation.c" #include "../location/drivers/nulllocation.c"
/*============================================================ /*============================================================
RSOUND RSOUND

View File

@ -14,7 +14,7 @@
* If not, see <http://www.gnu.org/licenses/>. * If not, see <http://www.gnu.org/licenses/>.
*/ */
#include "../driver.h" #include "../../driver.h"
typedef struct android_location typedef struct android_location
{ {

View File

@ -14,7 +14,7 @@
* If not, see <http://www.gnu.org/licenses/>. * If not, see <http://www.gnu.org/licenses/>.
*/ */
#include "../driver.h" #include "../../driver.h"
static void *null_location_init(void) static void *null_location_init(void)
{ {