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

Builder curl-ares-solaris10-sparc Build #3141

Results:

Build successful

SourceStamp:

Projectcurl
Repositoryhttps://github.com/curl/curl.git
Branchmaster
Revision4e8d5da7eeaa83c9d2e5cc62fb92231cf75d3c94
Got Revision4e8d5da7eeaa83c9d2e5cc62fb92231cf75d3c94
Changes4 changes

BuildSlave:

unstable10s

Reason:

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

Steps and Logfiles:

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

Build Properties:

NameValueSource
branch master Build
builddir /export/home/buildbot-unstable10s/slave/curl-ares-solaris10-sparc slave
buildername curl-ares-solaris10-sparc Builder
buildnumber 3141 Build
codebase Build
got_revision 4e8d5da7eeaa83c9d2e5cc62fb92231cf75d3c94 Git
osplatform SPARC SetPropertyFromCommand Step
osrelease 10 SetPropertyFromCommand Step
project curl Build
repository https://github.com/curl/curl.git Build
revision 4e8d5da7eeaa83c9d2e5cc62fb92231cf75d3c94 Build
scheduler schedule-curl-ares-solaris10-sparc Scheduler
slavename unstable10s BuildSlave
workdir /export/home/buildbot-unstable10s/slave/curl-ares-solaris10-sparc slave (deprecated)

Forced Build Properties:

NameLabelValue

Responsible Users:

  1. Viktor Szakats

Timing:

StartSun Nov 30 22:38:09 2025
EndSun Nov 30 23:03:26 2025
Elapsed25 mins, 17 secs

All Changes:

:

  1. Change #250550

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Sun 30 Nov 2025 22:27:25
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision fdf9937cef62755f67e7d622d6fdd296eb542009

    Comments

    rtmp: stop redefining `setsockopt` system symbol on Windows
    Before this patch it added Windows-specific casts. In unity builds this
    also affected other source files.
    
    `setsockopt()` is called without special casts in other places in
    the code, and passing a non-const char ptr to a const char ptr arg also
    should work.
    
    Basic compile test with mingw-w64 confirms. In case of issues, a cast to
    `curl_socklen_t` can be used, or do the special case in an `#if` branch.
    
    Also: merge Windows-specific guards for `SET_RCVTIMEO()`.
    
    Follow-up to 639d052e4499c663a578d940713e40cd466268fa #3155
    Follow-up to 04cb15ae9dc0e863487ee55de2226cf5033311c0
    
    Closes #19768

    Changed files

    • lib/curl_rtmp.c
  2. Change #250551

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Sun 30 Nov 2025 22:27:25
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 003689c3d37510f7073d203ed94c882c19653fac

    Comments

    cf-socket: drop feature check for `IPV6_V6ONLY` on Windows
    The macro is present in all supported Windows toolchains.
    
    It's present in mingw-w64 v3+, and in MS SDK 6.0A+ (maybe earlier).
    
    Also:
    - restrict this logic to `USE_WINSOCK` (was: `_WIN32`), to exclude
      alternate socket libraries (i.e. lwIP). lwIP supports `IPV6_V6ONLY`
      since its 2.0.0 (2016-11-10) release and it's disabled by default,
      unlike in Winsock.
      Ref: https://github.com/lwip-tcpip/lwip/commit/e65202f8257e55b09e6309b1aa405b5e6a017f0d
    - delete interim setter function/dummy macro `set_ipv6_v6only()`.
    
    Follow-up to a28f5f68b965119d9dd1ab6c2a2ccc66c6ed5d1f #18010
    Follow-up to ca3f6decb927a4c3eb4c10fba09848b626a526d6 #10975
    
    Closes #19769

    Changed files

    • lib/cf-socket.c
  3. Change #250552

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Sun 30 Nov 2025 22:27:25
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 815bf7664999cb733438c9dd54bbbd8f1737679e

    Comments

    autotools: delete idle `AM_CFLAGS`, `AM_LDFLAGS` variables
    Closes #19771

    Changed files

    • lib/Makefile.am
    • src/Makefile.am
  4. Change #250553

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Sun 30 Nov 2025 22:27:25
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 4e8d5da7eeaa83c9d2e5cc62fb92231cf75d3c94

    Comments

    vtls: drop interim ECH feature macros (OpenSSL, wolfSSL)
    Use the macros set by autotools and cmake, to simplify.
    
    Closes #19772

    Changed files

    • lib/vtls/openssl.c
    • lib/vtls/wolfssl.c