Overview
| Comment: | Added support for building under Win64 (MingW64) | 
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive | 
| Timelines: | family | ancestors | descendants | both | trunk | 
| Files: | files | file ages | folders | 
| SHA1: | 53cdd8c9a626c91227732cce8c4e8e40 | 
| User & Date: | rkeene on 2010-09-26 04:43:44 | 
| Other Links: | manifest | tags | 
Context
| 2010-09-26 | ||
| 04:43 | KitCreator 0.3.0.x Added support for using ZIP archives if MK4 fails to build Removed support for pure-Tcl MK4 (it didn't work)check-in: 66535d6924 user: rkeene tags: trunk, 0.3.0 | |
| 04:43 | Added support for building under Win64 (MingW64) check-in: 53cdd8c9a6 user: rkeene tags: trunk | |
| 04:43 | Added patch required to build with MingW64 check-in: 26410a9c32 user: rkeene tags: trunk | |
Changes
Modified tk/build.sh from [10214ad9a8] to [e8f807ace8].
| ︙ | ︙ | |||
| 50 51 52 53 54 55 56 | 
	if [ ! -d '../buildsrc' ]; then
		gzip -dc "../${SRC}" | tar -xf -
	else    
		cp -rp ../buildsrc/* './'
	fi
	cd "${BUILDDIR}" || exit 1
 | | > > > > > > > > > > > > > > | 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 | 
	if [ ! -d '../buildsrc' ]; then
		gzip -dc "../${SRC}" | tar -xf -
	else    
		cp -rp ../buildsrc/* './'
	fi
	cd "${BUILDDIR}" || exit 1
	for dir in unix win macosx win64 __fail__; do
		if [ "${dir}" = "__fail__" ]; then
			exit 1
		fi
		# Windows/amd64 workarounds
		win64="0"
		if [ "${dir}" = "win64" ]; then
			win64="1"
			dir="win"
		fi
		# Remove previous directory's "tkConfig.sh" if found
		rm -f 'tkConfig.sh'
		cd "${BUILDDIR}/${dir}" || exit 1
		if [ "${dir}" = "win" ]; then
			# Statically link Tk to Tclkit if we are compiling for
			# Windows
			STATICTK="1"
			if [ "${win64}" = "1" ]; then
				# Mingw32 for AMD64 requires this, apparently
				CPPFLAGS="${CPPFLAGS} -D_WIN32_IE=0x0501"
				CFLAGS="${CFLAGS} -D_WIN32_IE=0x0501"
				export CPPFLAGS CFLAGS
			fi
		fi
		if [ "${STATICTK}" = "1" ]; then
			echo "Running: ./configure --disable-shared --disable-symbols --prefix=\"${INSTDIR}\" --with-tcl=\"${TCLCONFIGDIR}\" ${CONFIGUREEXTRA}"
			./configure --disable-shared --disable-symbols --prefix="${INSTDIR}" --with-tcl="${TCLCONFIGDIR}" ${CONFIGUREEXTRA}
		else
			echo "Running: ./configure --enable-shared --disable-symbols --prefix=\"${INSTDIR}\" --with-tcl=\"${TCLCONFIGDIR}\" ${CONFIGUREEXTRA}"
 | 
| ︙ | ︙ |