Description: This corrects import error when compiled with new g++ linker.
Author: Julian Taylor <jtaylor.debian@googlemail.com>

Index: pyfltk-1.1.5/setup.py
===================================================================
--- pyfltk-1.1.5.orig/setup.py	2011-05-16 16:52:59.000000000 -0500
+++ pyfltk-1.1.5/setup.py	2011-05-16 16:53:44.000000000 -0500
@@ -241,7 +241,7 @@
         lowercase_item = item.lower()
         if string.find(lowercase_item, "pthread") >= 0:
             doMulti = True
-        if string.find(lowercase_item, "fltk") < 0 and string.find(lowercase_item, "gl") >= 0:
+        if string.find(lowercase_item, "fltk") >= 0 and string.find(lowercase_item, "gl") >= 0:
             doOpenGL = True
         if string.find(lowercase_item, "fltk") >= 0 and string.find(lowercase_item, "forms") >= 0:
             doForms = True
