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

Builder curl-unthreaded-solaris11-i386 Build #4619

Results:

Build successful

SourceStamp:

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

BuildSlave:

unstable11x

Reason:

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

Steps and Logfiles:

  1. git update ( 11 secs )
    1. stdio
  2. Runtest './tests/testcurl.pl --nogitpull ...' ( 59 mins, 9 secs )
    1. stdio
    2. resultlog
  3. Mail result 'cat resultlog ...' ( 1 secs )
    1. stdio

Build Properties:

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

Forced Build Properties:

NameLabelValue

Responsible Users:

  1. Viktor Szakats

Timing:

StartWed Feb 11 16:57:56 2026
EndWed Feb 11 19:57:54 2026
Elapsed2 hrs, 59 mins, 57 secs

All Changes:

:

  1. Change #257449

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Wed 11 Feb 2026 14:51:08
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 982ab7b53fdcef9db636e2f02b137579787e0837

    Comments

    build: check `MSG_NOSIGNAL` directly, drop detection and interim macro
    Drop detecting it at configure time, along with the interim macro
    `HAVE_MSG_NOSIGNAL`. There is no longer a reason for this workaround,
    and allows to save the work at configure time and simplify.
    
    Also say in a comment that `sys/socket.h` is defining this macro.
    
    Follow-up to 77b3bc239daf75d9fb7702ee34c8e5871c47d387
    
    Closes #20559

    Changed files

    • CMake/OtherTests.cmake
    • CMake/unix-cache.cmake
    • CMake/win32-cache.cmake
    • acinclude.m4
    • configure.ac
    • lib/curl_config-cmake.h.in
    • lib/curl_setup.h
    • lib/multi.c
    • lib/transfer.c
  2. Change #257455

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Wed 11 Feb 2026 16:15:11
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision c220674ac451231e05df1686bd3da473e5c37252

    Comments

    windows: tidy up includes, macros, document dependencies
    - define `SECURITY_WIN32` globally in `curl_setup.h`.
      To make sure it applies to all includes.
    
    - document which Windows headers require `SECURITY_WIN32`.
    
    - stop suppressing MSVC warning:
      `C4201 is: nonstandard extension used : nameless struct/union`
      The warning is no longer seen in supported build envs with the current
      codebase.
      Follow-up to 8beff4355956e3d18ceb3afc21c1f3edec82543c #8419
    
    - document why `SCHANNEL_USE_BLACKLISTS` is needed.
    
    - just define `SCHANNEL_USE_BLACKLISTS`, drop the unnecessary value `1`.
    
    - stop defining unused `SCH_CRED_MAX_SUPPORTED*` fallback macros.
      Follow-up to 8beff4355956e3d18ceb3afc21c1f3edec82543c #8419
    
    - document why `subauth.h` is included (where missing).
    
    - move and de-dupe `subauth.h` include into `curl_setup.h`, limit to
      Schannel builds.
    
    - stop include `schnlsp.h`. It is a 1-to-1 compatibility wrapper for
      `schannel.h`.
    
    - curl_sspi.h: clarify comment about `SP_NAME_` macros.
      They are local macros, their SDK names are different and curl does not
      use them.
    
    - curl_sspi.h: drop superfluous includes `security.h` and `rpc.h`.
    
    Cherry-picked from #20556
    
    Closes #20564

    Changed files

    • lib/curl_setup.h
    • lib/curl_sspi.h
    • lib/ldap.c
    • lib/vtls/schannel.h
    • lib/vtls/schannel_int.h