diff options
Diffstat (limited to 'devel/py-game/files/patch-aa')
-rw-r--r-- | devel/py-game/files/patch-aa | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/devel/py-game/files/patch-aa b/devel/py-game/files/patch-aa new file mode 100644 index 000000000000..3244d79d9bd0 --- /dev/null +++ b/devel/py-game/files/patch-aa @@ -0,0 +1,13 @@ +--- config_unix.py 2000/12/16 08:03:29 1.1 ++++ config_unix.py 2000/12/16 08:23:56 +@@ -4,7 +4,9 @@ + import os, sys, shutil + from glob import glob + +-configcommand = 'sdl-config --version --cflags --libs' ++try: configcommand = os.environ['SDL_CONFIG'] ++except KeyError: configcommand = 'sdl-config' ++configcommand = configcommand + ' --version --cflags --libs' + + + |