I've been trying to get this game creation program called "ika" to compile. However, whenever I do so, I get an error saying that the command "python2.4-config" could not be found. Here's how it is used in the SConstruct file:
Code:
# *nix specific configuration
libpath('/usr/X11R6/lib')
libs('GL', 'GLU', 'util')
env.ParseConfig('python2.4-config --cflags')
env.ParseConfig('python2.4-config --libs')
Apparently, Fedora Core doesn't use the python2.4-config script. What does it use in its place?