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

Builder curl-threaded-solaris11-i386 Build #4464

Results:

Build successful

SourceStamp:

Projectcurl
Repositoryhttps://github.com/curl/curl.git
Branchmaster
Revision13c1a934144e98d06214a043ff4538791c7d9583
Got Revision13c1a934144e98d06214a043ff4538791c7d9583
Changes1 change

BuildSlave:

unstable11x

Reason:

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

Steps and Logfiles:

  1. git update ( 9 secs )
    1. stdio
  2. Runtest './tests/testcurl.pl --nogitpull ...' ( 44 mins, 19 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 4464 Build
codebase Build
got_revision 13c1a934144e98d06214a043ff4538791c7d9583 Git
osplatform I386 SetPropertyFromCommand Step
osrelease 11 SetPropertyFromCommand Step
project curl Build
repository https://github.com/curl/curl.git Build
revision 13c1a934144e98d06214a043ff4538791c7d9583 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

Timing:

StartThu Jan 8 14:38:05 2026
EndThu Jan 8 16:56:11 2026
Elapsed2 hrs, 18 mins, 6 secs

All Changes:

:

  1. Change #254553

    Category curl
    Changed by Daniel Stenberg <danielohnoyoudont@haxx.se>
    Changed at Thu 08 Jan 2026 14:15:47
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 13c1a934144e98d06214a043ff4538791c7d9583

    Comments

    lib: remove uses of PRIu32 by adding "hack" for DJGPP
    Avoid using PRIu32 and PRId32 in product source code. We don't need it.
    It reduces readability. It is also inconsistent since unsigned int has
    the same size and does not require the define.
    
    DJGPP warns about using %u for uint32_t by default because it seems to
    typedef it to unsigned long instead of unsigned int. Which even that is
    annoying since long and int are both 32 bit on this platform.
    
    We use our own *printf() implementation and we know this is safe.
    
    This work-around defines uint32_t for DJGPP into unsigned int to avoid
    the warnings and thus the need to use PRIu32 and PRId32.
    
    Closes #20215

    Changed files

    • lib/conncache.c
    • lib/curl_setup.h
    • lib/multi.c
    • lib/multi_ev.c
    • lib/multi_ntfy.c
    • lib/url.c
    • tests/unit/unit3211.c
    • tests/unit/unit3213.c