Overview
| Comment: | Added patch from "Schelte Bron" <s...@wanadoo.nl> to fix build issue on Mac OS X | 
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive | 
| Timelines: | family | ancestors | descendants | both | trunk | 
| Files: | files | file ages | folders | 
| SHA1: | d57968a24a9e8894e39d48d25fe0162d | 
| User & Date: | rkeene on 2010-09-26 04:51:40 | 
| Other Links: | manifest | tags | 
Context
| 2010-09-26 | ||
| 04:51 | Removed extraneous code in VFS code (kitdll) check-in: 57bb916b04 user: rkeene tags: trunk | |
| 04:51 | Added patch from "Schelte Bron" <s...@wanadoo.nl> to fix build issue on Mac OS X check-in: d57968a24a user: rkeene tags: trunk | |
| 04:51 | Updated to create loadable filesystem by including C-Tcl interface when creating C version of directory tree (dir2c) check-in: e4de9a2934 user: rkeene tags: trunk | |
Changes
Modified itcl/build.sh from [db8c325ed3] to [6d30f1afee].
| ︙ | ︙ | |||
| 88 89 90 91 92 93 94 | 
	echo "Running: ${MAKE:-make}"
	${MAKE:-make} || exit 1
	echo "Running: ${MAKE:-make} install"
	${MAKE:-make} install
	mkdir "${OUTDIR}/lib" || exit 1
 | | | 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 | 
	echo "Running: ${MAKE:-make}"
	${MAKE:-make} || exit 1
	echo "Running: ${MAKE:-make} install"
	${MAKE:-make} install
	mkdir "${OUTDIR}/lib" || exit 1
	cp -r "${INSTDIR}/lib"/itcl* "${OUTDIR}/lib/"
	"${STRIP:-strip}" -g "${OUTDIR}"/lib/itcl*/*.so >/dev/null 2>/dev/null
	exit 0
) || exit 1
exit 0
 | 
Modified tclvfs/build.sh from [f2da0a5a15] to [708db71e5e].
| ︙ | ︙ | |||
| 78 79 80 81 82 83 84 | 
	echo "Running: ${MAKE:-make}"
	${MAKE:-make} || exit 1
	echo "Running: ${MAKE:-make} install"
	${MAKE:-make} install
	mkdir "${OUTDIR}/lib" || exit 1
 | | | 78 79 80 81 82 83 84 85 86 87 88 89 90 91 | 
	echo "Running: ${MAKE:-make}"
	${MAKE:-make} || exit 1
	echo "Running: ${MAKE:-make} install"
	${MAKE:-make} install
	mkdir "${OUTDIR}/lib" || exit 1
	cp -r "${INSTDIR}/lib"/vfs* "${OUTDIR}/lib/"
	rm -f "${OUTDIR}/lib"/vfs*/*.a "${OUTDIR}/lib"/vfs*/*.so
	exit 0
) || exit 1
exit 0
 | 
Modified tk/build.sh from [7c3301f812] to [c666adbf49].
| ︙ | ︙ | |||
| 146 147 148 149 150 151 152 | 
		# than the parent directory
		for pkgIndex in "${INSTDIR}"/lib/tk*/pkgIndex.tcl; do
			sed 's@ \.\. @ @g' "${pkgIndex}" > "${pkgIndex}.new"
			mv "${pkgIndex}.new" "${pkgIndex}"
		done
		mkdir "${OUTDIR}/lib" || exit 1
 | | | 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 | 
		# than the parent directory
		for pkgIndex in "${INSTDIR}"/lib/tk*/pkgIndex.tcl; do
			sed 's@ \.\. @ @g' "${pkgIndex}" > "${pkgIndex}.new"
			mv "${pkgIndex}.new" "${pkgIndex}"
		done
		mkdir "${OUTDIR}/lib" || exit 1
		cp -r "${INSTDIR}/lib"/tk* "${OUTDIR}/lib/"
		cp -r "${INSTDIR}/lib"/libtk* "${OUTDIR}/lib"/tk*/
		rm -rf "${OUTDIR}/lib"/tk*/demos
		"${STRIP:-strip}" -g "${OUTDIR}"/lib/tk*/*.so >/dev/null 2>/dev/null
		find "${OUTDIR}" -type f -name '*.a' | xargs rm -f >/dev/null 2>/dev/null
		break
 | 
| ︙ | ︙ |