Differences From Artifact [6ef99f6477]:
- Executable file tcl/build.sh — part of check-in [07648651bc] at 2010-10-01 20:18:14 on branch trunk — Updated Tcl build to export DLL functionality when building KitDLL (user: rkeene, size: 4718) [annotate] [blame] [check-ins using]
To Artifact [0f3c234f4e]:
- Executable file
tcl/build.sh
— part of check-in
[e143e5ef08]
at
2010-10-02 08:39:55
on branch trunk
— Updated Minkit build scripts to support buildint KitDLL
Added fix for building KitDLL on platforms without working "strtod" Updated to support compiling TclVFS extension with "-fPIC" when building KitDLL (user: rkeene, size: 4730) [annotate] [blame] [check-ins using] 
| ︙ | ︙ | |||
| 56 57 58 59 60 61 62 | 
	cd "${BUILDDIR}" || exit 1
	# Apply patch scripts if needed
	for patchscript in "${PATCHSCRIPTDIR}"/*.sh; do
		if [ -f "${patchscript}" ]; then
			echo "Running patch script: ${patchscript}"
 | > > | > | 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}"
			)
		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
 | 
| ︙ | ︙ |