From 9a3fd8c82f010d12fd2e59ddc47e7236dbb2aef8 Mon Sep 17 00:00:00 2001 From: "Andrew M. Kuchling" Date: Tue, 6 Feb 2001 22:15:27 +0000 Subject: [PATCH] Patch #103578 ] _tkinter build fix for he current Debian unstable tcl/tk 8.3 packages --- setup.py | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/setup.py b/setup.py index 4c42a6550b7..cb78091bc50 100644 --- a/setup.py +++ b/setup.py @@ -495,14 +495,10 @@ class PyBuildExt(build_ext): if tklib and tcllib: # Check for the include files on Debian, where # they're put in /usr/include/{tcl,tk}X.Y - debian_tcl_include = ( '/usr/include/tcl' + version ) - debian_tk_include = ( '/usr/include/tk' + version ) - tcl_includes = find_file('tcl.h', inc_dirs, - [debian_tcl_include] - ) - tk_includes = find_file('tk.h', inc_dirs, - [debian_tk_include] - ) + debian_tcl_include = [ '/usr/include/tcl' + version ] + debian_tk_include = [ '/usr/include/tk' + version ] + debian_tcl_include + tcl_includes = find_file('tcl.h', inc_dirs, debian_tcl_include) + tk_includes = find_file('tk.h', inc_dirs, debian_tk_include) if (tcllib is None or tklib is None and tcl_includes is None or tk_includes is None):