SDL 1.2.2 install is broken

For some reason, it installs the include files in a broken
fashion. Not only do they go in PREFIX/include/SDL/*, but
they have in them #include’s that DO NOT MATCH THIS, they
try to include <SDL.h> for example, and not <SDL/SDL.h>

This makes all test programs, and every program written to use
SDL, fail.

This should be a simple bug to fix, how come it hasn’t been?

…jeff

This should be a simple bug to fix, how come it hasn’t been?

Because sdl-config is set up to put -IPREFIX/include/SDL on your
compiler’s command line, so that #include “SDL.h” should always work,
regardless of platform.

Perhaps you should verify that PREFIX/bin is in your PATH before compiling
an SDL program?

–ryan.