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

Builder curl-ares-solaris11-i386 Build #4523

Results:

Build successful

SourceStamp:

Projectcurl
Repositoryhttps://github.com/curl/curl.git
Branchmaster
Revisione8189c44201db6bff987a8771df90f853d93dec5
Got Revisione8189c44201db6bff987a8771df90f853d93dec5
Changes3 changes

BuildSlave:

unstable11x

Reason:

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

Steps and Logfiles:

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

Build Properties:

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

Forced Build Properties:

NameLabelValue

Responsible Users:

  1. Daniel Stenberg
  2. Viktor Szakats
  3. tommy

Timing:

StartTue Jan 20 01:58:49 2026
EndTue Jan 20 04:27:40 2026
Elapsed2 hrs, 28 mins, 51 secs

All Changes:

:

  1. Change #255707

    Category curl
    Changed by Daniel Stenberg <danielohnoyoudont@haxx.se>
    Changed at Mon 19 Jan 2026 23:15:13
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 8edc0338f30f458f812f9ea355de1240771fa343

    Comments

    lib: separate scheme info from protocol implementation
    This allows builds know about all schemes - but only have the protocol
    implementations for those actually built-in.
    
    It further allows multiple protocols to reuse the same protocol setup
    and functions for both TLS and non-TLS implementations instead of
    needing two (or more) structs.
    
    The scheme information is now in 'struct Curl_scheme' and all the
    function pointers for each scheme/protocol implementation are in struct
    Curl_protocol.
    
    The URL API now always work with all known protocols.
    
    Closes #20351

    Changed files

    • lib/cf-h1-proxy.c
    • lib/cf-ip-happy.c
    • lib/cf-socket.c
    • lib/cfilters.c
    • lib/connect.c
    • lib/cookie.c
    • lib/cshutdn.c
    • lib/curl_ldap.h
    • lib/curl_rtmp.c
    • lib/curl_rtmp.h
    • lib/cw-out.c
    • lib/dict.c
    • lib/dict.h
    • lib/doh.c
    • lib/file.c
    • lib/file.h
    • lib/ftp.c
    • lib/ftp.h
    • lib/gopher.c
    • lib/gopher.h
    • lib/headers.c
    • lib/http.c
    • lib/http.h
    • lib/imap.c
    • lib/imap.h
    • lib/ldap.c
    • lib/mqtt.c
    • lib/mqtt.h
    • lib/multi.c
    • lib/openldap.c
    • lib/pop3.c
    • lib/pop3.h
    • lib/rtsp.c
    • lib/rtsp.h
    • lib/sendf.c
    • lib/setopt.c
    • lib/smb.c
    • lib/smb.h
    • lib/smtp.c
    • lib/smtp.h
    • lib/telnet.c
    • lib/telnet.h
    • lib/tftp.c
    • lib/tftp.h
    • lib/transfer.c
    • lib/url.c
    • lib/url.h
    • lib/urlapi.c
    • lib/urldata.h
    • lib/vauth/vauth.c
    • lib/vquic/vquic.c
    • lib/vssh/libssh.c
    • lib/vssh/libssh2.c
    • lib/vssh/ssh.h
    • lib/vssh/vssh.c
    • lib/vssh/vssh.h
    • lib/ws.c
    • lib/ws.h
    • scripts/schemetable.c
  2. Change #255710

    Category curl
    Changed by tommy <tommyskypromaxohnoyoudont@gmail.com>
    Changed at Mon 19 Jan 2026 23:19:47
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 1cacfcd30f52ccc630b941514830925bc9c5053a

    Comments

    sigpipe: unset SA_SIGINFO since it is using sa_handler
    Closes #20278
    
    Signed-off-by: tommy <tommyskypromax@gmail.com>

    Changed files

    • lib/sigpipe.h
  3. Change #255720

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Tue 20 Jan 2026 00:20:43
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision e8189c44201db6bff987a8771df90f853d93dec5

    Comments

    tool_getparam: avoid `-Wcomma` with Apple clang in C89 mode
    Seen with Apple clang 17:
    ```
    curl/src/tool_getparam.c:3062:12: warning: possible misuse of comma operator here [-Wcomma]
     3062 |   for(i = 1, stillflags = TRUE; i < argc && !result; i++) {
          |            ^
    curl/src/tool_getparam.c:3062:7: note: cast expression to void to silence warning
     3062 |   for(i = 1, stillflags = TRUE; i < argc && !result; i++) {
          |       ^~~~~
          |       (void)( )
    ```
    
    Closes #20362

    Changed files

    • src/tool_getparam.c