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

Builder curl-ares-solaris10-i386 Build #4482

Results:

Build successful

SourceStamp:

Projectcurl
Repositoryhttps://github.com/curl/curl.git
Branchmaster
Revision2b5911880ba715d10e0a8bf6dc4896b662fedc89
Got Revision2b5911880ba715d10e0a8bf6dc4896b662fedc89
Changes5 changes

BuildSlave:

unstable10x

Reason:

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

Steps and Logfiles:

  1. git update ( 2 secs )
    1. stdio
  2. Runtest './tests/testcurl.pl --nogitpull ...' ( 3 mins, 26 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-solaris10-i386 slave
buildername curl-ares-solaris10-i386 Builder
buildnumber 4482 Build
codebase Build
got_revision 2b5911880ba715d10e0a8bf6dc4896b662fedc89 Git
osplatform I386 SetPropertyFromCommand Step
osrelease 10 SetPropertyFromCommand Step
project curl Build
repository https://github.com/curl/curl.git Build
revision 2b5911880ba715d10e0a8bf6dc4896b662fedc89 Build
scheduler schedule-curl-ares-solaris10-i386 Scheduler
slavename unstable10x BuildSlave
workdir /export/home/buildbot/slave/curl-ares-solaris10-i386 slave (deprecated)

Forced Build Properties:

NameLabelValue

Responsible Users:

  1. Daniel Stenberg
  2. Stefan Eissing
  3. Viktor Szakats

Timing:

StartMon Jun 29 19:02:09 2026
EndTue Jun 30 04:39:06 2026
Elapsed9 hrs, 36 mins, 57 secs

All Changes:

:

  1. Change #273153

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Mon 29 Jun 2026 11:11:16
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 1671ebd975c1f146b0dd9929fa4c2a3f8d39b305

    Comments

    build: drop superfluous `STDC_HEADERS` macro
    It is traditionally defined by autotools to detect the presence of set
    of standard C89 headers. autoconf 2.70 (2020-12-08) reduced the headers
    covered to `stdlib.h`, `string.h`. After 2.59d (2006-06-05) obsoleting
    it earlier. CMake replicated this detection, and curl included
    `curl/stdcheaders.h` if standard headers were missing. However, such
    condition could never happen because curl sources already assume all
    checked standard headers (`stdarg.h`, `stdlib.h`, `string.h`) and
    include them unconditionally.
    
    Since this is an unused feature detection and an impossible fallback
    path, drop them from CMake and curl's source. autotools continues to do
    the detection by default, but its result is unused after this patch.
    
    This leaves public `curl/stdcheaders.h` unused from within the codebase.
    
    Refs:
    https://github.com/autotools-mirror/autoconf/commit/f0c7c425539964047b0cb986d2ea5f5687a07069
    https://github.com/autotools-mirror/autoconf/commit/86c213d0e355296f026a36e3203c0813041aae89
    
    Follow-up to 65dae4ad80b02f25a25e17af62ea4f2940970330 #22191
    Follow-up to 4c5307b45655ba75ab066564afdc0c111a8b9291
    Ref: ae1912cb0d494b48d514d937826c9fe83ec96c4d
    
    Closes #22206

    Changed files

    • .github/scripts/cmp-config.pl
    • CMake/CurlTests.c
    • CMake/unix-cache.cmake
    • CMake/win32-cache.cmake
    • CMakeLists.txt
    • lib/config-os400.h
    • lib/config-win32.h
    • lib/curl_config-cmake.h.in
    • lib/curl_setup.h
    • projects/vms/config_h.com
  2. Change #273158

    Category curl
    Changed by Stefan Eissing <stefanohnoyoudont@eissing.org>
    Changed at Mon 29 Jun 2026 11:17:00
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision d647b84d53b5ba14ce82b0759c70e962a423c1a4

    Comments

    CREDENTIALS.md: remove comment about emtpy user/pass
    Closes #22212

    Changed files

    • docs/internals/CREDENTIALS.md
  3. Change #273178

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Mon 29 Jun 2026 14:27:56
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision c9d8a6bc1084cae8b9f63a504bdfc7c00230f4ff

    Comments

    mod_curltest: fix compiler warnings
    ```
    mod_curltest.c:331:25: warning: result of comparison of unsigned expression >= 0 is always true [-Wtautological-unsigned-zero-compare]
      331 |           if(chunk_size >= 0) {
          |              ~~~~~~~~~~ ^  ~
    mod_curltest.c:421:9: warning: declaration shadows a local variable [-Wshadow]
      421 |     int i, hd_len = (16 * 1024);
          |         ^
    mod_curltest.c:288:7: note: previous declaration is here
      288 |   int i, chunks = 3, error_bucket = 1;
          |       ^
    mod_curltest.c:501:40: warning: format specifies type 'int' but the argument has type 'unsigned int' [-Wformat]
      500 |                 "error_handler: request cleanup, r->status=%d, aborted=%d, "
          |                                                                        ~~
          |                                                                        %u
      501 |                 "close=%d", r->status, c->aborted, close_conn);
          |                                        ^~~~~~~~~~
    mod_curltest.c:837:1: warning: missing field 'lock' initializer [-Wmissing-field-initializers]
      837 | };
          | ^
    mod_curltest.c:914:43: warning: format specifies type 'int' but the argument has type 'apr_time_t' (aka 'long') [-Wformat]
      914 |     char *v = apr_psprintf(r->pool, "%d", limitrec.duration_sec);
          |                                      ~~   ^~~~~~~~~~~~~~~~~~~~~
          |                                      %ld
    mod_curltest.c:956:16: warning: unused variable 'rv' [-Wunused-variable]
      956 |   apr_status_t rv;
          |                ^~
    ```
    
    Closes #22214

    Changed files

    • tests/http/testenv/mod_curltest/mod_curltest.c
  4. Change #273179

    Category curl
    Changed by Daniel Stenberg <danielohnoyoudont@haxx.se>
    Changed at Mon 29 Jun 2026 14:34:34
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision f3c11692a9881b2d74263e20749ff58da1fd8443

    Comments

    CURLOPT_SSH_*_KEYFILE: used for setting up, then no more
    So changing them after the connection is made still allows libcurl to
    reuse the existing connections.
    
    Reported-by: Bigtang on hackerone
    Closes #22211

    Changed files

    • docs/libcurl/opts/CURLOPT_SSH_PRIVATE_KEYFILE.md
    • docs/libcurl/opts/CURLOPT_SSH_PUBLIC_KEYFILE.md
  5. Change #273216

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Mon 29 Jun 2026 20:04:57
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 2b5911880ba715d10e0a8bf6dc4896b662fedc89

    Comments

    openssl: prefer modern API flavors for `EVP_MD_CTX` new/free
    Available in all supported OpenSSL flavors and versions. They are
    functionally identical to the legacy API calls.
    
    Closes #22219

    Changed files

    • lib/curl_sha512_256.c
    • lib/sha256.c
    • lib/vtls/openssl.c