Builder curl-ares-solaris11-sparc Build #5461
Results:
Build successful
SourceStamp:
| Project | curl |
| Repository | https://github.com/curl/curl.git |
| Branch | master |
| Revision | 030d6aeaf301cf03c322dc8cfbc7fd05018e3d55 |
| Got Revision | 030d6aeaf301cf03c322dc8cfbc7fd05018e3d55 |
| Changes | 4 changes |
BuildSlave:
unstable11sReason:
The SingleBranchScheduler scheduler named 'schedule-curl-ares-solaris11-sparc' triggered this build
Steps and Logfiles:
Build Properties:
| Name | Value | Source |
|---|---|---|
| branch | master | Build |
| builddir | /export/home/buildbot/slave/curl-ares-solaris11-sparc | slave |
| buildername | curl-ares-solaris11-sparc | Builder |
| buildnumber | 5461 | Build |
| codebase | Build | |
| got_revision | 030d6aeaf301cf03c322dc8cfbc7fd05018e3d55 | Git |
| osplatform | SPARC | SetPropertyFromCommand Step |
| osrelease | 11 | SetPropertyFromCommand Step |
| project | curl | Build |
| repository | https://github.com/curl/curl.git | Build |
| revision | 030d6aeaf301cf03c322dc8cfbc7fd05018e3d55 | Build |
| scheduler | schedule-curl-ares-solaris11-sparc | Scheduler |
| slavename | unstable11s | BuildSlave |
| workdir | /export/home/buildbot/slave/curl-ares-solaris11-sparc | slave (deprecated) |
Forced Build Properties:
| Name | Label | Value |
|---|
Responsible Users:
- Viktor Szakatscommit@vsz.me
Timing:
| Start | Mon Mar 16 13:16:19 2026 |
| End | Mon Mar 16 14:29:45 2026 |
| Elapsed | 1 hrs, 13 mins, 25 secs |
All Changes:
:
Change #261167
Category curl Changed by Viktor Szakats <commit@vsz.me> Changed at Mon 16 Mar 2026 11:54:43 Repository https://github.com/curl/curl.git Project curl Branch master Revision e76968e20dd9ea48220f9c82df50764ab44d7d7c Comments
curl_get_line: fix potential infinite loop when filename is a directory Fix potential inifinite loop reading file content with `Curl_get_line()` when a filename passed via these options are pointing to a directory entry (on non-Windows): - `--alt-svc` / `CURLOPT_ALTSVC` - `-b` / `--cookie` / `CURLOPT_COOKIEFILE` - `--hsts` / `CURLOPT_HSTS` - `--netrc-file` / `CURLOPT_NETRC_FILE` Fix by checking for this condition and silently skipping such filename without attempting to read content. Add test 1713 to verify. Mention in cookie documentation as an accepted case, also show a verbose message when a directory is detected. Extend test 46 to verify if such failure lets the logic continue to the next cookie file. Reported-and-based-on-patch-by: Richard Tollerton Fixes #20823 Closes #20826 (originally-based-on) Follow-up to 769ccb4d4261a75c8a4236fbe7dc3e27956db1c9 #19140 Closes #20873
Changed files
- docs/cmdline-opts/cookie.md
- docs/libcurl/opts/CURLOPT_COOKIEFILE.md
- lib/altsvc.c
- lib/cookie.c
- lib/hsts.c
- lib/netrc.c
- tests/data/Makefile.am
- tests/data/test1713
- tests/data/test46
Change #261168
Category curl Changed by Viktor Szakats <commit@vsz.me> Changed at Mon 16 Mar 2026 11:57:56 Repository https://github.com/curl/curl.git Project curl Branch master Revision fad1ebaecc0c489d38c0a9a155f63fdfd9086907 Comments
cmake: resolve imported targets recursively when generating `libcurl.pc` To allow simplifying the binutils ld hack, by chaining the original imported target to curl's local duplicate target. Also to allow linking to dependencies' native imported targets via their CMake Configs, which will always be hooked up to a `CURL::` interface, and may also be chained upstream. Fixing (seen on Linux with simplified binutils hack via #20839): ``` Requires: Requires.private: libzstd openssl zlib Libs: -L${libdir} -lcurl -Libs.private: -lcrypto -lssl -lz -lzstd +Libs.private: -lOpenSSL::Crypto -lZLIB::ZLIB -lcrypto -lssl -lz -lzstd Cflags: -I${includedir} Cflags.private: -DCURL_STATICLIB Error: Process completed with exit code ``` Ref: https://github.com/curl/curl/actions/runs/22768301699/job/66041980258?pr=20839 Note this makes it possible to run into an infinite loop because CMake allows cyclic dependencies. It isn't added by curl's CMake script nor by any dependencies as defined by default, but may happen in theory with custom-created targets. In such case CMake automatically stops with an error at 1000 iterations. I find it overkill to add custom protection for it. Cherry-picked from #20814 Cherry-picked from #20839 Closes #20840Changed files
- CMake/Macros.cmake
- CMakeLists.txt
Change #261169
Category curl Changed by Viktor Szakats <commit@vsz.me> Changed at Mon 16 Mar 2026 11:59:59 Repository https://github.com/curl/curl.git Project curl Branch master Revision ca92e20123928e4788d27135cdafdd084d3833d4 Comments
mk-ca-bundle.pl: make generated timestamps deterministic With default invocation, make generated file timestamps deterministic by looking up (via the GitHub API) the last commit that modified `certdata.txt`, along with its commit timestamp. Also: - show the URL used to download `certdata.txt` from. - make `ca-bundle.crt` timestamp match `certdata.txt`'s. Closes #20528
Changed files
- scripts/mk-ca-bundle.pl
Change #261172
Category curl Changed by Viktor Szakats <commit@vsz.me> Changed at Mon 16 Mar 2026 12:05:39 Repository https://github.com/curl/curl.git Project curl Branch master Revision 030d6aeaf301cf03c322dc8cfbc7fd05018e3d55 Comments
build: include curlx headers directly in src and tests To include what's actually used. Also: - drop unused includes. - scope includes where possible. - drop `curlx/curlx.h` umbrella header. - config2setopts: include `netinet/in.h` for Cygwin/MSYS2. Previously included by chance via an unused curlx include. Closes #20776
Changed files
- lib/Makefile.inc
- lib/curlx/curlx.h
- src/config2setopts.c
- src/tool_doswin.c
- src/tool_operate.c
- src/tool_setup.h
- tests/libtest/first.h
- tests/server/first.h