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

Builder curl-unthreaded-solaris10-i386 Build #16374

Build In Progress:

[waiting for Lock]

SourceStamp:

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

BuildSlave:

unstable10x

Reason:

The SingleBranchScheduler scheduler named 'schedule-curl-unthreaded-solaris10-i386' triggered this build

Steps and Logfiles:

  1. git  
    1. - no logs -
    1. - no logs -
    1. - no logs -
  2. Runtest  
    1. - no logs -
    1. - no logs -

Build Properties:

NameValueSource
branch master Build
builddir /export/home/buildbot/slave/curl-unthreaded-solaris10-i386 slave
buildername curl-unthreaded-solaris10-i386 Builder
buildnumber 16374 Build
codebase Build
project curl Build
repository https://github.com/curl/curl.git Build
revision 62ba3604dc58ab339f34d96935b10e8384403af1 Build
scheduler schedule-curl-unthreaded-solaris10-i386 Scheduler
slavename unstable10x BuildSlave
workdir /export/home/buildbot/slave/curl-unthreaded-solaris10-i386 slave (deprecated)

Forced Build Properties:

NameLabelValue

Responsible Users:

  1. Viktor Szakats

Timing:

StartThu Jan 15 06:49:46 2026
Elapsed7 hrs, 45 mins, 34 secs

All Changes:

:

  1. Change #255271

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Wed 14 Jan 2026 20:46:25
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 6437bd79ae8c67066728a83ed62edee48e596bdd

    Comments

    cmake: avoid setting custom property on built-in interface targets
    In some cases `ZLIB::ZLIB` and/or `OpenSSL::SSL` may be aliases, which
    prevents setting a curl-specific property (.pc module name) in them:
    ```
    CMake Error at [...]/curl/CMakeLists.txt:910 (set_target_properties):
      set_target_properties can not be used on an ALIAS target.
    ```
    
    Fix by special-casing these built-in targets and manually converting
    them to .pc module names, without using the targets themselves
    to carry this information throughout curl's internal build logic.
    
    Reported-by: Tomáš Malý
    Fixes #20313
    Follow-up to 16f073ef49f94412000218c9f6ad04e3fd7e4d01 #16973
    Closes #20316

    Changed files

    • CMakeLists.txt
  2. Change #255290

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Wed 14 Jan 2026 23:34:05
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 82e0d387a2e110d704bb18c42894749548b804b4

    Comments

    build: drop more forward function declarations
    Most by moving functions around. Also delete unused ones.
    Reducing their number from 83 to 33.
    
    Remaining ones due to:
    - circular dependencies.
    - H3 code, that I did not attempt to update and likely the above applies.
    - static declarations with attributes (`CURL_PRINTF`, `WARN_UNUSED_RESULT`).
    - OS400 code.
    
    Closes #20321

    Changed files

    • lib/cf-h2-proxy.c
    • lib/cfilters.c
    • lib/conncache.c
    • lib/cw-out.c
    • lib/cw-pause.c
    • lib/http2.c
    • lib/mime.c
    • lib/rtsp.c
    • lib/sendf.c
    • lib/urlapi.c
    • lib/vtls/schannel.c
    • lib/vtls/vtls_scache.c
    • lib/vtls/wolfssl.c
    • src/tool_cb_dbg.c
    • src/tool_writeout.c
  3. Change #255308

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Thu 15 Jan 2026 02:06:06
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 62ba3604dc58ab339f34d96935b10e8384403af1

    Comments

    checksrc: do not apply `BANNEDFUNC` to struct member functions
    Omit this warning, when `close()` is banned:
    ```
    ./lib/vtls/vtls.c:947:13: warning: use of close is banned (BANNEDFUNC)
       Curl_ssl->close(cf, data);
                 ^
    ```
    Ref: https://github.com/curl/curl/actions/runs/21012427938/job/60410334312?pr=20212#step:3:6
    
    Ref: #20212
    
    Closes #20323

    Changed files

    • scripts/checksrc.pl
    • tests/data/test1185