Hi.
I have problem with allegro lib.
I've installed allegro by:
Code:
yum install allegro
and when I am trying to compile my program by:
Code:
gcc -Wall prog.c `allegro-config --libs` -o prog.o
I have got:
Code:
/bin/sh: allegro-config: command not found
When i had ArchLinux that was working.
How can I solve that problem?
Sorry for my English, I know it's not perfect.
---------- Post added at 09:35 PM ---------- Previous post was at 06:19 PM ----------
I have got it. I had to also do:
Code:
yum install allegro-devel
that's all.