Compare commits

..

8 Commits

Author SHA1 Message Date
Bananymous 06015d006d ports/binutils: Fix compilation when zstd is installed
binutils uses pkg-config to find zstd for the host when building. If our
zstd port is installed, it finds it instead and ends up including our
own sysroot which is incompatible with host's.

unsetting pkg-config related variables fixes this and allows binutils to
build fine even when zstd is installed. We can now make it a dependency.
2025-08-11 03:45:38 +03:00
Bananymous 0dbfd8ac66 ports/quake2: Use SDL2 instead of our own frontend 2025-08-11 03:45:38 +03:00
Bananymous 58c1fd36b9 ports/tinygb: Use SDL2 instead of our own frontend 2025-08-11 03:45:38 +03:00
Bananymous 2f725848f4 ports/doom: Use SDL2 instead of our own frontend
This allows doom to play sounds!
2025-08-11 03:45:38 +03:00
Bananymous 6250710bbd ports: Add SDL2_mixer port
This allows some ports to use audio :D

I did not port any audio libraries so loading sounds probably doesn't
work :D
2025-08-11 03:45:38 +03:00
Bananymous 028024b0da ports: Add timidity port 2025-08-11 03:45:38 +03:00
Bananymous 4f61230506 init: Start AudioServer on boot 2025-08-11 03:45:38 +03:00
Bananymous 309ec660b6 Kernel/LibC: Implement chroot 2025-08-11 03:45:38 +03:00
1 changed files with 0 additions and 1 deletions

View File

@ -627,7 +627,6 @@ int getopt(int argc, char* const argv[], const char* optstring)
}
int chroot(const char* path)
{
return syscall(SYS_CHROOT, path);
}