add PSP config file

This commit is contained in:
Dima Pulkinen 2024-02-27 14:15:23 +02:00
parent 8b5739dc00
commit 4a6a522e33
2 changed files with 14 additions and 1 deletions

13
src/config.h Normal file
View File

@ -0,0 +1,13 @@
/*
* This file is needed to compile PSP stubs
*/
#define STDC_HEADERS
#define HAVE_STRING_H
#define HAVE_MEMORY_H
#define HAVE_STDLIB_H
//#define ENABLE_PTHREAD
//#define ENABLE_NLS
#define HAVE_MEMCPY
#include "netdb-compat.h"

View File

@ -312,7 +312,7 @@ SOCKET=$(SOCKET_$(PLAT))
# #
CC=$(CC_$(PLAT)) CC=$(CC_$(PLAT))
DEF=$(DEF_$(PLAT)) DEF=$(DEF_$(PLAT))
CFLAGS=$(MYCFLAGS) $(CFLAGS_$(PLAT)) -DSTDC_HEADERS -DHAVE_STDLIB_H CFLAGS=$(MYCFLAGS) $(CFLAGS_$(PLAT)) -DHAVE_CONFIG_H
LDFLAGS=$(MYLDFLAGS) $(LDFLAGS_$(PLAT)) LDFLAGS=$(MYLDFLAGS) $(LDFLAGS_$(PLAT))
LD=$(LD_$(PLAT)) LD=$(LD_$(PLAT))
LUAINC= $(LUAINC_$(PLAT)) LUAINC= $(LUAINC_$(PLAT))