Description: Do not check only for "linux2" string when determining platform.
Author: Luca Falavigna <dktrkranz@debian.org>

Index: pyfltk-1.1.4/setup.py
===================================================================
--- pyfltk-1.1.4.orig/setup.py	2009-09-02 22:15:04.000000000 +0000
+++ pyfltk-1.1.4/setup.py	2009-09-02 22:15:00.000000000 +0000
@@ -76,8 +76,8 @@
     lib_dir_list = [fltk_lib_dir]
     lib_list = ["fltk", "kernel32", "user32", "gdi32", "winspool", "comdlg32", "Comctl32", "advapi32", "shell32", "oleaut32", "odbc32", "odbccp32", "stdc++", "msvcr71"]
     #link_arg_list=["-Wl,--enable-runtime-pseudo-reloc", "-Wl,--enable-auto-import"]
-elif sys.platform == 'linux2':
-    print "Building for Linux"
+elif sys.platform.startswith('linux2') or sys.platform.startswith('gnukfreebsd') or sys.platform.startswith('gnu0'):
+    print "Building for Linux, or GNU/kFreeBSD, or GNU/Hurd"
     # ugly hack to force distutils to use g++ instead of gcc for linking
     from distutils import sysconfig
     # changes the linker from gcc to g++
