rename semaphore.* -> ra_semaphore.* to avoid semaphore.h being used by the rpi video driver includes instead of the system semaphore.h - fixes #2304

This commit is contained in:
Jools Wills 2015-10-28 03:38:46 +00:00
parent 3ef70c1c3d
commit 3e5a2e425e
5 changed files with 4 additions and 4 deletions

View File

@ -868,7 +868,7 @@ ifeq ($(HAVE_NETWORKING), 1)
ifeq ($(HAVE_CHEEVOS), 1)
ifeq ($(HAVE_THREADS), 1)
DEFINES += -DHAVE_CHEEVOS
OBJ += cheevos.o semaphore.o async_job.o libretro-common/utils/md5.o
OBJ += cheevos.o ra_semaphore.o async_job.o libretro-common/utils/md5.o
endif
endif
endif

View File

@ -16,7 +16,7 @@
#include <stdlib.h>
#include <rthreads/rthreads.h>
#include <semaphore.h>
#include <ra_semaphore.h>
#include <async_job.h>
typedef struct async_job_node async_job_node_t;

View File

@ -90,7 +90,7 @@ ACHIEVEMENTS
#include "../libretro-common/formats/json/jsonsax.c"
#include "../libretro-common/utils/md5.c"
#include "../net_http_special.c"
#include "../semaphore.c"
#include "../ra_semaphore.c"
#include "../async_job.c"
#include "../cheevos.c"
#endif

View File

@ -27,7 +27,7 @@
#include <stdlib.h>
#include <rthreads/rthreads.h>
#include <semaphore.h>
#include <ra_semaphore.h>
struct ssem
{