blob: 8820cba9b83c75ccb94954fba2f3557935376d49 [file] [log] [blame]
Martin v. Löwis4ca196d2002-02-24 16:51:45 +00001import sys, os
Guido van Rossumea32cbb2001-10-12 15:34:29 +00002
Martin v. Löwis4ca196d2002-02-24 16:51:45 +00003# Delay import _tkinter until we have set TCL_LIBRARY,
4# so that Tcl_FindExecutable has a chance to locate its
5# encoding directory.
6
7# Unfortunately, we cannot know the TCL_LIBRARY directory
8# if we don't know the tcl version, which we cannot find out
9# without import Tcl. Fortunately, Tcl will itself look in
10# <TCL_LIBRARY>\..\tcl<TCL_VERSION>, so anything close to
11# the real Tcl library will do.
12
13prefix = os.path.join(sys.prefix,"tcl")
Christian Heimes99170a52007-12-19 02:07:34 +000014if not os.path.exists(prefix):
15 # devdir/../tcltk/lib
16 prefix = os.path.join(sys.prefix, os.path.pardir, "tcltk", "lib")
17 prefix = os.path.abspath(prefix)
Martin v. Löwis4ca196d2002-02-24 16:51:45 +000018# if this does not exist, no further search is needed
19if os.path.exists(prefix):
Guido van Rossume014a132006-08-19 16:53:45 +000020 if "TCL_LIBRARY" not in os.environ:
Martin v. Löwis4ca196d2002-02-24 16:51:45 +000021 for name in os.listdir(prefix):
22 if name.startswith("tcl"):
23 tcldir = os.path.join(prefix,name)
24 if os.path.isdir(tcldir):
25 os.environ["TCL_LIBRARY"] = tcldir
Martin v. Löwis838a3592002-11-09 19:01:44 +000026 # Compute TK_LIBRARY, knowing that it has the same version
27 # as Tcl
Martin v. Löwis4ca196d2002-02-24 16:51:45 +000028 import _tkinter
29 ver = str(_tkinter.TCL_VERSION)
Guido van Rossume014a132006-08-19 16:53:45 +000030 if "TK_LIBRARY" not in os.environ:
Martin v. Löwis838a3592002-11-09 19:01:44 +000031 v = os.path.join(prefix, 'tk'+ver)
32 if os.path.exists(os.path.join(v, "tclIndex")):
33 os.environ['TK_LIBRARY'] = v
34 # We don't know the Tix version, so we must search the entire
35 # directory
Guido van Rossume014a132006-08-19 16:53:45 +000036 if "TIX_LIBRARY" not in os.environ:
Martin v. Löwis838a3592002-11-09 19:01:44 +000037 for name in os.listdir(prefix):
38 if name.startswith("tix"):
39 tixdir = os.path.join(prefix,name)
40 if os.path.isdir(tixdir):
41 os.environ["TIX_LIBRARY"] = tixdir