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: | d57968a24a9e8894e39d48d25fe0162ddc2902f6 |
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 88 echo "Running: ${MAKE:-make}" 89 89 ${MAKE:-make} || exit 1 90 90 91 91 echo "Running: ${MAKE:-make} install" 92 92 ${MAKE:-make} install 93 93 94 94 mkdir "${OUTDIR}/lib" || exit 1 95 - cp -r "${INSTDIR}/lib"/itcl*/ "${OUTDIR}/lib/" 95 + cp -r "${INSTDIR}/lib"/itcl* "${OUTDIR}/lib/" 96 96 97 97 "${STRIP:-strip}" -g "${OUTDIR}"/lib/itcl*/*.so >/dev/null 2>/dev/null 98 98 99 99 exit 0 100 100 ) || exit 1 101 101 102 102 exit 0
Modified tclvfs/build.sh from [f2da0a5a15] to [708db71e5e].
78 78 echo "Running: ${MAKE:-make}" 79 79 ${MAKE:-make} || exit 1 80 80 81 81 echo "Running: ${MAKE:-make} install" 82 82 ${MAKE:-make} install 83 83 84 84 mkdir "${OUTDIR}/lib" || exit 1 85 - cp -r "${INSTDIR}/lib"/vfs*/ "${OUTDIR}/lib/" 85 + cp -r "${INSTDIR}/lib"/vfs* "${OUTDIR}/lib/" 86 86 rm -f "${OUTDIR}/lib"/vfs*/*.a "${OUTDIR}/lib"/vfs*/*.so 87 87 88 88 exit 0 89 89 ) || exit 1 90 90 91 91 exit 0
Modified tk/build.sh from [7c3301f812] to [c666adbf49].
146 146 # than the parent directory 147 147 for pkgIndex in "${INSTDIR}"/lib/tk*/pkgIndex.tcl; do 148 148 sed 's@ \.\. @ @g' "${pkgIndex}" > "${pkgIndex}.new" 149 149 mv "${pkgIndex}.new" "${pkgIndex}" 150 150 done 151 151 152 152 mkdir "${OUTDIR}/lib" || exit 1 153 - cp -r "${INSTDIR}/lib"/tk*/ "${OUTDIR}/lib/" 153 + cp -r "${INSTDIR}/lib"/tk* "${OUTDIR}/lib/" 154 154 cp -r "${INSTDIR}/lib"/libtk* "${OUTDIR}/lib"/tk*/ 155 155 rm -rf "${OUTDIR}/lib"/tk*/demos 156 156 157 157 "${STRIP:-strip}" -g "${OUTDIR}"/lib/tk*/*.so >/dev/null 2>/dev/null 158 158 find "${OUTDIR}" -type f -name '*.a' | xargs rm -f >/dev/null 2>/dev/null 159 159 160 160 break 161 161 done 162 162 163 163 exit 0 164 164 ) || exit 1 165 165 166 166 exit 0