From 4a6a522e33545a9c0428bb5899cc93dd9f62f2cd Mon Sep 17 00:00:00 2001 From: Dima Pulkinen Date: Tue, 27 Feb 2024 14:15:23 +0200 Subject: [PATCH] add PSP config file --- src/config.h | 13 +++++++++++++ src/makefile | 2 +- 2 files changed, 14 insertions(+), 1 deletion(-) create mode 100644 src/config.h diff --git a/src/config.h b/src/config.h new file mode 100644 index 0000000..147bc87 --- /dev/null +++ b/src/config.h @@ -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" \ No newline at end of file diff --git a/src/makefile b/src/makefile index 8545b20..f20ca98 100755 --- a/src/makefile +++ b/src/makefile @@ -312,7 +312,7 @@ SOCKET=$(SOCKET_$(PLAT)) # CC=$(CC_$(PLAT)) DEF=$(DEF_$(PLAT)) -CFLAGS=$(MYCFLAGS) $(CFLAGS_$(PLAT)) -DSTDC_HEADERS -DHAVE_STDLIB_H +CFLAGS=$(MYCFLAGS) $(CFLAGS_$(PLAT)) -DHAVE_CONFIG_H LDFLAGS=$(MYLDFLAGS) $(LDFLAGS_$(PLAT)) LD=$(LD_$(PLAT)) LUAINC= $(LUAINC_$(PLAT))