]> Nishi Git Mirror - tewi.git/commitdiff
trying to fix bsdi port
authorNishi <nishi@nishi.boats>
Thu, 17 Oct 2024 10:24:11 +0000 (10:24 +0000)
committerNishi <nishi@nishi.boats>
Thu, 17 Oct 2024 10:24:11 +0000 (10:24 +0000)
git-svn-id: file:///raid/svn-personal/tewi/trunk@380 8739d7e6-ffea-ec47-b151-bdff447c6205

Server/http.c
Server/strptime.h

index 4cf46b8417213d5e45a48bc81ce646acee1c2e6c..ed7fb72e666b41fb11e34b24277d305c621771c3 100644 (file)
@@ -43,6 +43,9 @@
 #include <time.h>
 #include <sys/time.h>
 #else
+#ifdef __bsdi__
+#include <sys/time.h>
+#endif
 #include <sys/select.h>
 #endif
 #endif
index c56574730c4c6d3970197955fb412e1e56b709b5..68eab315f680a71c0359fd49fb4e404ee650f5c3 100644 (file)
@@ -7,7 +7,7 @@ extern "C" {
 
 #include <time.h>
 
-#if defined(_WIN32) || defined(_PSP) || defined(__ps2sdk__) || defined(__OS2__) || defined(__NETWARE__) || defined(__NeXT__) || defined(__DOS__)
+#if defined(_WIN32) || defined(_PSP) || defined(__ps2sdk__) || defined(__OS2__) || defined(__NETWARE__) || defined(__NeXT__) || defined(__DOS__) || defined(__bsdi__)
 char* strptime(const char *buf, const char *fmt, struct tm *tm);
 #endif