Snippets for apache-thrift 0.23.0 from Alpine armv7
Sourced from https://build.alpinelinux.org/buildlogs/build-edge-armv7/community/thrift/thrift-0.23.0-r0.log.
-
/home/buildozer/aports/community/thrift/src/thrift-0.23.0/lib/c_glib/src/thrift/c_glib/transport/thrift_ssl_socket.c:288:7: warning: 'ERR_remove_state' is deprecated: Since OpenSSL 1.0.0 [-Wdeprecated-declarations] 288 | ERR_remove_state(0); | ^~~~~~~~~~~~~~~~ -
/home/buildozer/aports/community/thrift/src/thrift-0.23.0/lib/c_glib/src/thrift/c_glib/transport/thrift_ssl_socket.c:678:3: warning: 'ERR_load_BIO_strings' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] 678 | ERR_load_BIO_strings(); | ^~~~~~~~~~~~~~~~~~~~ -
/home/buildozer/aports/community/thrift/src/thrift-0.23.0/lib/c_glib/src/thrift/c_glib/transport/thrift_ssl_socket.c:708:3: warning: 'ERR_remove_state' is deprecated: Since OpenSSL 1.0.0 [-Wdeprecated-declarations] 708 | ERR_remove_state(0); | ^~~~~~~~~~~~~~~~ -
/home/buildozer/aports/community/thrift/src/thrift-0.23.0/lib/c_glib/src/thrift/c_glib/transport/thrift_ssl_socket.c:839:7: warning: 'TLSv1_method' is deprecated: Since OpenSSL 1.1.0 [-Wdeprecated-declarations] 839 | context = SSL_CTX_new(TLSv1_method()); | ^~~~~~~ -
/home/buildozer/aports/community/thrift/src/thrift-0.23.0/lib/c_glib/src/thrift/c_glib/transport/thrift_ssl_socket.c:842:7: warning: 'TLSv1_1_method' is deprecated: Since OpenSSL 1.1.0 [-Wdeprecated-declarations] 842 | context = SSL_CTX_new(TLSv1_1_method()); | ^~~~~~~ -
/home/buildozer/aports/community/thrift/src/thrift-0.23.0/lib/c_glib/src/thrift/c_glib/transport/thrift_ssl_socket.c:845:7: warning: 'TLSv1_2_method' is deprecated: Since OpenSSL 1.1.0 [-Wdeprecated-declarations] 845 | context = SSL_CTX_new(TLSv1_2_method()); | ^~~~~~~ -
/usr/include/sys/poll.h:1:2: warning: #warning redirecting incorrect #include <sys/poll.h> to <poll.h> [-Wcpp] 1 | #warning redirecting incorrect #include <sys/poll.h> to <poll.h> | ^~~~~~~ -
/home/buildozer/aports/community/thrift/src/thrift-0.23.0/lib/cpp/src/thrift/transport/TSSLSocket.cpp:190:36: warning: 'const SSL_METHOD* TLSv1_method()' is deprecated: Since OpenSSL 1.1.0 [-Wdeprecated-declarations] 190 | ctx_ = SSL_CTX_new(TLSv1_method()); | ~~~~~~~~~~~~^~ -
/home/buildozer/aports/community/thrift/src/thrift-0.23.0/lib/cpp/src/thrift/transport/TSSLSocket.cpp:192:38: warning: 'const SSL_METHOD* TLSv1_1_method()' is deprecated: Since OpenSSL 1.1.0 [-Wdeprecated-declarations] 192 | ctx_ = SSL_CTX_new(TLSv1_1_method()); | ~~~~~~~~~~~~~~^~ -
/home/buildozer/aports/community/thrift/src/thrift-0.23.0/lib/cpp/src/thrift/transport/TSSLSocket.cpp:194:38: warning: 'const SSL_METHOD* TLSv1_2_method()' is deprecated: Since OpenSSL 1.1.0 [-Wdeprecated-declarations] 194 | ctx_ = SSL_CTX_new(TLSv1_2_method()); | ~~~~~~~~~~~~~~^~ -
/home/buildozer/aports/community/thrift/src/thrift-0.23.0/lib/cpp/src/thrift/transport/TSSLSocket.cpp:766:43: warning: 'unsigned char* ASN1_STRING_data(ASN1_STRING*)' is deprecated: Since OpenSSL 1.1.0 [-Wdeprecated-declarations] 766 | char* data = (char*)ASN1_STRING_data(name->d.ia5); | ~~~~~~~~~~~~~~~~^~~~~~~~~~~~~ -
/home/buildozer/aports/community/thrift/src/thrift-0.23.0/test/cpp/src/TestClient.cpp:511:70: warning: unpaired UTF-8 bidirectional control character detected [-Wbidi-chars=] 511 | "Melayu, Nnapulitano, Nedersaksisch, <U+0928><U+0947><U+092A><U+093E><U+0932> <U+092D><U+093E><U+0937><U+093E>, Nederlands, <U+202A>" | ~~~~~~~~ | | | | | end of bidirectional context | U+202A (LEFT-TO-RIGHT EMBEDDING) -
/home/buildozer/aports/community/thrift/src/thrift-0.23.0/lib/cpp/src/thrift/protocol/TProtocol.h:198:125: warning: right shift count >= width of type [-Wshift-count-overflow] 198 | # define THRIFT_htonll(n) ( (static_cast<uint64_t>(htonl(static_cast<uint32_t>(n))) << 32) + htonl(static_cast<uint32_t>(n >> 32)) )