SDL Problems in General

Hey, I’m having serious problems getting SDL to work on my machine. I use
linux mandrake 9.1. So anyway, I’m writing a simple program to initialize
and quit SDL. Well, the same error comes up, like so many others.
SDL_INIT undeclared, use first in function.
etc.
So I go through the FAQ and did just what you told me to add the path
usr/local/bin to my path. I think I might have messed something up, because
the first time I tried to add it, I typed
export PATH='usr/local/bin$PATH’
If you’ll notice, the : is missing. Now it cant find the whereis command.
Also, there is nothing in my usr/local/bin directory anyway. Any help?

Leo_________________________________________________________________
Say ?goodbye? to busy signals and slow downloads with a high-speed Internet
connection! Prices start at less than $1 a day average.
https://broadband.msn.com (Prices may vary by service area.)

Leo . wrote:

Hey, I’m having serious problems getting SDL to work on my machine. I
use linux mandrake 9.1. So anyway, I’m writing a simple program to
initialize and quit SDL. Well, the same error comes up, like so many
others.
SDL_INIT undeclared, use first in function.

That means you should #include <SDL.h> somewhere.

Stephane