You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
guide mentions Raspberry Pi, may I build this project for x86? on a Ubuntu machine. have tried but getting these errors
libzwaveip.c:476:56: error: macro "BIO_ctrl_set_connected" passed 3 arguments, but takes just 2
BIO_ctrl_set_connected(sbio, 1, &pinfo->remote_addr);
libzwaveip.c:476:5: error: ‘BIO_ctrl_set_connected’ undeclared (first use in this function); did you mean ‘BIO_new_ssl_connect’?
BIO_ctrl_set_connected(sbio, 1, &pinfo->remote_addr);
The text was updated successfully, but these errors were encountered:
Its because you are linking it with libssl 1.1.0 . While as libzwaveip supports only 1.0.1.
You proabbly need older Ubuntu version which still has libssl 1.0.1 or install libssl1.0.1 on on your Ubuntu.
guide mentions Raspberry Pi, may I build this project for x86? on a Ubuntu machine. have tried but getting these errors
libzwaveip.c:476:56: error: macro "BIO_ctrl_set_connected" passed 3 arguments, but takes just 2
BIO_ctrl_set_connected(sbio, 1, &pinfo->remote_addr);
libzwaveip.c:476:5: error: ‘BIO_ctrl_set_connected’ undeclared (first use in this function); did you mean ‘BIO_new_ssl_connect’?
BIO_ctrl_set_connected(sbio, 1, &pinfo->remote_addr);
The text was updated successfully, but these errors were encountered: