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

Builder curl-unthreaded-solaris10-sparc Build #13759

Results:

Build successful

SourceStamp:

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

BuildSlave:

unstable10s

Reason:

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

Steps and Logfiles:

  1. git update ( 28 secs )
    1. stdio
  2. Runtest './tests/testcurl.pl --nogitpull ...' ( 13 mins, 37 secs )
    1. stdio
    2. resultlog
  3. Mail result 'cat resultlog ...' ( 0 secs )
    1. stdio

Build Properties:

NameValueSource
branch master Build
builddir /export/home/buildbot-unstable10s/slave/curl-unthreaded-solaris10-sparc slave
buildername curl-unthreaded-solaris10-sparc Builder
buildnumber 13759 Build
codebase Build
got_revision d3def68d3be15912a163f18d90914560183e8340 Git
osplatform SPARC SetPropertyFromCommand Step
osrelease 10 SetPropertyFromCommand Step
project curl Build
repository https://github.com/curl/curl.git Build
revision d3def68d3be15912a163f18d90914560183e8340 Build
scheduler schedule-curl-unthreaded-solaris10-sparc Scheduler
slavename unstable10s BuildSlave
workdir /export/home/buildbot-unstable10s/slave/curl-unthreaded-solaris10-sparc slave (deprecated)

Forced Build Properties:

NameLabelValue

Responsible Users:

  1. Andrew

Timing:

StartMon Jan 5 23:21:30 2026
EndMon Jan 5 23:49:07 2026
Elapsed27 mins, 36 secs

All Changes:

:

  1. Change #254238

    Category curl
    Changed by Andrew <akirilloohnoyoudont@uk.ibm.com>
    Changed at Mon 05 Jan 2026 23:10:47
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 0343951cb5cf8b10699805ab7e64012b55dd5657

    Comments

    ldap: fix `Curl_ldap_version()` for IBMi/OS400
    - `LDAP_OPT_SUCCESS` (== 0) is missing from some LDAP implementations
      and documented to use `LDAP_SUCCESS` (== 0) instead. Use literal zero
      to avoid macro name differences.
    
    - fix freeing `LDAP_OPT_API_INFO` buffers:
      - docs suggest `ldapai_vendor_name` on IBMi is `const char *`.
        Nothing in docs says it need to be freed.
      - `ldapai_extensions` need to be freed, according to docs.
        However, on IBMi there is `ldap_value_free()` function for it.
      Ref: https://www.ibm.com/docs/en/svd/10.0.3?topic=settings-ldap-opt-api-info
    
    Fixing, on OS400 (V7R4M0):
    ```
    CZM1003:  LDAP__819.c, 1028.56: CZM0045(30) Undeclared identifier LDAP_OPT_SUCCESS.
    CZM1003:  LDAP__819.c, 1036.21: CZM0280(30) Function argument assignment between types "char*" and "const char*" is not allowed.
    CZM1001:  LDAP__819.c, 1037.5: CZM0304(10) No function prototype given for "ber_memvfree".
    ...
    CZS0601:  Module LDAP is not created because statement errors occurred.
    ```
    
    Follow-up to 859ce48de12986f5bf846c2800dacab893ff12c1 #19832
    Fixes #20188
    Closes #20189

    Changed files

    • lib/ldap.c
  2. Change #254239

    Category curl
    Changed by Andrew <akirilloohnoyoudont@uk.ibm.com>
    Changed at Mon 05 Jan 2026 23:16:04
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision d3def68d3be15912a163f18d90914560183e8340

    Comments

    multi: fix to build on IBMi
    Sync function declaration with definition. Update related local vars.
    
    Follow-up to 4701a6d2ae9f0b66a0feac4061868e944353449b #19695
    Fixes #20190
    Closes #20191

    Changed files

    • lib/multi.c
    • lib/multiif.h