mirror of
https://github.com/Oibaf66/uae-wii.git
synced 2024-11-22 02:29:17 +01:00
Enough to build
This commit is contained in:
parent
6abc038d08
commit
3b0bd617bf
@ -26,7 +26,8 @@ SRCS := $(wildcard $(SRC_DIR)/*.c $(SRC_DIR)/gfxdep/*.c $(SRC_DIR)/joydep/*.c $(
|
||||
|
||||
SRCS := $(filter-out src/compemu_raw_x86.c src/compemu_fpp.c src/compemu_support.c src/svgancui.c src/build68k.c src/catweasel.c \
|
||||
src/cdrom.c src/blkdev-libscg.c src/blkdev.c src/blitops.c src/akiko.c src/filesys_bootrom.c \
|
||||
src/genblitter.c src/gencomp.c src/gencpu.c src/genlinetoscr.c src/compemu.c src/compstbl.c \
|
||||
src/filesys.c src/fsdb.c src/fsdb_unix.c src/hardfile_unix.c src/genblitter.c src/gencomp.c src/gencpu.c \
|
||||
src/hardfile.c src/genlinetoscr.c src/compemu.c src/compstbl.c \
|
||||
src/readdisk.c src/gengenblitter.c src/scsiemul.c src/tui.c src/linetoscr.c, $(SRCS))
|
||||
|
||||
# Library object files.
|
||||
@ -76,7 +77,7 @@ COMMON_FLAGS := -g -O2 -mrvl -Wall $(MACHDEP)
|
||||
INCLUDES := -Isrc/md-generic/ -Isrc/include -Isrc -I$(DEVKITPRO)/libogc/include -I$(DEVKITPRO)/libogc/include/SDL
|
||||
DEFINES := -DGEKKO -DFPUEMU -DCPUEMU_0 -DCPUEMU_5 -DCPUEMU_6 -DAGA \
|
||||
-DAUTOCONFIG -DFILESYS -DSUPPORT_THREADS -DUSE_SDL -DFDI2RAW -DDEBUGGER -DSAVESTATE \
|
||||
-DENFORCER -DACTION_REPLAY
|
||||
-DENFORCER -DACTION_REPLAY -UFILESYS
|
||||
CFLAGS := $(COMMON_FLAGS) $(INCLUDES) $(DEFINES)
|
||||
|
||||
# Test link flags.
|
||||
|
@ -59,6 +59,20 @@
|
||||
#define DUMPLOCK(u,x)
|
||||
#endif
|
||||
|
||||
#if defined(GEKKOb)
|
||||
#define R_OK 1
|
||||
static int wii_access (const char *pathname, int mode)
|
||||
{
|
||||
struct stat st;
|
||||
|
||||
if (stat(pathname, &st) < 0)
|
||||
return -1;
|
||||
if (mode == R_OK && !S_ISDIR(st))
|
||||
return 0;
|
||||
return -1;
|
||||
}
|
||||
#define access wii_access
|
||||
#endif
|
||||
|
||||
static void aino_test (a_inode *aino)
|
||||
{
|
||||
|
@ -135,10 +135,19 @@ char *fsdb_create_unique_nname (a_inode *base, const char *suggestion)
|
||||
for (;;) {
|
||||
int i;
|
||||
char *p = build_nname (base->nname, tmp);
|
||||
#if !defined(GEKKOb)
|
||||
if (access (p, R_OK) < 0 && errno == ENOENT) {
|
||||
printf ("unique name: %s\n", p);
|
||||
return p;
|
||||
}
|
||||
#else
|
||||
struct stat st;
|
||||
|
||||
if (stat(p, &st) < 0) {
|
||||
printf ("unique name: %s\n", p);
|
||||
return p;
|
||||
}
|
||||
#endif
|
||||
free (p);
|
||||
|
||||
/* tmpnam isn't reentrant and I don't really want to hack configure
|
||||
|
@ -795,7 +795,9 @@ void real_main (int argc, char **argv)
|
||||
{
|
||||
show_version ();
|
||||
|
||||
#if defined(FILESYS)
|
||||
currprefs.mountinfo = changed_prefs.mountinfo = &options_mountinfo;
|
||||
#endif
|
||||
restart_program = 1;
|
||||
#ifdef _WIN32
|
||||
sprintf (restart_config, "%sConfigurations\\", start_path);
|
||||
|
@ -35,7 +35,7 @@ static RETSIGTYPE sigbrkhandler (int foo)
|
||||
|
||||
void setup_brkhandler (void)
|
||||
{
|
||||
#if defined(__unix) && !defined(__NeXT__)
|
||||
#if defined(__unix) && !defined(__NeXT__) && !defined(GEKKO)
|
||||
struct sigaction sa;
|
||||
sa.sa_handler = sigbrkhandler;
|
||||
sa.sa_flags = 0;
|
||||
|
Loading…
Reference in New Issue
Block a user