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.
Today, whilst compiling curl together with most recent version of ngtcp2-DEV, encountered this compile error:
CC vauth/libcurl_la-gsasl.lo
CC vauth/libcurl_la-ntlm.lo
CC vauth/libcurl_la-oauth2.lo
CC vtls/libcurl_la-openssl.lo
CC vtls/libcurl_la-sectransp.lo
CC vtls/libcurl_la-vtls.lo
CC vquic/libcurl_la-ngtcp2.lo
vquic/ngtcp2.c: In function ‘qs_disconnect’:
vquic/ngtcp2.c:896:45: error: macro "ngtcp2_conn_write_connection_close" passed 9 arguments, but takes just 7
896 | ts);
| ^
In file included from vquic/ngtcp2.c:26:
/var/build-staticlib/ngtcp2/include/ngtcp2/ngtcp2.h:5433: note: macro "ngtcp2_conn_write_connection_close" defined here
5433 | #define ngtcp2_conn_write_connection_close(CONN, PATH, PI, DEST, DESTLEN, \
|
vquic/ngtcp2.c:891:8: error: ‘ngtcp2_conn_write_connection_close’ undeclared (first use in this function); did you mean ‘ngtcp2_pkt_write_connection_close’?
891 | rc = ngtcp2_conn_write_connection_close(qs->qconn, NULL, /* path */
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
| ngtcp2_pkt_write_connection_close
vquic/ngtcp2.c:891:8: note: each undeclared identifier is reported only once for each function it appears in
make[2]: *** [Makefile:3001: vquic/libcurl_la-ngtcp2.lo] Error 1
make[2]: Leaving directory '/var/build-git2/curl/lib'
make[1]: *** [Makefile:1343: all] Error 2
make[1]: Leaving directory '/var/build-git2/curl/lib'
make: *** [Makefile:1218: all-recursive] Error 1
The text was updated successfully, but these errors were encountered:
Today, whilst compiling curl together with most recent version of ngtcp2-DEV, encountered this compile error:
The text was updated successfully, but these errors were encountered: