BlueBrain / Rockets

REST and websockets C++ library
GNU Lesser General Public License v3.0
38 stars 8 forks source link

libuv support broken on Ubuntu 16.04 and with libwebsockets 3.0 #28

Closed rdumusc closed 6 years ago

rdumusc commented 6 years ago

Two functions are missing, one in libuv and one in lws 3.0:

1) ../Rockets/rockets/serverContext.cpp:59:63: error: ‘uv_loop_alive’ was not declared in this scope const bool uvLoopRunning = uvLoop && uv_loopalive(uvLoop) != 0;

2) ../Rockets/rockets/serverContext.cpp:92:44: error: ‘lws_uv_initloop’ was not declared in this scope lws_uvinitloop(context, uvLoop, 0);

lws 3.0 API: https://libwebsockets.org/lws-api-doc-v3.0-stable/html/group__uv.html