mirror of
https://github.com/libretro/RetroArch.git
synced 2025-04-02 10:51:52 -04:00
Move compat functionality to compat/.
This commit is contained in:
parent
e6b3b96400
commit
9ab02b12be
26 changed files with 27 additions and 27 deletions
4
Makefile
4
Makefile
|
@ -2,8 +2,8 @@ include config.mk
|
|||
|
||||
TARGET = ssnes tools/ssnes-joyconfig
|
||||
|
||||
OBJ = ssnes.o file.o driver.o settings.o dynamic.o message.o rewind.o movie.o gfx/gfx_common.o ups.o bps.o strl.o getopt.o screenshot.o audio/utils.o
|
||||
JOYCONFIG_OBJ = tools/ssnes-joyconfig.o conf/config_file.o strl.o
|
||||
OBJ = ssnes.o file.o driver.o settings.o dynamic.o message.o rewind.o movie.o gfx/gfx_common.o ups.o bps.o compat/strl.o compat/getopt.o screenshot.o audio/utils.o
|
||||
JOYCONFIG_OBJ = tools/ssnes-joyconfig.o conf/config_file.o compat/strl.o
|
||||
HEADERS = $(wildcard */*.h) $(wildcard *.h)
|
||||
|
||||
LIBS = -lm
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
TARGET = ssnes.exe
|
||||
JTARGET = ssnes-joyconfig.exe
|
||||
OBJ = ssnes.o file.o driver.o conf/config_file.o settings.o dynamic.o message.o rewind.o movie.o gfx/gfx_common.o bps.o ups.o strl.o screenshot.o getopt.o audio/utils.o posix_string.o
|
||||
JOBJ = conf/config_file.o tools/ssnes-joyconfig.o strl.o posix_string.o
|
||||
OBJ = ssnes.o file.o driver.o conf/config_file.o settings.o dynamic.o message.o rewind.o movie.o gfx/gfx_common.o bps.o ups.o compat/strl.o screenshot.o compat/getopt.o audio/utils.o compat/posix_string.o
|
||||
JOBJ = conf/config_file.o tools/ssnes-joyconfig.o compat/strl.o compat/posix_string.o
|
||||
|
||||
CC = gcc
|
||||
CXX = g++
|
||||
|
|
2
cheats.c
2
cheats.c
|
@ -19,7 +19,7 @@
|
|||
#include "sha256.h"
|
||||
#include "dynamic.h"
|
||||
#include "general.h"
|
||||
#include "strl.h"
|
||||
#include "compat/strl.h"
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include "config.h"
|
||||
|
|
|
@ -22,8 +22,8 @@
|
|||
#include <stdio.h>
|
||||
#include <ctype.h>
|
||||
#include <errno.h>
|
||||
#include "../strl.h"
|
||||
#include "../posix_string.h"
|
||||
#include "../compat/strl.h"
|
||||
#include "../compat/posix_string.h"
|
||||
#include "../msvc/msvc_compat.h"
|
||||
|
||||
#if !defined(_WIN32) && !defined(__CELLOS_LV2__) && !defined(_XBOX)
|
||||
|
|
|
@ -18,7 +18,7 @@
|
|||
#include <stdio.h>
|
||||
#include <string.h>
|
||||
#include "../boolean.h"
|
||||
#include "../strl.h"
|
||||
#include "../compat/strl.h"
|
||||
#include "../libsnes.hpp"
|
||||
#include "../general.h"
|
||||
#include <string.h>
|
||||
|
|
|
@ -17,7 +17,7 @@
|
|||
|
||||
#include "main_wrap.h"
|
||||
#include "../general.h"
|
||||
#include "../strl.h"
|
||||
#include "../compat/strl.h"
|
||||
#include <stdlib.h>
|
||||
#include <stddef.h>
|
||||
#include <string.h>
|
||||
|
|
2
driver.c
2
driver.c
|
@ -22,7 +22,7 @@
|
|||
#include <stdio.h>
|
||||
#include <string.h>
|
||||
#include <math.h>
|
||||
#include "posix_string.h"
|
||||
#include "compat/posix_string.h"
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include "config.h"
|
||||
|
|
|
@ -17,7 +17,7 @@
|
|||
|
||||
#include "dynamic.h"
|
||||
#include "general.h"
|
||||
#include "strl.h"
|
||||
#include "compat/strl.h"
|
||||
#include <string.h>
|
||||
|
||||
#ifdef SSNES_CONSOLE
|
||||
|
|
2
file.c
2
file.c
|
@ -26,7 +26,7 @@
|
|||
#include "movie.h"
|
||||
#include "ups.h"
|
||||
#include "bps.h"
|
||||
#include "strl.h"
|
||||
#include "compat/strl.h"
|
||||
|
||||
#ifdef HAVE_XML
|
||||
#include "sha256.h"
|
||||
|
|
|
@ -33,7 +33,7 @@
|
|||
#include "dynamic.h"
|
||||
#include "cheats.h"
|
||||
#include "audio/ext/ssnes_dsp.h"
|
||||
#include "strl.h"
|
||||
#include "compat/strl.h"
|
||||
|
||||
#ifdef __CELLOS_LV2__
|
||||
#include <sys/timer.h>
|
||||
|
|
2
gfx/gl.c
2
gfx/gl.c
|
@ -32,7 +32,7 @@
|
|||
#include "gl_common.h"
|
||||
#include "gfx_common.h"
|
||||
#include "sdlwrap.h"
|
||||
#include "../strl.h"
|
||||
#include "../compat/strl.h"
|
||||
|
||||
#define NO_SDL_GLEXT
|
||||
#include "SDL.h"
|
||||
|
|
|
@ -25,8 +25,8 @@
|
|||
#include "../../libsnes.hpp"
|
||||
#include "py_state.h"
|
||||
#include "../../general.h"
|
||||
#include "../../strl.h"
|
||||
#include "../../posix_string.h"
|
||||
#include "../../compat/strl.h"
|
||||
#include "../../compat/posix_string.h"
|
||||
#include "../../file.h"
|
||||
|
||||
#define PY_READ_FUNC_DECL(RAMTYPE) py_read_##RAMTYPE
|
||||
|
|
|
@ -19,8 +19,8 @@
|
|||
#include <string.h>
|
||||
#include "../general.h"
|
||||
#include "shader_glsl.h"
|
||||
#include "../strl.h"
|
||||
#include "../posix_string.h"
|
||||
#include "../compat/strl.h"
|
||||
#include "../compat/posix_string.h"
|
||||
#include "snes_state.h"
|
||||
#include "../dynamic.h"
|
||||
|
||||
|
|
|
@ -17,7 +17,7 @@
|
|||
|
||||
#include "snes_state.h"
|
||||
#include <stdlib.h>
|
||||
#include "../strl.h"
|
||||
#include "../compat/strl.h"
|
||||
#include "../general.h"
|
||||
#include "../libsnes.hpp"
|
||||
|
||||
|
|
|
@ -25,7 +25,7 @@
|
|||
#include <stddef.h>
|
||||
#include <string.h>
|
||||
#include "input_luts.h"
|
||||
#include "../strl.h"
|
||||
#include "../compat/strl.h"
|
||||
|
||||
uint64_t ssnes_default_keybind_lut[SSNES_FIRST_META_KEY];
|
||||
|
||||
|
|
|
@ -19,7 +19,7 @@
|
|||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
#include "boolean.h"
|
||||
#include "posix_string.h"
|
||||
#include "compat/posix_string.h"
|
||||
|
||||
struct queue_elem
|
||||
{
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
*/
|
||||
|
||||
#include "screenshot.h"
|
||||
#include "strl.h"
|
||||
#include "compat/strl.h"
|
||||
#include <stdio.h>
|
||||
#include <time.h>
|
||||
#include "boolean.h"
|
||||
|
|
|
@ -19,10 +19,10 @@
|
|||
#include "conf/config_file.h"
|
||||
#include "conf/config_file_macros.h"
|
||||
#include "input/keysym.h"
|
||||
#include "strl.h"
|
||||
#include "compat/strl.h"
|
||||
#include "config.def.h"
|
||||
#include "file.h"
|
||||
#include "posix_string.h"
|
||||
#include "compat/posix_string.h"
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include "config.h"
|
||||
|
|
4
ssnes.c
4
ssnes.c
|
@ -30,10 +30,10 @@
|
|||
#include "record/ffemu.h"
|
||||
#include "rewind.h"
|
||||
#include "movie.h"
|
||||
#include "strl.h"
|
||||
#include "compat/strl.h"
|
||||
#include "screenshot.h"
|
||||
#include "cheats.h"
|
||||
#include "getopt_ssnes.h"
|
||||
#include "compat/getopt_ssnes.h"
|
||||
|
||||
#if defined(_WIN32) && !defined(_XBOX)
|
||||
#define WIN32_LEAN_AND_MEAN
|
||||
|
|
|
@ -30,7 +30,7 @@
|
|||
#include "../boolean.h"
|
||||
#include "general.h"
|
||||
#include <assert.h>
|
||||
#include "../posix_string.h"
|
||||
#include "../compat/posix_string.h"
|
||||
|
||||
static int g_player = 1;
|
||||
static int g_joypad = 0;
|
||||
|
|
Loading…
Add table
Reference in a new issue