curl 7.43.0 wont build with openssl 1.0.2d -


i try build openssl , curl in centos 6.6 x64,

first , build , install openssl successful , , try build curl ,

but fail build curl , show below error message ,

    ./lib/.libs/libcurl.so: undefined reference `ssl_ctx_set_next_proto_select_cb'      collect2: ld returned 1 exit status 

i have search lot of pages didnt find related information ,

please me fixed problem , thanks.

i faced exact issue. commented out following lines curl\lib\vtls\openssl.c

if(data->set.ssl_enable_npn)   ssl_ctx_set_next_proto_select_cb(connssl->ctx, select_next_proto_cb, conn); 

and build successful. not sure if it's bug somehow managed temporary fix.

the reason feel it's bug because: ssl_ctx_set_next_proto_select_cb() declared in openssl\include\ssl.h cannot find definition anywhere.


Comments

Popular posts from this blog

javascript - Using jquery append to add option values into a select element not working -

Android soft keyboard reverts to default keyboard on orientation change -

jquery - javascript onscroll fade same class but with different div -