67
68
69
70
71
72
73
74
75
76
77
78
79
80
|
find "tcl${TCLVERS}" '(' -name install-sh -o -name install.sh ')' -type f | xargs chmod +x
tar -cf - "tcl${TCLVERS}" | gzip -c > "../${SRC}"
fi
rm -f "tmp-tcl.zip" "tmp-itcl.zip" "tmp-thread.zip" "tmp-tclconfig.zip"
rm -rf "tcl-${CVSTAG}" "itcl-${CVSTAG}" "thread-${CVSTAG}" "tclconfig-${CVSTAG}"
)
else
rm -f "${SRC}.tmp"
wget -O "${SRC}.tmp" "${SRCURL}" || exit 1
mv "${SRC}.tmp" "${SRC}"
fi
fi
|
>
|
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
|
find "tcl${TCLVERS}" '(' -name install-sh -o -name install.sh ')' -type f | xargs chmod +x
tar -cf - "tcl${TCLVERS}" | gzip -c > "../${SRC}"
fi
rm -f "tmp-tcl.zip" "tmp-itcl.zip" "tmp-thread.zip" "tmp-tclconfig.zip"
rm -rf "tcl-${CVSTAG}" "itcl-${CVSTAG}" "thread-${CVSTAG}" "tclconfig-${CVSTAG}"
rm -rf "tcl${TCLVERS}"
)
else
rm -f "${SRC}.tmp"
wget -O "${SRC}.tmp" "${SRCURL}" || exit 1
mv "${SRC}.tmp" "${SRC}"
fi
fi
|
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
|
(
. "${patchscript}"
)
fi
done
# Patch Win32 builds to always provide DllMain if we are building KitDLL
if [ "${KITTARGET}" = "kitdll" ]; then
## DllMain is needed when building KitDLL
for filetopatch in win/tclWin32Dll.c win/tclWinInit.c; do
echo "Undefining STATIC_BUILD in \"${filetopatch}\""
sed 's@STATIC_BUILD@NEVER_STATIC_BUILD@g' "${filetopatch}" > "${filetopatch}.new" && cat "${filetopatch}.new" > "${filetopatch}"
rm -f "${filetopatch}.new"
done
fi
for dir in unix win macosx __fail__; do
if [ "${dir}" = "__fail__" ]; then
# If we haven't figured out how to build it, reject.
exit 1
fi
|
<
<
<
<
<
<
<
<
<
<
<
|
109
110
111
112
113
114
115
116
117
118
119
120
121
122
|
(
. "${patchscript}"
)
fi
done
for dir in unix win macosx __fail__; do
if [ "${dir}" = "__fail__" ]; then
# If we haven't figured out how to build it, reject.
exit 1
fi
|