mirror of
https://github.com/libretro/RetroArch
synced 2025-01-30 12:32:52 +00:00
Fix build
This commit is contained in:
parent
92d0c1f593
commit
e5fdc50812
@ -24,11 +24,8 @@
|
|||||||
#define HAVE_COMPRESSION
|
#define HAVE_COMPRESSION
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#include <compat/posix_string.h>
|
|
||||||
|
|
||||||
#if _MSC_VER
|
#if _MSC_VER
|
||||||
#include "../libretro-common/compat/compat_snprintf.c"
|
#include "../libretro-common/compat/compat_snprintf.c"
|
||||||
#include "../libretro-common/compat/compat_strcasestr.c"
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#include "../verbosity.c"
|
#include "../verbosity.c"
|
||||||
@ -37,6 +34,32 @@
|
|||||||
#include "../network/net_logger.c"
|
#include "../network/net_logger.c"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/*============================================================
|
||||||
|
COMPATIBILITY
|
||||||
|
============================================================ */
|
||||||
|
#ifndef HAVE_GETOPT_LONG
|
||||||
|
#include "../compat/compat_getopt.c"
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#ifndef HAVE_STRCASESTR
|
||||||
|
#include "../compat/compat_strcasestr.c"
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#ifndef HAVE_STRL
|
||||||
|
#include "../compat/compat_strl.c"
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#if defined(_WIN32)
|
||||||
|
#include "../compat/compat_posix_string.c"
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#if defined(WANT_IFADDRS)
|
||||||
|
#include "../compat/compat_ifaddrs.c"
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#include "../libretro-common/compat/compat_fnmatch.c"
|
||||||
|
#include "../libretro-common/memmap/memalign.c"
|
||||||
|
|
||||||
/*============================================================
|
/*============================================================
|
||||||
CONSOLE EXTENSIONS
|
CONSOLE EXTENSIONS
|
||||||
============================================================ */
|
============================================================ */
|
||||||
@ -103,32 +126,6 @@ PERFORMANCE
|
|||||||
#include "../libretro-common/features/features_cpu.c"
|
#include "../libretro-common/features/features_cpu.c"
|
||||||
#include "../performance_counters.c"
|
#include "../performance_counters.c"
|
||||||
|
|
||||||
/*============================================================
|
|
||||||
COMPATIBILITY
|
|
||||||
============================================================ */
|
|
||||||
#ifndef HAVE_GETOPT_LONG
|
|
||||||
#include "../compat/compat_getopt.c"
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#ifndef HAVE_STRCASESTR
|
|
||||||
#include "../compat/compat_strcasestr.c"
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#ifndef HAVE_STRL
|
|
||||||
#include "../compat/compat_strl.c"
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#if defined(_WIN32) && !defined(_XBOX)
|
|
||||||
#include "../compat/compat_posix_string.c"
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#if defined(WANT_IFADDRS)
|
|
||||||
#include "../compat/compat_ifaddrs.c"
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#include "../libretro-common/compat/compat_fnmatch.c"
|
|
||||||
#include "../libretro-common/memmap/memalign.c"
|
|
||||||
|
|
||||||
/*============================================================
|
/*============================================================
|
||||||
CONFIG FILE
|
CONFIG FILE
|
||||||
============================================================ */
|
============================================================ */
|
||||||
|
Loading…
x
Reference in New Issue
Block a user