Home - Waterfall Grid T-Grid Console Builders Recent Builds Buildslaves Changesources - JSON API - About

Builder curl-threaded-solaris10-i386 Build #4279

Results:

Exception git

SourceStamp:

Projectcurl
Repositoryhttps://github.com/curl/curl.git
Branchmaster
Revision1e3c2bec7eb735736755e15a48701f5b2d5b5979
Changes10 changes

BuildSlave:

unstable10x

Reason:

The SingleBranchScheduler scheduler named 'schedule-curl-threaded-solaris10-i386' triggered this build

Steps and Logfiles:

  1. git git exception ( 0 secs )
    1. - no logs -
    1. - no logs -
    1. - no logs -
  2. Runtest  
    1. - no logs -
    1. - no logs -

Build Properties:

NameValueSource
branch master Build
builddir /export/home/buildbot/slave/curl-threaded-solaris10-i386 slave
buildername curl-threaded-solaris10-i386 Builder
buildnumber 4279 Build
codebase Build
project curl Build
repository https://github.com/curl/curl.git Build
revision 1e3c2bec7eb735736755e15a48701f5b2d5b5979 Build
scheduler schedule-curl-threaded-solaris10-i386 Scheduler
slavename unstable10x BuildSlave
workdir /export/home/buildbot/slave/curl-threaded-solaris10-i386 slave (deprecated)

Forced Build Properties:

NameLabelValue

Responsible Users:

  1. Daniel Stenberg
  2. Viktor Szakats

Timing:

StartTue Mar 17 04:13:29 2026
EndTue Mar 17 09:03:21 2026
Elapsed4 hrs, 49 mins, 51 secs

All Changes:

