| 123 |
)) |
)) |
| 124 |
|
|
| 125 |
|
|
| 126 |
opts.Add(PackageOption( |
opts.Add( |
| 127 |
'TCL' |
'TCL' |
| 128 |
,'Base of Tcl distribution' |
,'Base of Tcl distribution' |
| 129 |
,default_tcl |
,default_tcl |
| 130 |
)) |
) |
| 131 |
|
|
| 132 |
# Where are the Tcl includes? |
# Where are the Tcl includes? |
| 133 |
opts.Add(PackageOption( |
opts.Add( |
| 134 |
'TCL_CPPPATH' |
'TCL_CPPPATH' |
| 135 |
,"Where are your Tcl include files?" |
,"Where are your Tcl include files?" |
| 136 |
,"$TCL/include" |
,"$TCL/include" |
| 137 |
)) |
) |
| 138 |
|
|
| 139 |
# Where are the Tcl libs? |
# Where are the Tcl libs? |
| 140 |
opts.Add(PackageOption( |
opts.Add( |
| 141 |
'TCL_LIBPATH' |
'TCL_LIBPATH' |
| 142 |
,"Where are your Tcl libraries?" |
,"Where are your Tcl libraries?" |
| 143 |
,"$TCL/lib" |
,"$TCL/lib" |
| 144 |
)) |
) |
| 145 |
|
|
| 146 |
# What is the name of the Tcl lib? |
# What is the name of the Tcl lib? |
| 147 |
opts.Add( |
opts.Add( |
| 151 |
) |
) |
| 152 |
|
|
| 153 |
# Where are the Tk includes? |
# Where are the Tk includes? |
| 154 |
opts.Add(PackageOption( |
opts.Add( |
| 155 |
'TK_CPPPATH' |
'TK_CPPPATH' |
| 156 |
,"Where are your Tk include files?" |
,"Where are your Tk include files?" |
| 157 |
,'$TCL_CPPPATH' |
,'$TCL_CPPPATH' |
| 158 |
)) |
) |
| 159 |
|
|
| 160 |
# Where are the Tk libs? |
# Where are the Tk libs? |
| 161 |
opts.Add(PackageOption( |
opts.Add( |
| 162 |
'TK_LIBPATH' |
'TK_LIBPATH' |
| 163 |
,"Where are your Tk libraries?" |
,"Where are your Tk libraries?" |
| 164 |
,'$TCL_LIBPATH' |
,'$TCL_LIBPATH' |
| 165 |
)) |
) |
| 166 |
|
|
| 167 |
# What is the name of the Tk lib? |
# What is the name of the Tk lib? |
| 168 |
opts.Add( |
opts.Add( |
| 800 |
+"need to install the Microsoft Windows Server 2003 Platform SDK, or similar." |
+"need to install the Microsoft Windows Server 2003 Platform SDK, or similar." |
| 801 |
env['PACKAGE_LINKING']='STATIC_PACKAGES' |
env['PACKAGE_LINKING']='STATIC_PACKAGES' |
| 802 |
|
|
| 803 |
if with_python and not conf.CheckHeader('basetsd.h'): |
if with_python and not conf.CheckHeader(['basetsd.h','BaseTsd.h']): |
| 804 |
with_python = 0; |
with_python = 0; |
| 805 |
without_python_reason = "Header file 'basetsd.h' not found. Install the MS Platform SDK." |
without_python_reason = "Header file 'basetsd.h' not found. Install the MS Platform SDK." |
| 806 |
|
|