Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 34.3k
deps: use nghttp2's config.h on all platforms#27283
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Uh oh!
There was an error while loading. Please reload this page.
Conversation
nodejs-github-bot commented Apr 17, 2019
nodejs-github-bot commented Apr 17, 2019
Uh oh!
There was an error while loading. Please reload this page.
nodejs-github-bot commented Apr 18, 2019
richardlau commented Apr 18, 2019
Travis failed with: === release test-crypto-sign-verify ===Path: parallel/test-crypto-sign-verify--- stderr ---assert.js:523 throw err; ^AssertionError [ERR_ASSERTION]: Expected values to be strictly deep-equal:+ actual - expected Comparison{+ message: 'error:0908F070:PEM routines:get_header_and_data:short header'- message: 'bye, bye, library' } at Object.<anonymous> (/home/travis/build/nodejs/node/test/parallel/test-crypto-sign-verify.js:42:10) at Module._compile (internal/modules/cjs/loader.js:766:30) at Object.Module._extensions..js (internal/modules/cjs/loader.js:777:10) at Module.load (internal/modules/cjs/loader.js:635:32) at Function.Module._load (internal/modules/cjs/loader.js:562:12) at Function.Module.runMain (internal/modules/cjs/loader.js:833:10) at internal/main/run_main_module.js:17:11Command: out/Release/node /home/travis/build/nodejs/node/test/parallel/test-crypto-sign-verify.jsUnrelated? |
Fix warnings about use of htonl(), etc. by including config.h for all platforms, defining HAVE_ARPA_INET_H on non-Windows, and therefore including <arpa/inet.h>, which defines the host to network byte order conversion functions.
b35242b to 454d6ddComparesam-github commented Apr 18, 2019
Should not be related, I wrote that test in #27157, and it passed there, except travis's CI state isn't visible anymore. I found some other recent travis jobs that include #27157, and they passed, like https://travis-ci.com/nodejs/node/builds/108825880 I rebased against master, and repushed. |
nodejs-github-bot commented Apr 18, 2019
sam-github commented Apr 22, 2019
Landed in 90cf2d5 |
Fix warnings about use of htonl(), etc. by including config.h for all platforms, defining HAVE_ARPA_INET_H on non-Windows, and therefore including <arpa/inet.h>, which defines the host to network byte order conversion functions. PR-URL: #27283 Reviewed-By: Anna Henningsen <[email protected]> Reviewed-By: Joyee Cheung <[email protected]> Reviewed-By: James M Snell <[email protected]> Reviewed-By: Refael Ackermann <[email protected]>
nodejs/node#27283 Co-authored-by: Shelley Vohr <[email protected]>
nodejs/node#27283 Co-authored-by: Shelley Vohr <[email protected]>
Fix warnings about use of htonl(), etc. by including config.h for all
platforms, defining HAVE_ARPA_INET_H on non-Windows, and therefore
including <arpa/inet.h>, which defines the host to network byte order
conversion functions.
--
This works on Linux, I'll see what ci says about the other platforms.
Checklist
make -j4 test(UNIX), orvcbuild test(Windows) passes