Diff

Differences From Artifact [6ef99f6477]:

To Artifact [0f3c234f4e]:


56
57
58
59
60
61
62


63


64
65
66
67
68
69
70
56
57
58
59
60
61
62
63
64

65
66
67
68
69
70
71
72
73







+
+
-
+
+








	cd "${BUILDDIR}" || exit 1

	# Apply patch scripts if needed
	for patchscript in "${PATCHSCRIPTDIR}"/*.sh; do
		if [ -f "${patchscript}" ]; then
			echo "Running patch script: ${patchscript}"

			(
			. "${patchscript}"
				. "${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