-
Notifications
You must be signed in to change notification settings - Fork 14
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
libsdl2 not recognized with Debian10 #133
Comments
yeah, sorry. I was in root when I tried to launch. It launched under my username(with the hack mentioned above). SheepShaver Settings appears, and I configured them, but upon 'Start" the following alert... I will check if this is due to one or more of the selinux boolians, e.g., allow_execheap, allow_execmem, allow_execmod, allow_execstack. |
Nope. selinux not running nor installed. Stuck. |
Apparently fails conftest.py "trap invalid opcode" |
I had also struggled with this problem. Here are the places I got stuck:
I feel like I had some other information regarding this, but I'm not sure where I put it. |
Possibly of use, I will try to check this out later |
The immediate problem, the error at You are building without SDL there; If the configure script detected SDL it would say the version number next to Are you missing libsdl2-dev or whatever it's called? Building code that uses a compiled library requires the library's headers, and if you're using the library from a package in your Linux distro, you'll need whatever the distro puts those headers in, e.g. a *-dev package (Debian-style) or *-devel package (Red Hat-style). The error about low memory globals is because there's a kernel tunable you need to change; this should be better documented, see: |
Debian10 Buster new install on ASUS A8N-E motherboard...
'SDL major-version' does not recognize installed packages:
libsdl2-2.0-0 nor
libsdl-kitchensink1 (which includes libsdl2)
How is 'SDL_VERSION_ATLEAST(2,0,0)' determined?
I did a 'grep -r SDL_VERSION_ATLEAST *' and couldn't find how it is assigned.
As a hack, I commented-out //&& SDL_VERSION_ATLEAST(2,0,0) in main_unix.cpp so it would make (Since I know I have SDL2 installed) but fails to open display upon run.
The text was updated successfully, but these errors were encountered: