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/nearest.o \
audio/resamplers/cc_resampler.o \
location/nulllocation.o \
location/drivers/nulllocation.o \
camera/drivers/nullcamera.o \
gfx/drivers/nullgfx.o \
audio/drivers/nullaudio.o \

View file

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

View file

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

View file

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