Move netlogger.c to network/

This commit is contained in:
twinaphex 2016-05-09 17:45:21 +02:00
parent 3722826e0a
commit 751872afa4
5 changed files with 3 additions and 4 deletions

View File

@ -37,7 +37,7 @@ PPU_SRCS = frontend/frontend_salamander.c \
ifeq ($(HAVE_LOGGER), 1)
PPU_CFLAGS += -DHAVE_LOGGER
PPU_SRCS += netlogger.c \
PPU_SRCS += network/netlogger.c \
libretro-common/net/net_compat.c \
libretro-common/net/net_socket.c
endif

View File

@ -83,7 +83,6 @@ OBJ = griffin/griffin.o
ifeq ($(HAVE_LOGGER), 1)
CFLAGS += -DHAVE_LOGGER
CFLAGS += -Ilogger/netlogger
endif
ifeq ($(HAVE_FILE_LOGGER), 1)

View File

@ -60,7 +60,7 @@ OBJ = frontend/frontend_salamander.o \
ifeq ($(HAVE_LOGGER), 1)
CFLAGS += -DHAVE_LOGGER
CFLAGS += -DPC_DEVELOPMENT_IP_ADDRESS=\"$(PC_DEVELOPMENT_IP_ADDRESS)\" -DPC_DEVELOPMENT_UDP_PORT=$(PC_DEVELOPMENT_UDP_PORT)
OBJ += logger/netlogger.o \
OBJ += network/netlogger.o \
libretro-common/net/net_compat.o \
libretro-common/net/net_socket.o
endif

View File

@ -31,7 +31,7 @@
#include "../verbosity.c"
#if defined(HAVE_LOGGER) && !defined(ANDROID)
#include "../netlogger.c"
#include "../network/netlogger.c"
#endif
/*============================================================