Builder curl-threaded-solaris11-sparc Build #5458
Results:
Build successful
SourceStamp:
| Project | curl |
| Repository | https://github.com/curl/curl.git |
| Branch | master |
| Revision | 04d90b5deb332cd2359d5ba3f71804c55da14397 |
| Got Revision | 04d90b5deb332cd2359d5ba3f71804c55da14397 |
| Changes | 4 changes |
BuildSlave:
unstable11sReason:
The SingleBranchScheduler scheduler named 'schedule-curl-threaded-solaris11-sparc' triggered this build
Steps and Logfiles:
Build Properties:
| Name | Value | Source |
|---|---|---|
| branch | master | Build |
| builddir | /export/home/buildbot/slave/curl-threaded-solaris11-sparc | slave |
| buildername | curl-threaded-solaris11-sparc | Builder |
| buildnumber | 5458 | Build |
| codebase | Build | |
| got_revision | 04d90b5deb332cd2359d5ba3f71804c55da14397 | Git |
| osplatform | SPARC | SetPropertyFromCommand Step |
| osrelease | 11 | SetPropertyFromCommand Step |
| project | curl | Build |
| repository | https://github.com/curl/curl.git | Build |
| revision | 04d90b5deb332cd2359d5ba3f71804c55da14397 | Build |
| scheduler | schedule-curl-threaded-solaris11-sparc | Scheduler |
| slavename | unstable11s | BuildSlave |
| workdir | /export/home/buildbot/slave/curl-threaded-solaris11-sparc | slave (deprecated) |
Forced Build Properties:
| Name | Label | Value |
|---|
Responsible Users:
- Daniel Stenbergdaniel@haxx.se
- Viktor Szakatscommit@vsz.me
Timing:
| Start | Mon Mar 16 11:41:16 2026 |
| End | Mon Mar 16 12:50:01 2026 |
| Elapsed | 1 hrs, 8 mins, 45 secs |
All Changes:
:
Change #261154
Category curl Changed by Daniel Stenberg <daniel@haxx.se> Changed at Mon 16 Mar 2026 11:01:19 Repository https://github.com/curl/curl.git Project curl Branch master Revision b240c5292cf0ed42149799c9994d3dd5bdf2d2bc Comments
badwords: detect the the and with with They seem to be the most common mistaken repeated words Ref #20933 Closes #20934
Changed files
- scripts/badwords.txt
Change #261155
Category curl Changed by Daniel Stenberg <daniel@haxx.se> Changed at Mon 16 Mar 2026 11:01:48 Repository https://github.com/curl/curl.git Project curl Branch master Revision 3334fca537b019c4b0d2f3a2bbd43ac8a27ff89f Comments
badwords-all: exit with correct code on errors Problems remain undetected in CI otherwise Closes #20934
Changed files
- scripts/badwords-all
Change #261159
Category curl Changed by Viktor Szakats <commit@vsz.me> Changed at Mon 16 Mar 2026 11:30:45 Repository https://github.com/curl/curl.git Project curl Branch master Revision 6b0a88561106e332773fa676e7949552b0883d3f Comments
ldap: fix to initialize cleartext connection on Windows Regression since curl 8.18.0. Reported-by: Yoshiro Yoneya Fixes #20927 Follow-up to 39d1976b7f709a516e3243338ebc0443bdd8d56d #19830 Closes #20928
Changed files
- lib/ldap.c
Change #261160
Category curl Changed by Viktor Szakats <commit@vsz.me> Changed at Mon 16 Mar 2026 11:31:01 Repository https://github.com/curl/curl.git Project curl Branch master Revision 04d90b5deb332cd2359d5ba3f71804c55da14397 Comments
configure: add option to trace pkg-config detection details To aid debugging cases when dependency detection acts unexpectedly. Sprung from spending days trying to figure out behavior of ngtcp2 crypto modules and their dependencies. You can enable by setting env `CURL_TRACE_PKG_CONFIG` to a non-empty value. When enabled, details are logged for both successful and unsuccessful detections. Logging of unsuccessful ones is automatically enabled when `CURL_CI` env is set, which is the case for all CI jobs. It works by asking for `--debug` output and grepping for lines that seem useful for this purpose. Output is different for classic pkg-config and pkgconf, and may depending on tool version. Also append `--print-errors` output if any. Examples (with pkgconf): Fail, before: ``` checking for libngtcp2_crypto_boringssl options with pkg-config... no configure: error: --with-ngtcp2 was specified but could not find ngtcp2_crypto_boringssl pkg-config file. ``` Fail, after: ``` checking for libngtcp2_crypto_boringssl options with pkg-config... no configure: pkg-config --exists libngtcp2_crypto_boringssl trace: ---- begin trying path: /home/runner/nghttp3/build/lib/pkgconfig for libngtcp2_crypto_boringssl trying path: /home/runner/ngtcp2-boringssl/build/lib/pkgconfig for libngtcp2_crypto_boringssl trying path: /home/runner/nghttp3/build/lib/pkgconfig for libngtcp2 trying path: /home/runner/ngtcp2-boringssl/build/lib/pkgconfig for libngtcp2 trying path: /home/runner/nghttp3/build/lib/pkgconfig for openssl trying path: /home/runner/ngtcp2-boringssl/build/lib/pkgconfig for openssl trying path: /home/runner/nghttp2/build/lib/pkgconfig for openssl ==== error: Package openssl was not found in the pkg-config search path. Perhaps you should add the directory containing `openssl.pc' to the PKG_CONFIG_PATH environment variable Package 'openssl', required by 'libngtcp2_crypto_boringssl', not found ---- end configure: error: --with-ngtcp2 was specified but could not find ngtcp2_crypto_boringssl pkg-config file. ``` Success, after: ``` checking for libngtcp2_crypto_boringssl options with pkg-config... found configure: pkg-config --exists libngtcp2_crypto_boringssl trace: ---- begin trying path: /home/runner/awslc/build/lib/pkgconfig for libngtcp2_crypto_boringssl trying path: /home/runner/nghttp3/build/lib/pkgconfig for libngtcp2_crypto_boringssl trying path: /home/runner/nghttp2/build/lib/pkgconfig for libngtcp2_crypto_boringssl trying path: /home/runner/ngtcp2/build/lib/pkgconfig for libngtcp2_crypto_boringssl trying path: /home/runner/awslc/build/lib/pkgconfig for libngtcp2 trying path: /home/runner/nghttp3/build/lib/pkgconfig for libngtcp2 trying path: /home/runner/nghttp2/build/lib/pkgconfig for libngtcp2 trying path: /home/runner/ngtcp2/build/lib/pkgconfig for libngtcp2 trying path: /home/runner/awslc/build/lib/pkgconfig for openssl trying path: /home/runner/awslc/build/lib/pkgconfig for libssl trying path: /home/runner/awslc/build/lib/pkgconfig for libcrypto ---- end ``` More examples: https://github.com/curl/curl/pull/20926#issuecomment-4064259935 If there is an externally enablable, built-in feature like this in classic pkg-config or pkgconf, I could not find it. Also: - GHA/http3-linux: set `CURL_TRACE_PKG_CONFIG` to log detection details. H3 builds are prone to hard-to-debug dependency issues. Ref: #20920 Follow-up to 3c64ffaff4cd8c8275627dd2e17b6879a1d32262 #18415 #18188 Follow-up to 99500660af19f89069e71c2251c13963401b3806 #18028 #18022 Cherry-picked from #20926 Closes #20931
Changed files
- .github/workflows/http3-linux.yml
- acinclude.m4
- docs/INSTALL.md