# HG changeset patch # User Christopher Rogers # Date 1287667223 0 # Node ID 3262973a23686d1dc06e068ff7e727da72ea3f7b # Parent a995ec59b0f29ca0c6cbb4d3a77f5c1c1c91c551 Forgot to add config.patch for python-pygame. diff -r a995ec59b0f2 -r 3262973a2368 python-pygame/stuff/config.patch --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/python-pygame/stuff/config.patch Thu Oct 21 13:20:23 2010 +0000 @@ -0,0 +1,26 @@ +Index: config_unix.py +=================================================================== +--- config_unix.py (revision 2567) ++++ config_unix.py (working copy) +@@ -174,7 +174,7 @@ + + for d in DEPS[1:]: + if not d.found: +- if not confirm(""" ++ 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?"""): +Index: config_msys.py +=================================================================== +--- config_msys.py (revision 2567) ++++ config_msys.py (working copy) +@@ -283,7 +283,7 @@ + + for d in DEPS[1:]: + if not d.found: +- if not confirm(""" ++ 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?"""):