Differences From Artifact [ce2eeffdfa]:
- Executable file mk4tcl/build.sh — part of check-in [fcf0977f4c] at 2010-09-26 04:37:04 on branch trunk — Added kitcreator (user: rkeene, size: 1016) [annotate] [blame] [check-ins using]
To Artifact [4b3c985883]:
- Executable file
mk4tcl/build.sh
— part of check-in
[a66d18a60b]
at
2010-09-26 04:37:10
on branch trunk
— Updated to build shared objects of Mk4tcl and Tclvfs
Added memchan package (needed for tclvfs) (user: rkeene, size: 1430) [annotate] [blame] [check-ins using]
28 28 wget -O "${SRC}" "${SRCURL}" || exit 1 29 29 fi 30 30 31 31 ( 32 32 cd 'build' || exit 1 33 33 34 34 gzip -dc "../${SRC}" | tar -xf - 35 + 35 36 36 37 cd "${BUILDDIR}/unix" || exit 1 38 + 39 + # Build static libraries for linking against Tclkit 37 40 ./configure --disable-shared --prefix="${INSTDIR}" --exec-prefix="${INSTDIR}" --with-tcl="${TCLCONFIGDIR}/../generic" ${CONFIGUREEXTRA} 38 - 39 41 "${MAKE:-make}" tcllibdir="${INSTDIR}/lib" || exit 1 42 + "${MAKE:-make}" tcllibdir="${INSTDIR}/lib" install 43 + "${MAKE:-make}" tcllibdir="${INSTDIR}/lib" distclean 40 44 45 + # Build shared object version (only used for non-Kit loading) 46 + ./configure --enable-shared --prefix="${INSTDIR}" --exec-prefix="${INSTDIR}" --with-tcl="${TCLCONFIGDIR}/../generic" ${CONFIGUREEXTRA} 47 + "${MAKE:-make}" tcllibdir="${INSTDIR}/lib" || exit 1 41 48 "${MAKE:-make}" tcllibdir="${INSTDIR}/lib" install 49 + 42 50 ) || exit 1 43 51 44 52 exit 0