1
0
mirror of synced 2025-04-20 11:47:43 +03:00

Support building httplib.h on OpenVMS x86 systems (#2031)

Modify for OpenVMS x86 C++. Make tests on OpenVMS currently not supported due to no cmake support.
Changes tested on OpenVMS clang C++ and Fedora & GCC
This commit is contained in:
alex-cornford 2025-01-29 12:44:22 +13:00 committed by GitHub
parent 9104054ca5
commit 60a1f00618
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -218,7 +218,9 @@ using socket_t = SOCKET;
#include <csignal>
#include <pthread.h>
#include <sys/mman.h>
#include <sys/select.h>
#ifndef __VMS
#include <sys/select.h>
#endif
#include <sys/socket.h>
#include <sys/un.h>
#include <unistd.h>