diff options
author | Dimitris Zlatanidis <d.zlatanidis@gmail.com> | 2019-09-11 20:35:23 +0200 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2019-09-14 07:38:33 +0700 |
commit | 49f7d82f621524c4f9624670326795a7f7c5c696 (patch) | |
tree | 78a45c2d05acc402a29ac6e67cd6a60b7d2ddb6e /python/pygame/config_unix.patch | |
parent | 783dfd12f8b74a397307a8001938017c90d64b45 (diff) |
python/pygame: Updated for version 1.9.6.
Signed-off-by: Dimitris Zlatanidis <d.zlatanidis@gmail.com>
Diffstat (limited to 'python/pygame/config_unix.patch')
-rw-r--r-- | python/pygame/config_unix.patch | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/python/pygame/config_unix.patch b/python/pygame/config_unix.patch new file mode 100644 index 0000000000..d2dc980e6d --- /dev/null +++ b/python/pygame/config_unix.patch @@ -0,0 +1,25 @@ +--- pygame-1.9.6/buildconfig/config_unix.py 2019-09-11 20:29:30.060515857 +0200 ++++ pygame-1.9.6/buildconfig/config_unix.py.orig 2019-09-11 20:29:54.659518227 +0200 +@@ -254,14 +254,14 @@ + for d in DEPS: + d.configure(incdirs, libdirs) + +- for d in DEPS[1:]: +- if not d.found: +- if "-auto" not in sys.argv and not confirm(""" +-Warning, some of the pygame dependencies were not found. Pygame can still +-compile and install, but games that depend on those missing dependencies +-will not run. Would you like to continue the configuration?"""): +- raise SystemExit("Missing dependencies") +- break ++# for d in DEPS[1:]: ++# if not d.found: ++# if "-auto" not in sys.argv and not confirm(""" ++#Warning, some of the pygame dependencies were not found. Pygame can still ++#compile and install, but games that depend on those missing dependencies ++#will not run. Would you like to continue the configuration?"""): ++# raise SystemExit("Missing dependencies") ++# break + + return DEPS + |