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

Builder curl-ares-solaris11-sparc Build #5395

Results:

Build successful

SourceStamp:

Projectcurl
Repositoryhttps://github.com/curl/curl.git
Branchmaster
Revision3aa63896ae7a745fc50fa9cfa0bef0adb74462f6
Got Revision3aa63896ae7a745fc50fa9cfa0bef0adb74462f6
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 ...' ( 27 mins, 45 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 5395 Build
codebase Build
got_revision 3aa63896ae7a745fc50fa9cfa0bef0adb74462f6 Git
osplatform SPARC SetPropertyFromCommand Step
osrelease 11 SetPropertyFromCommand Step
project curl Build
repository https://github.com/curl/curl.git Build
revision 3aa63896ae7a745fc50fa9cfa0bef0adb74462f6 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 Díaz

Timing:

StartTue Mar 3 00:38:23 2026
EndTue Mar 3 01:51:56 2026
Elapsed1 hrs, 13 mins, 33 secs

All Changes:

:

  1. Change #259635

    Category curl
    Changed by Daniel Díaz <daniel.diazohnoyoudont@sonos.com>
    Changed at Tue 03 Mar 2026 00:28:35
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 3aa63896ae7a745fc50fa9cfa0bef0adb74462f6

    Comments

    mbedtls: guard TLS 1.3 + session tickets usage inside ifdef
    If TLS 1.3 is not supported, the call to
    `mbedtls_ssl_conf_tls13_enable_signal_new_session_tickets()` fails
    during compilation:
    ```
    curl-8.18.0/lib/vtls/mbedtls.c: In function 'mbed_connect_step1':
    curl-8.18.0/lib/vtls/mbedtls.c:809:3: error: implicit declaration of function 'mbedtls_ssl_conf_tls13_enable_signal_new_session_tickets' [-Werror=implicit-function-declaration]
       mbedtls_ssl_conf_tls13_enable_signal_new_session_tickets(&backend->config,
       ^
    curl-8.18.0/lib/vtls/mbedtls.c:809:3: warning: nested extern declaration of 'mbedtls_ssl_conf_tls13_enable_signal_new_session_tickets' [-Wnested-externs]
    ```
    
    Protect this call inside the `#ifdef` block by making sure that support
    for TLS 1.3 is defined.
    
    Closes #20789

    Changed files

    • lib/vtls/mbedtls.c