d1446928b7
Pygame is a cross-platfrom library designed to make it easy to write multimedia software, such as games, in Python. Pygame requires the Python language and SDL multimedia library. It can also make use of several other popular libraries.
13 lines
517 B
Plaintext
13 lines
517 B
Plaintext
$OpenBSD: patch-config_unix_py,v 1.1.1.1 2003/08/08 21:48:58 jolan Exp $
|
|
--- config_unix.py.orig Mon Feb 3 17:31:01 2003
|
|
+++ config_unix.py Fri Jul 25 10:59:52 2003
|
|
@@ -82,7 +82,7 @@ class Dependency:
|
|
for dir in libdirs:
|
|
for name in libnames:
|
|
path = os.path.join(dir, name)
|
|
- if os.path.isfile(path):
|
|
+ if filter(os.path.isfile, glob(path+'*')):
|
|
self.lib_dir = dir
|
|
|
|
if self.lib_dir and self.inc_dir:
|