From de6f4b9da47a2096489e438f9c151bc0388fdd2f Mon Sep 17 00:00:00 2001 From: Aaron Kling Date: Thu, 25 Jun 2020 22:23:16 -0500 Subject: [PATCH] libretro: Build utf encoding This is needed for mingw --- Makefile.common | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Makefile.common b/Makefile.common index 4deaaeb..153889d 100644 --- a/Makefile.common +++ b/Makefile.common @@ -14,6 +14,8 @@ SOURCES_C := \ SOURCES_C += $(LIBRETRO_COMM_DIR)/compat/compat_strl.c \ $(LIBRETRO_COMM_DIR)/compat/compat_strcasestr.c \ + $(LIBRETRO_COMM_DIR)/compat/fopen_utf8.c \ + $(LIBRETRO_COMM_DIR)/encodings/encoding_utf.c \ $(LIBRETRO_COMM_DIR)/file/file_path.c \ $(LIBRETRO_COMM_DIR)/file/file_path_io.c \ $(LIBRETRO_COMM_DIR)/vfs/vfs_implementation.c