diff options
author | B. Watson <urchlay@slackware.uk> | 2024-09-15 00:15:44 -0400 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2024-09-21 07:32:14 +0700 |
commit | cb71abc9f44a8b0c6b5cf73c30e89215c70eb4c7 (patch) | |
tree | dd30f51d81a52e7e957467ff2cf959f75b5962a1 | |
parent | fb40d4f2eb73093f5337791854898d3742cd3f48 (diff) |
system/sdltrs: Fix README (SDL-1.2 doesn't support Wayland).
Signed-off-by: B. Watson <urchlay@slackware.uk>
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
-rw-r--r-- | system/sdltrs/README | 10 | ||||
-rw-r--r-- | system/sdltrs/sdltrs.SlackBuild | 2 |
2 files changed, 6 insertions, 6 deletions
diff --git a/system/sdltrs/README b/system/sdltrs/README index 341f3c681c22..8657296d6443 100644 --- a/system/sdltrs/README +++ b/system/sdltrs/README @@ -11,11 +11,11 @@ in the last 10 years or so, you probably should be using the SDL-2.0 build, which is called sdl2trs. It's possible to install both sdltrs and sdl2trs on the same system without conflict. -Optionally, sdltrs can be built without X11 support. Set X11=no in -the script's environment, to do this. This will make it possible -to run sdltrs directly on the console's framebuffer, or (probably) -under Wayland. However, the X libraries will still be required at -runtime because Slackware's SDL is linked with them. +Optionally, sdltrs can be built without X11 support. Set X11=no in the +script's environment, to do this. This will make it possible to run +sdltrs directly on the console's framebuffer. However, the X libraries +will still be required at runtime because Slackware's SDL is linked +with them. Note: When you start up sdltrs for the first time, it attempts to boot from floppy disk. If you didn't give either the "-disk0 diff --git a/system/sdltrs/sdltrs.SlackBuild b/system/sdltrs/sdltrs.SlackBuild index 297233bb89df..fe320a6d3bab 100644 --- a/system/sdltrs/sdltrs.SlackBuild +++ b/system/sdltrs/sdltrs.SlackBuild @@ -121,7 +121,7 @@ chown -R root:root . find . -type f -a -exec chmod 644 {} + -o \ -type d -a -exec chmod 755 {} + -# 20240911 bkw: wayland support? works on the console, for real! +# 20240911 bkw: with NOX=true, it works on the console, for real! NOX="false"; WITHX="WITH" if [ "${X11:-yes}" = "no" ]; then NOX="true" |