Builder curl-unthreaded-solaris11-i386 Build #4662
Results:
Build successful
SourceStamp:
| Project | curl |
| Repository | https://github.com/curl/curl.git |
| Branch | master |
| Revision | 29bca12978f3adebe33b63c18aa3c3fe6439381a |
| Got Revision | 29bca12978f3adebe33b63c18aa3c3fe6439381a |
| Changes | 4 changes |
BuildSlave:
unstable11xReason:
The SingleBranchScheduler scheduler named 'schedule-curl-unthreaded-solaris11-i386' triggered this build
Steps and Logfiles:
Build Properties:
| Name | Value | Source |
|---|---|---|
| branch | master | Build |
| builddir | /export/home/buildbot/slave/curl-unthreaded-solaris11-i386 | slave |
| buildername | curl-unthreaded-solaris11-i386 | Builder |
| buildnumber | 4662 | Build |
| codebase | Build | |
| got_revision | 29bca12978f3adebe33b63c18aa3c3fe6439381a | Git |
| osplatform | I386 | SetPropertyFromCommand Step |
| osrelease | 11 | SetPropertyFromCommand Step |
| project | curl | Build |
| repository | https://github.com/curl/curl.git | Build |
| revision | 29bca12978f3adebe33b63c18aa3c3fe6439381a | 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:
| Name | Label | Value |
|---|
Responsible Users:
- Daniel Stenbergdaniel@haxx.se
- Viktor Szakatscommit@vsz.me
Timing:
| Start | Mon Feb 23 18:31:57 2026 |
| End | Mon Feb 23 21:22:31 2026 |
| Elapsed | 2 hrs, 50 mins, 33 secs |
All Changes:
:
Change #258709
Category curl Changed by Viktor Szakats <commit@vsz.me> Changed at Mon 23 Feb 2026 16:00:42 Repository https://github.com/curl/curl.git Project curl Branch master Revision 3058ed3df873c21ebba2007c3b12ed9f37558bfe Comments
lib: use lib source directory as base include path Backtrack on previous change that aimed to solve the wrong `share.h` being included. It turns out it did not fix this issue. At the same time it introduced relative header filenames and the need to include the same headers differently depending on the source files' location, reducing readability and editability. Replace this method by re-adding curl's lib source directory to the header path and addressing headers by the their full, relative name to that base directory. Aligning with this method already used in src and tests. With these advantages: - makes includes easier to read, recognize, grep, sort, write, and copy between sources, - syncs the way these headers are included across curl components, - avoids the ambiguity between system `schannel.h`, `rustls.h` vs. local headers using the same names in `lib/vtls`, - silences clang-tidy `readability-duplicate-include` checker, which detects the above issue, Ref: https://clang.llvm.org/extra/clang-tidy/checks/readability/duplicate-include.html - possibly silences TIOBE coding standard warnings: `6.10.2.a: Don't use relative paths in #include statements.` - long shot: it works well with concatenated test sources, for clang-tidy-friendly custom unity builds. Ref: #20667 Slight downside: it's not enforced. If there happens to be a collision between a local `lib/*.h` header and a system one, the solution is to rename (possibly with its `.c` counterpart) into the `curl_` namespace. This is also the method used by curl in the past. Also: - curlx/inet_pton: reduce scope of an include. - toolx/tool_time: apply this to an include, and update VS project files accordingly. Also dropping unnecessary lib/curlx header path. - clang-tidy: enable `readability-duplicate-include`. Follow-up to 3887069c661b40e76b053a4867eb565d4761ab3e #19676 Follow-up to 625f2c1644da58b9617479775badea21f125ce6d #16991 #16949 Closes #20623
Changed files
- .clang-tidy.yml
- lib/CMakeLists.txt
- lib/Makefile.am
- lib/curlx/base64.c
- lib/curlx/basename.c
- lib/curlx/basename.h
- lib/curlx/curlx.h
- lib/curlx/dynbuf.c
- lib/curlx/fopen.c
- lib/curlx/fopen.h
- lib/curlx/inet_ntop.c
- lib/curlx/inet_ntop.h
- lib/curlx/inet_pton.c
- lib/curlx/inet_pton.h
- lib/curlx/multibyte.c
- lib/curlx/multibyte.h
- lib/curlx/nonblock.c
- lib/curlx/strcopy.c
- lib/curlx/strdup.c
- lib/curlx/strdup.h
- lib/curlx/strerr.c
- lib/curlx/strparse.c
- lib/curlx/strparse.h
- lib/curlx/timediff.c
- lib/curlx/timediff.h
- lib/curlx/timeval.c
- lib/curlx/timeval.h
- lib/curlx/version_win32.c
- lib/curlx/version_win32.h
- lib/curlx/wait.c
- lib/curlx/wait.h
- lib/curlx/warnless.c
- lib/curlx/winapi.c
- lib/vauth/cleartext.c
- lib/vauth/cram.c
- lib/vauth/digest.c
- lib/vauth/digest.h
- lib/vauth/digest_sspi.c
- lib/vauth/gsasl.c
- lib/vauth/krb5_gssapi.c
- lib/vauth/krb5_sspi.c
- lib/vauth/ntlm.c
- lib/vauth/ntlm_sspi.c
- lib/vauth/oauth2.c
- lib/vauth/spnego_gssapi.c
- lib/vauth/spnego_sspi.c
- lib/vauth/vauth.c
- lib/vauth/vauth.h
- lib/vquic/curl_ngtcp2.c
- lib/vquic/curl_ngtcp2.h
- lib/vquic/curl_quiche.c
- lib/vquic/curl_quiche.h
- lib/vquic/vquic-tls.c
- lib/vquic/vquic-tls.h
- lib/vquic/vquic.c
- lib/vquic/vquic.h
- lib/vquic/vquic_int.h
- lib/vssh/libssh.c
- lib/vssh/libssh2.c
- lib/vssh/ssh.h
- lib/vssh/vssh.c
- lib/vssh/vssh.h
- lib/vtls/apple.c
- lib/vtls/apple.h
- lib/vtls/cipher_suite.c
- lib/vtls/cipher_suite.h
- lib/vtls/gtls.c
- lib/vtls/gtls.h
- lib/vtls/hostcheck.c
- lib/vtls/hostcheck.h
- lib/vtls/keylog.c
- lib/vtls/keylog.h
- lib/vtls/mbedtls.c
- lib/vtls/mbedtls.h
- lib/vtls/openssl.c
- lib/vtls/openssl.h
- lib/vtls/rustls.c
- lib/vtls/rustls.h
- lib/vtls/schannel.c
- lib/vtls/schannel.h
- lib/vtls/schannel_int.h
- lib/vtls/schannel_verify.c
- lib/vtls/vtls.c
- lib/vtls/vtls.h
- lib/vtls/vtls_int.h
- lib/vtls/vtls_scache.c
- lib/vtls/vtls_scache.h
- lib/vtls/vtls_spack.c
- lib/vtls/vtls_spack.h
- lib/vtls/wolfssl.c
- lib/vtls/wolfssl.h
- lib/vtls/x509asn1.c
- lib/vtls/x509asn1.h
- projects/Windows/tmpl/curl.vcxproj
- src/toolx/tool_time.c
Change #258716
Category curl Changed by Daniel Stenberg <daniel@haxx.se> Changed at Mon 23 Feb 2026 16:45:37 Repository https://github.com/curl/curl.git Project curl Branch master Revision e9786038d6ca664a6268df32c8db11a8276f28db Comments
setopt: make setopt_copypostfields a separate function Closes #20688
Changed files
- lib/setopt.c
Change #258722
Category curl Changed by Viktor Szakats <commit@vsz.me> Changed at Mon 23 Feb 2026 17:03:01 Repository https://github.com/curl/curl.git Project curl Branch master Revision f1cee1f18a0c817810117a08ae146c1d57bb8303 Comments
clang-tidy: add arg names to prototypes where missing (cont.) Detected by `readability-named-parameter` with `HeaderFilterRegex: '.*'`, or `CURL_CLANG_TIDYFLAGS='--header-filter=.*'`. Seen on Windows. Follow-up to e8415ad3c7ab69a7056daa4b39e7a0044c43f5ba #20657 Follow-up to c878160e9c1f7366e64299aa02540d5495c3df9c #20624 Closes #20693
Changed files
- lib/curlx/inet_pton.h
Change #258724
Category curl Changed by Daniel Stenberg <daniel@haxx.se> Changed at Mon 23 Feb 2026 17:22:26 Repository https://github.com/curl/curl.git Project curl Branch master Revision 29bca12978f3adebe33b63c18aa3c3fe6439381a Comments
ftp: split ftp_state_use_port into sub functions For readability and reduced complexity. Fixed a bug when FTPPORT specifies an IPv6-address only, without brackets. Closes #20685
Changed files
- lib/ftp.c