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

Builder curl-unthreaded-solaris11-sparc Build #5803

Results:

Build successful

SourceStamp:

Projectcurl
Repositoryhttps://github.com/curl/curl.git
Branchmaster
Revision01f08dc4eb20a19aa60230653715c8b839619cbb
Got Revision01f08dc4eb20a19aa60230653715c8b839619cbb
Changes1 change

BuildSlave:

unstable11s

Reason:

The SingleBranchScheduler scheduler named 'schedule-curl-unthreaded-solaris11-sparc' triggered this build

Steps and Logfiles:

  1. git update ( 7 secs )
    1. stdio
  2. Runtest './tests/testcurl.pl --nogitpull ...' ( 33 mins, 30 secs )
    1. stdio
    2. resultlog
  3. Mail result 'cat resultlog ...' ( 3 secs )
    1. stdio

Build Properties:

NameValueSource
branch master Build
builddir /export/home/buildbot/slave/curl-unthreaded-solaris11-sparc slave
buildername curl-unthreaded-solaris11-sparc Builder
buildnumber 5803 Build
codebase Build
got_revision 01f08dc4eb20a19aa60230653715c8b839619cbb Git
osplatform SPARC SetPropertyFromCommand Step
osrelease 11 SetPropertyFromCommand Step
project curl Build
repository https://github.com/curl/curl.git Build
revision 01f08dc4eb20a19aa60230653715c8b839619cbb Build
scheduler schedule-curl-unthreaded-solaris11-sparc Scheduler
slavename unstable11s BuildSlave
workdir /export/home/buildbot/slave/curl-unthreaded-solaris11-sparc slave (deprecated)

Forced Build Properties:

NameLabelValue

Responsible Users:

  1. Viktor Szakats

Timing:

StartTue May 12 06:56:00 2026
EndTue May 12 08:07:47 2026
Elapsed1 hrs, 11 mins, 46 secs

All Changes:

:

  1. Change #266801

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Tue 12 May 2026 05:33:08
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 01f08dc4eb20a19aa60230653715c8b839619cbb

    Comments

    gnutls: fix more nettle 4+ compatibility issues
    - disable DES with nettle 4. It no longer supports it.
      ```
      lib/curl_ntlm_core.c:67:12: fatal error: 'nettle/des.h' file not found
         67 | #  include <nettle/des.h>
            |            ^~~~~~~~~~~~~~
      ```
    
    - fix MD4 support with nettle 4.
      ```
      lib/md4.c:178:36: error: too many arguments to function call, expected 2, have 3
        178 |   md4_digest(ctx, MD4_DIGEST_SIZE, digest);
            |   ~~~~~~~~~~                       ^~~~~~
      ```
    
    - fix unused argument compiler warning:
      ```
      lib/vtls/gtls.c:2267:39: error: unused parameter 'sha256len' [clang-diagnostic-unused-parameter,-warnings-as-errors]
      2267 |                                size_t sha256len)
           |                                       ^
      ```
      Ref: https://github.com/curl/curl/actions/runs/25710321195/job/75488970143?pr=21557
    
    - GHA/macos: stop enabling NTLM in the GnuTLS job.
      It no longer builds due to missing DES support in nettle 4.
      ```
      lib/curl_ntlm_core.c:90:4: error: "cannot compile NTLM support without a crypto library with DES."
         90 | #  error "cannot compile NTLM support without a crypto library with DES."
            |    ^
      ```
      Ref: https://github.com/curl/curl/actions/runs/25710321195/job/75488970170?pr=21557
    
    Follow-up to cfadbaa133504d47ece989486fde944d076e0222 #21169
    
    Closes #21557

    Changed files

    • .github/workflows/macos.yml
    • lib/curl_ntlm_core.c
    • lib/md4.c
    • lib/vtls/gtls.c