brbzull0 commented on PR #9679: URL: https://github.com/apache/trafficserver/pull/9679#issuecomment-1535011904
> I faced the issue on one of my boxes, and forgot to fix it. I think I did the same thing at that time and it worked, but don't we have two `-lssl -lcrypto` as the final `LIBS` output (i.e. ones from quiche.m4 and ones from crypto.m4)? That I don't know, with this we end up with a line like this: `config.log` ``` configure:23648: checking for quiche_connect in -lquiche configure:23673: cc -o conftest -D_GNU_SOURCE -I/opt/boringssl/include -DOPENSSL_NO_SSL_INTERN -I/opt/quiche/include -L/opt/boringssl/lib -L/opt/quiche/lib conftest.c -lquiche -lpthread -ldl -lquiche -lssl -lcrypto >&5 ``` so `-lquiche -lpthread -ldl -lquiche -lssl -lcrypto`, I can probably remove the first quiche flag from `quiche_test_libs` which will be added after anyway. ``` ... conftest.c -lquiche -lpthread -ldl -lssl -lcrypto ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
