From 9cac3175c340f8d1fb65be0f557c13ef420587e7 Mon Sep 17 00:00:00 2001 From: twinaphex Date: Thu, 15 Mar 2018 00:31:29 +0100 Subject: [PATCH] Buildfix --- libretro-common/samples/net/Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/libretro-common/samples/net/Makefile b/libretro-common/samples/net/Makefile index c386adda5d..e4475900cc 100644 --- a/libretro-common/samples/net/Makefile +++ b/libretro-common/samples/net/Makefile @@ -31,6 +31,7 @@ HTTP_TEST_C = \ $(LIBRETRO_COMM_DIR)/net/net_compat.c \ $(LIBRETRO_COMM_DIR)/net/net_socket.c \ $(LIBRETRO_COMM_DIR)/compat/compat_strl.c \ + $(LIBRETRO_COMM_DIR)/encodings/encoding_utf.c \ $(LIBRETRO_COMM_DIR)/string/stdstring.c \ net_http_test.c @@ -41,7 +42,7 @@ NET_IFINFO_C = \ net_ifinfo_test.c ifeq ($(platform), win) -CFLAGS += -lwsock2_w32 +CFLAGS += -liphlpapi -lws2_32 endif NET_IFINFO_OBJS := $(NET_IFINFO_C:.c=.o)