Hello, Im tryin to compile RC8 but its not really working.
This is the compile script I use:
#!/bin/bash
# fs2_open Compile Script
CFLAGS="-march=athlon64 -O2 -pipe -fomit-frame-pointer"
if [ -e ./fs2_open/ ]; then
cd fs2_open
if [ -e ./Makefile.in ]; then
make clean
./configure CFLAGS="$CFLAGS"
make
else
./autogen.sh CFLAGS="$CFLAGS"
make
fi
else
echo "No fs2_open directory found."
fi
and then I get this:
...
...
...
checking for sdl-config... no
checking for SDL - version >= 1.2.6... no
*** The sdl-config script installed by SDL could not be found
*** If SDL was installed in PREFIX, make sure PREFIX/bin is in
*** your path, or set the SDL_CONFIG environment variable to the
*** full path to sdl-config.
configure: error: *** SDL >= 1.2.6 not found!
make: *** No targets specified and no makefile found. Stop.
But SDL is already installed in openSUSE 10.2, but I cant seem to find sdl-config.