summaryrefslogtreecommitdiff
path: root/pkg/libxml2
AgeCommit message (Collapse)Author
2025-10-03zig-15: build binary buildsMitchell Hashimoto
2025-09-21build: many more lazy dependencies, defer deps add unless neededMitchell Hashimoto
This makes more dependencies lazy. This has a practical effect of reducing the number of dependencies that need to be downloaded when running certain zig build steps. This is all limited because we're blocked on an upstream Zig issue: https://github.com/ziglang/zig/issues/21525 This prevents us from fully avoiding downloading many dependencies, but at least they're relatively small. One major improvement here is the usage of `lazyImport` for `zig-wayland` that prevents downloading `zig_wayland` unconditionally on all platforms. On macOS, we don't download this at all anymore. Another, weirder change is that all our transitive dependencies are now marked lazy (e.g. glslang's upstream source) even if the glslang build always requires it. This was necessary because without this, even if we simply referenced glslang in the root build.zig, it would force the source package to download unconditionally. This no longer happens.
2025-07-22build-system: Replace deprecated usages of addStaticLibrary with addLibrary ↵Jayson Reis
(#8029) Hi there, this is just a low-hanging fruit and it also prepares the way for the future 0.15, which removes addStaticLibrary. Please, let me know what to do on the `// TODO` comments.
2025-03-12update all packages to new hash for cachingMitchell Hashimoto
2025-03-11Zig 0.14Mitchell Hashimoto
2024-06-24begin 0.13 update process -- very brokenMitchell Hashimoto
2024-04-17working on more zig breaking changesMitchell Hashimoto
2024-02-26build API change: update usage of addCSourceFilesKrzysztof Wolicki
2024-01-15Use addCSourceFiles with dependency instead of manually adding files in a loopKrzysztof Wolicki
2024-01-03WIP: Update to new build module API after Zig PR #18160Krzysztof Wolicki
Temporarily change dependency sources to forks until they update
2023-10-07pkg/libxml2: download using zig package managerMitchell Hashimoto
2023-10-01pkg/libxml2Mitchell Hashimoto