1
0
mirror of https://github.com/libretro/RetroArch synced 2024-07-03 08:48:42 +00:00

libretro-db: Fix stdstring undefined in c_converter

This commit is contained in:
Rob Loach 2020-05-27 18:34:47 -04:00
parent c2b8b3f1e1
commit 16aac7bfac
No known key found for this signature in database
GPG Key ID: 627C60834A74A21A

View File

@ -12,6 +12,7 @@ CFLAGS = -g -O2 -Wall -DNDEBUG
endif
LIBRETRO_COMMON_C = \
$(LIBRETRO_COMM_DIR)/string/stdstring.c \
$(LIBRETRO_COMM_DIR)/streams/file_stream.c \
$(LIBRETRO_COMM_DIR)/compat/compat_strcasestr.c \
$(LIBRETRO_COMM_DIR)/file/file_path.c \
@ -30,7 +31,6 @@ C_CONVERTER_C = \
$(LIBRETRODB_DIR)/c_converter.c \
$(LIBRETRO_COMM_DIR)/hash/rhash.c \
$(LIBRETRO_COMM_DIR)/compat/compat_fnmatch.c \
$(LIBRETRO_COMM_DIR)/string/stdstring.c \
$(LIBRETRO_COMMON_C)
C_CONVERTER_OBJS := $(C_CONVERTER_C:.c=.o)
@ -43,7 +43,6 @@ RARCHDB_TOOL_C = \
$(LIBRETRODB_DIR)/query.c \
$(LIBRETRODB_DIR)/libretrodb.c \
$(LIBRETRO_COMM_DIR)/compat/compat_fnmatch.c \
$(LIBRETRO_COMM_DIR)/string/stdstring.c \
$(LIBRETRO_COMMON_C)
RARCHDB_TOOL_OBJS := $(RARCHDB_TOOL_C:.c=.o)