diff options
| author | Alex Rønne Petersen <alex@alexrp.com> | 2025-05-29 17:30:07 +0200 |
|---|---|---|
| committer | Alex Rønne Petersen <alex@alexrp.com> | 2025-05-30 01:03:47 +0200 |
| commit | 0cbff2ff7ff175a40c452bb5ca4a32a282a77088 (patch) | |
| tree | d0dd6eec7396ba57a023a19451ab7d8b40f9d4be /lib/std | |
| parent | c04be630d996a0e01fd3cf05e6cade006e4226ce (diff) | |
| download | zig-0cbff2ff7ff175a40c452bb5ca4a32a282a77088.tar.gz zig-0cbff2ff7ff175a40c452bb5ca4a32a282a77088.zip | |
mingw: Remove libscrnsav(e,w) support.
This defines a WinMain() function that can be potentially problematic when it
isn't wanted. If we add back support for this library in the future, it should
be built separately from mingw32.lib and on demand.
Diffstat (limited to 'lib/std')
| -rw-r--r-- | lib/std/zig/target.zig | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/lib/std/zig/target.zig b/lib/std/zig/target.zig index 35dac87ff3..38948b03eb 100644 --- a/lib/std/zig/target.zig +++ b/lib/std/zig/target.zig @@ -297,10 +297,6 @@ pub fn isLibCLibName(target: std.Target, name: []const u8) bool { return true; if (eqlIgnoreCase(ignore_case, name, "pthread")) return true; - if (eqlIgnoreCase(ignore_case, name, "scrnsave")) - return true; - if (eqlIgnoreCase(ignore_case, name, "scrnsavw")) - return true; if (eqlIgnoreCase(ignore_case, name, "strmiids")) return true; if (eqlIgnoreCase(ignore_case, name, "uuid")) |
