Overview
| Comment: | Updated to create a fake "xmkmf" when cross-compiling |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
2539bf269d42692d36a1d92e2a6fe29f |
| User & Date: | rkeene on 2014-05-27 13:44:15 |
| Other Links: | manifest | tags |
Context
|
2014-05-27
| ||
| 14:20 | Added support for a manual knob (KC_CROSSCOMPILE) for determing whether fake xmkmf wrapper is used check-in: f49c630023 user: rkeene tags: trunk | |
| 13:44 | Updated to create a fake "xmkmf" when cross-compiling check-in: 2539bf269d user: rkeene tags: trunk | |
|
2014-05-22
| ||
| 17:02 | Upgraded to tcc4tcl 0.14 check-in: 8b2ac4d64e user: rkeene tags: trunk | |
Changes
Modified tk/build.sh from [cdaaafe15a] to [b4a36c92da].
| ︙ | |||
145 146 147 148 149 150 151 152 153 154 155 156 157 158 | 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 | + + + + + + |
echo "Running patch script: ${patchscript}"
(
. "${patchscript}"
)
fi
done
# Allow wrapper programs to supplant real programs
if [ -d 'fake-bin' ]; then
PATH="$(pwd)/fake-bin:${PATH}"
export PATH
fi
for dir in "${TCLCONFIGDIRTAIL}" unix win macosx win64 __fail__; do
if [ -z "${dir}" ]; then
continue
fi
if [ "${dir}" = "__fail__" ]; then
|
| ︙ |
Added tk/patchscripts/xmkmf-donotuse.sh version [48cb1a1201].
|