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

Builder curl-threaded-solaris11-i386 Build #4723

Results:

Build successful

SourceStamp:

Projectcurl
Repositoryhttps://github.com/curl/curl.git
Branchmaster
Revisiond9c2c64337c6e48d6b4130af1dd549be6444a795
Got Revisiond9c2c64337c6e48d6b4130af1dd549be6444a795
Changes2 changes

BuildSlave:

unstable11x

Reason:

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

Steps and Logfiles:

  1. git update ( 2 secs )
    1. stdio
  2. Runtest './tests/testcurl.pl --nogitpull ...' ( 1 hrs, 4 mins, 2 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-threaded-solaris11-i386 slave
buildername curl-threaded-solaris11-i386 Builder
buildnumber 4723 Build
codebase Build
got_revision d9c2c64337c6e48d6b4130af1dd549be6444a795 Git
osplatform I386 SetPropertyFromCommand Step
osrelease 11 SetPropertyFromCommand Step
project curl Build
repository https://github.com/curl/curl.git Build
revision d9c2c64337c6e48d6b4130af1dd549be6444a795 Build
scheduler schedule-curl-threaded-solaris11-i386 Scheduler
slavename unstable11x BuildSlave
workdir /export/home/buildbot/slave/curl-threaded-solaris11-i386 slave (deprecated)

Forced Build Properties:

NameLabelValue

Responsible Users:

  1. Daniel Stenberg
  2. Viktor Szakats

Timing:

StartTue Mar 3 19:23:34 2026
EndTue Mar 3 22:45:57 2026
Elapsed3 hrs, 22 mins, 23 secs

All Changes:

:

  1. Change #259722

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Tue 03 Mar 2026 16:33:21
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 91e06fde1b520bc29c7996749734451e03cd549f

    Comments

    cmake: fix building with `CMAKE_FIND_PACKAGE_PREFER_CONFIG=ON`
    This CMake global custom option tells it to find dependencies as cmake
    Configs first, and only then look for `Find*` modules. This may result
    in `find_package()` succeeding, but without actually creating `CURL::*`
    imported targets the curl build scripts are expecting.
    
    For dependencies with curl-specific, local, `Find*` modules, we always
    want to use them, via the module detection method, and never a
    Config-based detection. Ensure this by passing the `MODULE` option to
    `find_package()` and `find_dependency()` to make them use `Find*`
    modules unconditionally, making them work as expected with the
    `CMAKE_FIND_PACKAGE_PREFER_CONFIG=ON` option set.
    
    curl uses local Find modules for all dependencies except OpenSSL and
    ZLIB. The latter two keep using either CMake's built-in Find modules or
    Config method as before this patch.
    
    Also:
    
    - apply the same change to `curl-config.cmake`. To fix consuming curl
      with this option set.
      Authored-by: Valerie Snyder
      Ref: #20764
      Follow-up to 16f073ef49f94412000218c9f6ad04e3fd7e4d01 #16973
    
    - GHA/distcheck: add a job testing both building and consuming curl with
      this option set. (takes 15 seconds)
      Use custom NGHTTP2 configuration for an extra twist (not required
      to trigger this issue.)
      Follow-up to fcde8d7e3745df3b4d83c86d0a1f0caef398511b #20773
    
    Reported-by: Valerie Snyder
    Fixes #20729
    
    Closes #20784

    Changed files

    • .github/workflows/distcheck.yml
    • CMake/Macros.cmake
    • CMake/curl-config.in.cmake
    • CMakeLists.txt
  2. Change #259732

    Category curl
    Changed by Daniel Stenberg <danielohnoyoudont@haxx.se>
    Changed at Tue 03 Mar 2026 17:42:34
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision d9c2c64337c6e48d6b4130af1dd549be6444a795

    Comments

    openssl: adapt to OpenSSL master adding const to more APIs
    Closes #20797

    Changed files

    • lib/vtls/openssl.c