>>> I see 2 solutions
>>
>> The other solution could be to patch the setup.py script, if you
>> want to do that I'll tell you what to change
>
> I want to try patching the setup.py script, that way I could see how
> pygame tries to detect the libraries that it says are missing.

Could you try the attached untested patch, that will avoid user interaction.

-- 
Vincent Legoll
22c22
< def confirm(message):
---
> def confirm(message, default_ret=0):
24c24,27
<     reply = raw_input('\n' + message + ' [Y/n]:')
---
>     try:
>         reply = raw_input('\n' + message + ' [Y/n]:')
>     catch EOFError:
>         return default_ret
174a178
> 
180c184,185
< will not run. Would you like to continue the configuration?"""):
---
> will not run. Would you like to continue the configuration?""", 
>                            default_ret=1):

Reply via email to