:

  1. Change #261178

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Mon 16 Mar 2026 13:18:45
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 9d104f566fd48fe19a833a0552f605ede82d0b20

    Comments

    ldap: drop duplicate `ldap_set_option()` on Windows
    Already set after `ldap_sslinit()`/`ldap_init()` and before
    `ldap_ssl`-specific initialization.
    
    Follow-up to 39d1976b7f709a516e3243338ebc0443bdd8d56d #19830
    Follow-up to b41e65a8e3ed8fdafb535328997bedc925f21e37
    Follow-up to b91421b10764c4b7450ea29d305cc65c3f828dd1
    
    Closes #20930

    Changed files

    • lib/ldap.c
  2. Change #261180

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Mon 16 Mar 2026 13:32:39
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 0793c98027edcf289cfe951879369a94cf64d323

    Comments

    cmake: rework binutils ld hack to not read `LOCATION` property
    Instead hook up the upstream target name as-is to the local wrapper
    target.
    
    To:
    - make the hack work regardless of how the upstream target was created.
    - make it work the same way in `curl-config.cmake`.
      Before this patch it had no guard for `IMPORTED` targets even though
      `find_dependencies()` is not guaranteed to create the target expected
      if it already existed and was potentially created differently.
    
    Depends-on: #20840
    Follow-up to 4f1646ef8a9ae3052ee3e13a09c418de9ec85819 #20486 #20419
    
    Closes #20839

    Changed files

    • CMake/curl-config.in.cmake
    • CMakeLists.txt
  3. Change #261191

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Mon 16 Mar 2026 14:24:25
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 3525ed9b2f1d63a6da1dc0aac835a04ad5073854

    Comments

    ECH.md: replace double-backticks with single ones
    Also fix a indent/space nits.
    
    Closes #20937

    Changed files

    • docs/ECH.md
  4. Change #261200

    Category curl
    Changed by Daniel Stenberg <danielohnoyoudont@haxx.se>
    Changed at Mon 16 Mar 2026 15:31:44
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 29cb750fc2bdd8a00eb32fb4ace28705fba1e31a

    Comments

    tool_cb_wrt: fix no-clobber error handling
    When saving a file with --no-clobber, make sure the existing file name
    remains set when creating the name fails. In a retry scenario, it comes
    back and uses that variable again.
    
    Add test 3036 to verify.
    
    Reported-by: James Fuller
    Closes #20939

    Changed files

    • src/tool_cb_wrt.c
    • tests/data/Makefile.am
    • tests/data/test3036
  5. Change #261217

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Mon 16 Mar 2026 18:12:00
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision ec3f198ef01dcb41ca281e85b57d34d9c43065b2

    Comments

    GHA/http3-linux: prefer `contains()` over `==` in job name filters
    To allow extending names without breaking logic.
    
    Cherry-picked from #20920
    
    Closes #20941

    Changed files

    • .github/workflows/http3-linux.yml
  6. Change #261225

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Mon 16 Mar 2026 19:43:52
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 3ba48ee9ef12a86ac92f3cb71585a1e9867dbd8c

    Comments

    curl-wolfssl.m4: fix to use the correct value for pkg-config directory
    Before this patch the `$withval` variable may have contained `yes` or
    other unrelated values, instead of the wolfSSL directory configured via
    `--with-wolfssl=`.
    
    Fixing:
    ```
    checking for wolfssl options with pkg-config... found
    configure: pkg-config --exists wolfssl trace:
    ---- begin
    PKG_CONFIG_PATH: |/home/runner/wolfssl/build/lib/pkgconfig:/home/runner/nghttp3/build/lib/pkgconfig:/home/runner/ngtcp2/build/lib/pkgconfig:/home/runner/nghttp2/build/lib/pkgconfig|
    PKG_CONFIG_LIBDIR: |yes/lib/pkgconfig|         <=============== 'yes' used as base directory
    trying path: /home/runner/wolfssl/build/lib/pkgconfig for wolfssl
    ---- end
    ```
    Ref: https://github.com/curl/curl/actions/runs/23146424326/job/67235762794?pr=20920#step:18:245
    
    Cherry-picked from #20920
    
    Closes #20943

    Changed files

    • m4/curl-wolfssl.m4
  7. Change #261226

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Mon 16 Mar 2026 19:43:52
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 8423cc8e3bae9049103ba4b79b3b550bbbe343fb

    Comments

    configure: prefer dependency-specific variables over `$withval`
    Tidy up, for robustness and consistency.
    
    Ref: #20943
    Cherry-picked from #20920
    
    Closes #20944

    Changed files

    • configure.ac
  8. Change #261235

    Category curl
    Changed by Daniel Stenberg <danielohnoyoudont@haxx.se>
    Changed at Mon 16 Mar 2026 22:43:14
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 3e8df37885b8f6eaf0c72fcf8cb4d8f6690c41fe

    Comments

    digest: pass in the user name quoted (as well)
    For cases where the user puts a double quote or backspace in the user
    name.
    
    Adjusted test 907 to verify
    
    Reported-by: am-perip on hackerone
    
    Closes #20940

    Changed files

    • lib/vauth/digest.c
    • tests/data/test907
  9. Change #261242

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Tue 17 Mar 2026 00:42:41
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision e05cfd6454a9483d72ee8170501686ebd5663390

    Comments

    build: drop `openssl` module dependency for BoringSSL from `libcurl.pc`
    BoringSSL does not provide pc files, as of v0.20260211.0 (and its latest
    main branch.) It also did not provide them in the past.
    
    Its sibling fork, AWS-LC does provide them since v1.18.0 (2023-12-04):
    https://github.com/aws/aws-lc/commit/7e6aef83ecf7bec3a0c6d38e38c64ac079647c78
    https://github.com/aws/aws-lc/pull/1310
    
    Introduce internal variable `OPENSSL_IS_AWSLC` to make this possible.
    
    Bug: https://github.com/curl/curl/pull/20926#issuecomment-4063674714
    Ref: https://github.com/ngtcp2/ngtcp2/pull/1689#issuecomment-4063725461
    
    Closes #20938

    Changed files

    • CMakeLists.txt
    • configure.ac
    • m4/curl-openssl.m4
  10. Change #261248

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Tue 17 Mar 2026 02:47:05
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 1e3c2bec7eb735736755e15a48701f5b2d5b5979

    Comments

    GHA/http3-linux: add CI reproducer for `--with-ngtcp2=<path>` regression
    Configure LibreSSL autotools job with `--with-ngtcp=<path>` instead of
    adding ngtcp2 to `PKG_CONFIG_PATH`. To test this way of configuration in
    CI and test for the regression reported in #20889.
    
    Turns out this way of configuration isn't affected by the detection
    issue in this particular case.
    
    It also works for other backends except for these two, subject to
    separate fixes:
    - BoringSSL fix: https://github.com/ngtcp2/ngtcp2/pull/2070
    - GnuTLS fix and BoringSSL workaround: #20920
    
    Follow-up to 666db801963afca671ee5fa83bd2e9ed79fb8886 #20891
    Follow-up to 8db0e286b363ad788d6dc0779d605b83c7ed4caf #18189
    Follow-up to 99500660af19f89069e71c2251c13963401b3806 #18028 #18022
    
    Closes #20926

    Changed files

    • .github/workflows/http3-linux.yml