diff options
author | 2019-08-19 19:06:21 -0500 | |
---|---|---|
committer | 2019-08-19 19:06:21 -0500 | |
commit | 4bda0549a9e180f201156515fe35289652cf2ba0 (patch) | |
tree | 7e74cb1111b4f7f491ebfc96fc981b495f60f335 /src/emu/http.cpp | |
parent | 123d5fad6c7943f47f77cba240699fb8ba82f874 (diff) |
Fix Solaris 2.11 (non-Oracle)
Diffstat (limited to 'src/emu/http.cpp')
-rw-r--r-- | src/emu/http.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/emu/http.cpp b/src/emu/http.cpp index c6a8bc011f0..3a28fa270c0 100644 --- a/src/emu/http.cpp +++ b/src/emu/http.cpp @@ -7,6 +7,10 @@ http.cpp HTTP server handling ***************************************************************************/ +#ifdef __sun +#define ASIO_DISABLE_DEV_POLL +#define ASIO_HAS_EPOLL +#endif #include "emu.h" #include "server_ws_impl.hpp" |