Lines Matching refs:True
16 +TCL_ENABLED = os.getenv('TCL_ENABLED', "True")
17 +JPEG_ENABLED = os.getenv('JPEG_ENABLED', "True")
18 +ZLIB_ENABLED = os.getenv('ZLIB_ENABLED', "True")
19 +TIFF_ENABLED = os.getenv('TIFF_ENABLED', "True")
20 +FREETYPE_ENABLED = os.getenv('FREETYPE_ENABLED', "True")
21 +LCMS_ENABLED = os.getenv('LCMS_ENABLED', "True")
30 + if ZLIB_ENABLED == 'True' and find_include_file(self, "zlib.h"):
37 + if JPEG_ENABLED == 'True' and find_include_file(self, "jpeglib.h"):
44 + if TIFF_ENABLED == 'True' and find_library_file(self, "tiff"):
48 + if FREETYPE_ENABLED == 'True' and find_library_file(self, "freetype"):
57 + if LCMS_ENABLED == 'True' and find_include_file(self, "lcms.h"):
62 + if TCL_ENABLED == 'True' and _tkinter and find_include_file(self, "tk.h"):