>> the download link that I found is a .rpm.tar.gz file
Anders> Since I downloaded it from MacOS the .tar.gz part must have
Anders> been cut off.
>> Have you tried gunzip and then tar -xvf on the file in sequence?
Anders> Yeah, now I have. Thanks! It installed succesfully. I can't
Anders> install the SDL package though because it conflicts with some
Anders> files. If I try to run Executor without it I get the
Anders> following error: <error> executor-demo-sdl:error in loading
Anders> shared libraries: executor-demo-sdl:undefined
Anders> symbol:SDL_AudioInit </error>
Anders> Any suggestions on how to install the SDL package?
Try using the "-U" for update option.
In theory the stable SDL tree is supposed to be backwardly compatible,
so by installing a newer version of SDL you shouldn't break any
existing SDL-based applications you're using.
Anders> Btw.: isn't there an easy way of saving the text from the
Anders> console in a text file so I don't have to write down the
Anders> error messages manually? -- Regards
Yes, re-direct "stderr". If you use bash (or other shell that uses
the redirection conventions of the Bourne shell) then:
$ command 2> /tmp/errlog
will run "command" and send "stderr" to the file "/tmp/erflog".
Regards,
Founder,
ARDI