diff --git a/libretro-common/samples/formats/png/Makefile b/libretro-common/samples/formats/png/Makefile index f1213e48ea..154285f8b1 100644 --- a/libretro-common/samples/formats/png/Makefile +++ b/libretro-common/samples/formats/png/Makefile @@ -4,7 +4,7 @@ CORE_DIR := . LIBRETRO_PNG_DIR := ../../../formats/png LIBRETRO_COMM_DIR := ../../.. -HAVE_IMLIB2=1 +HAVE_IMLIB2=0 LDFLAGS += -lz @@ -20,13 +20,20 @@ SOURCES_C := \ $(LIBRETRO_COMM_DIR)/encodings/encoding_crc32.c \ $(LIBRETRO_COMM_DIR)/encodings/encoding_utf.c \ $(LIBRETRO_COMM_DIR)/string/stdstring.c \ + $(LIBRETRO_COMM_DIR)/compat/fopen_utf8.c \ $(LIBRETRO_COMM_DIR)/compat/compat_strl.c \ + $(LIBRETRO_COMM_DIR)/compat/compat_posix_string.c \ $(LIBRETRO_COMM_DIR)/compat/compat_strcasestr.c \ + $(LIBRETRO_COMM_DIR)/file/nbio/nbio_intf.c \ $(LIBRETRO_COMM_DIR)/file/nbio/nbio_stdio.c \ + $(LIBRETRO_COMM_DIR)/file/nbio/nbio_linux.c \ + $(LIBRETRO_COMM_DIR)/file/nbio/nbio_unixmmap.c \ + $(LIBRETRO_COMM_DIR)/file/nbio/nbio_windowsmmap.c \ $(LIBRETRO_COMM_DIR)/file/archive_file.c \ $(LIBRETRO_COMM_DIR)/file/archive_file_zlib.c \ $(LIBRETRO_COMM_DIR)/file/file_path.c \ $(LIBRETRO_COMM_DIR)/streams/file_stream.c \ + $(LIBRETRO_COMM_DIR)/vfs/vfs_implementation.c \ $(LIBRETRO_COMM_DIR)/streams/trans_stream.c \ $(LIBRETRO_COMM_DIR)/streams/trans_stream_zlib.c \ $(LIBRETRO_COMM_DIR)/streams/trans_stream_pipe.c \