From b32a69889e2aa718de19e02913bf7629ae515d25 Mon Sep 17 00:00:00 2001 From: radius Date: Sun, 19 Nov 2017 16:21:26 -0500 Subject: [PATCH] console buildfix --- Makefile.wiiu | 1 - network/netplay/netplay_discovery.c | 9 ++++++--- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/Makefile.wiiu b/Makefile.wiiu index 669686e93d..b83d1caae7 100644 --- a/Makefile.wiiu +++ b/Makefile.wiiu @@ -73,7 +73,6 @@ else BLACKLIST := BLACKLIST += input/input_overlay.o BLACKLIST += tasks/task_overlay.o - BLACKLIST += network/netplay/netplay_discovery.o BLACKLIST += $(LIBRETRO_COMM_DIR)/net/net_ifinfo.o OBJ := $(filter-out $(BLACKLIST),$(OBJ)) diff --git a/network/netplay/netplay_discovery.c b/network/netplay/netplay_discovery.c index 68e8a9eff3..2ed53fbd73 100644 --- a/network/netplay/netplay_discovery.c +++ b/network/netplay/netplay_discovery.c @@ -123,8 +123,10 @@ void deinit_netplay_discovery(void) } /** Discovery control */ +/* Todo: implement net_ifinfo and ntohs for consoles */ bool netplay_discovery_driver_ctl(enum rarch_netplay_discovery_ctl_state state, void *data) { +#ifndef RARCH_CONSOLE char port_str[6]; int k = 0; int ret; @@ -191,7 +193,7 @@ bool netplay_discovery_driver_ctl(enum rarch_netplay_discovery_ctl_state state, default: return false; } - +#endif return true; } @@ -228,6 +230,8 @@ error: */ bool netplay_lan_ad_server(netplay_t *netplay) { +/* Todo: implement net_ifinfo and ntohs for consoles */ +#ifndef RARCH_CONSOLE fd_set fds; struct timeval tmp_tv = {0}; struct sockaddr their_addr; @@ -351,8 +355,7 @@ bool netplay_lan_ad_server(netplay_t *netplay) } } net_ifinfo_free(&interfaces); - - +#endif return true; }