]> git.saurik.com Git - wxWidgets.git/blobdiff - wxPython/config.py
Fix for build errors when the media lib was not built.
[wxWidgets.git] / wxPython / config.py
index 5a00a2179f891da54ef418fe917631b1db9956dc..15349bf3f34e46099e44b446d10bb5c8c2f2e5b3 100644 (file)
@@ -552,6 +552,19 @@ def makeLibName(name):
     return [libname]
 
 
+def findLib(name, libdirs):
+    name = makeLibName(name)[0]
+    if os.name == 'posix':
+        dirs = libdirs + ['/usr/lib', '/usr/local/lib']
+        name = 'lib'+name
+    else:
+        dirs = libdirs[:]
+    for d in dirs:
+        p = os.path.join(d, name)
+        if glob.glob(p+'*') != []:
+            return True
+    return False
+
 
 def adjustCFLAGS(cflags, defines, includes):
     '''Extract the raw -I, -D, and -U flags and put them into