Changeset 189 in Main for trunk/Server
- Timestamp:
- Sep 29, 2024, 9:37:00 AM (7 weeks ago)
- Location:
- trunk/Server
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Server/Makefile
r187 r189 6 6 .SUFFIXES: .c .o 7 7 8 OBJS = version.o main.o config.o server.o http.o module.o strptime.o $(EXTOBJS) $(PREOBJS)8 OBJS = main.o version.o config.o server.o http.o module.o strptime.o $(EXTOBJS) $(PREOBJS) 9 9 10 10 all: tewi$(EXEC) $(TARGET) … … 13 13 14 14 tewi$(EXEC): $(OBJS) ../Common/common.a 15 $(CC) $(LDFLAGS) $(EXTLDFLAGS) -o $@ $(OBJS) $(EXTLIBS) $(LIBS) ../Common/common.a15 $(CC) $(LDFLAGS) $(EXTLDFLAGS) -o $@ $(OBJS) $(EXTLIBS) ../Common/common.a $(LIBS) 16 16 $(SERVADD) 17 17 -
trunk/Server/config.c
r187 r189 106 106 #elif defined(__PPU__) 107 107 strcpy(config.hostname, "ps3"); 108 #elif defined(__ps2sdk__) 109 strcpy(config.hostname, "ps2"); 108 110 #else 109 111 gethostname(config.hostname, 1024); -
trunk/Server/main.c
r187 r189 5 5 #include "../config.h" 6 6 7 #include <unistd.h> 7 8 #include <stdio.h> 8 9 #include <stdbool.h> … … 40 41 #define printf(...) pspDebugScreenPrintf(__VA_ARGS__) 41 42 #define STDERR_LOG(...) pspDebugScreenPrintf(__VA_ARGS__) 43 #elif defined(__ps2sdk__) 44 #include <debug.h> 45 #include <sifrpc.h> 46 47 #define printf(...) scr_printf(__VA_ARGS__) 48 #define STDERR_LOG(...) scr_printf(__VA_ARGS__) 42 49 #else 43 50 #define STDERR_LOG(...) fprintf(stderr, __VA_ARGS__) … … 244 251 printf("PS3 Bootstrap, Tewi/%s\n", tw_get_version()); 245 252 netInitialize(); 253 #elif defined(__ps2sdk__) 254 SifInitRpc(0); 255 init_scr(); 256 scr_printf("PS2 Bootstrap, Tewi/%s\n", tw_get_version()); 257 while(1) 258 ; 246 259 #endif 247 260 int st = startup(argc, argv); -
trunk/Server/module.c
r187 r189 16 16 extern struct tw_config config; 17 17 18 #if defined(_PSP) || defined(__PPU__) 18 #if defined(_PSP) || defined(__PPU__) || defined(__ps2sdk__) 19 19 void* tw_module_load(const char* path) { return NULL; } 20 20 -
trunk/Server/server.c
r187 r189 62 62 #endif 63 63 64 #if def _PSP64 #if defined(_PSP) || defined(__ps2sdk__) 65 65 #include "strptime.h" 66 66 #endif … … 522 522 struct tm tm; 523 523 strptime(req.headers[i + 1], "%a, %d %b %Y %H:%M:%S GMT", &tm); 524 #if defined(__MINGW32__) || defined(_PSP) || defined(__PPU__) 524 #if defined(__MINGW32__) || defined(_PSP) || defined(__PPU__) || defined(__ps2sdk__) 525 525 time_t t = 0; 526 526 struct tm* btm = localtime(&t); -
trunk/Server/strptime.h
r182 r189 8 8 #include <time.h> 9 9 10 #if defined(_WIN32) || defined(_PSP) 10 #if defined(_WIN32) || defined(_PSP) || defined(__ps2sdk__) 11 11 char* strptime(const char *buf, const char *fmt, struct tm *tm); 12 12 #endif
Note:
See TracChangeset
for help on using the changeset viewer.