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

Builder curl-ares-solaris11-sparc Build #5086

Results:

Build successful

SourceStamp:

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

BuildSlave:

unstable11s

Reason:

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

Steps and Logfiles:

  1. git update ( 4 secs )
    1. stdio
  2. Runtest './tests/testcurl.pl --nogitpull ...' ( 22 mins, 53 secs )
    1. stdio
    2. resultlog
  3. Mail result 'cat resultlog ...' ( 0 secs )
    1. stdio

Build Properties:

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

Forced Build Properties:

NameLabelValue

Responsible Users:

  1. Daniel Stenberg

Timing:

StartFri Jan 9 14:56:17 2026
EndFri Jan 9 15:19:16 2026
Elapsed22 mins, 58 secs

All Changes:

:

  1. Change #254635

    Category curl
    Changed by Daniel Stenberg <danielohnoyoudont@haxx.se>
    Changed at Fri 09 Jan 2026 13:32:33
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision d881b911336eed4a939631f56e5ebe05b7954481

    Comments

    urldata: convert 'long' fields to fixed variable types
    Makes sure they work identically cross-platform, as long varies in size
    between Windows vs non-Windows. Makes Curl_easy 16 bytes smaller on 64
    bit Linux.
    
    This reduces support for the RTSP cseq counters to 32 bit (down from 63
    bit previously on 64 bit non-Windows), but it is probably safe.
    Implementations probably rarely support anything above 32 bits anyway
    and this is how curl has worked on Windows since always.
    
    There is now only one 'long' left in urldata.h (in the ssl_config_data
    struct). That field, certverifyresult, is used to store the response
    code from TLS backend code and in the OpenSSL case that function returns
    an actual 'long'.
    
    Closes #20227

    Changed files

    • lib/getinfo.c
    • lib/progress.c
    • lib/rtsp.c
    • lib/setopt.c
    • lib/urldata.h