Overview
Artifact ID: | 1f8152cad98ce02b8e556c6f9972226ff6f51be9 |
---|---|
Ticket: | f75d036a1431f45fb9ee5863df6168d75b7e2f93
build tk on unix even when no cross-compiler installed |
User & Date: | anonymous on 2016-07-16 13:53:50 |
Changes
- comment changed to:
tk/win/configure now errors if it can't find a cross-compiler, causing kitcreator to give up.<br /><br />--- tk/build.sh<br />+++ tk/build.sh<br />@@ -200,14 +200,14 @@ <br /> fi<br /> fi<br /> <br /> if [ "${STATICTK}" = "1" ]; then<br /> echo "Running: ./configure --disable-shared --disable-symbols --prefix=\"${INSTDIR}\" --libdir=\"${INSTDIR}/lib\" --with-tcl=\"${TCLCONFIGDIR}\" ${CONFIGUREEXTRA}"<br />- ./configure --disable-shared --disable-symbols --prefix="${INSTDIR}" --libdir="${INSTDIR}/lib" --with-tcl="${TCLCONFIGDIR}" ${CONFIGUREEXTRA}<br />+ ./configure --disable-shared --disable-symbols --prefix="${INSTDIR}" --libdir="${INSTDIR}/lib" --with-tcl="${TCLCONFIGDIR}" ${CONFIGUREEXTRA} || continue<br /> else <br /> echo "Running: ./configure --enable-shared --disable-symbols --prefix=\"${INSTDIR}\" --libdir=\"${INSTDIR}/lib\" --with-tcl=\"${TCLCONFIGDIR}\" ${CONFIGUREEXTRA}"<br />- ./configure --enable-shared --disable-symbols --prefix="${INSTDIR}" --libdir="${INSTDIR}/lib" --with-tcl="${TCLCONFIGDIR}" ${CONFIGUREEXTRA}<br />+ ./configure --enable-shared --disable-symbols --prefix="${INSTDIR}" --libdir="${INSTDIR}/lib" --with-tcl="${TCLCONFIGDIR}" ${CONFIGUREEXTRA} || continue<br /> fi<br /> <br /> echo "Running: ${MAKE:-make}"<br /> ${MAKE:-make} || (<br /> # Workaround a bug in Tk on FreeBSD 8.1:
- foundin changed to: "trunk"
- login: "anonymous"
- private_contact changed to: "cb02a4a25e8da92f2790bc307bf01ef24ce6053e"
- severity changed to: "Important"
- status changed to: "Open"
- title changed to:
build tk on unix even when no cross-compiler installed
- type changed to: "Code Defect"