@@ -46,10 +46,14 @@ echo "Building Tcl ${TCLVERS}" ( mkdir tcl/build >/dev/null 2>/dev/null cd tcl/build || exit 1 gzip -dc "../src/tcl${TCLVERS}.tar.gz" | tar -xf - + + # DDE and Reg can fail to compile, but we don't care + echo '' > "${TCLPRIVATE}/win/tclWinDde.c" + echo '' > "${TCLPRIVATE}/win/tclWinReg.c" for dir in unix win macosx; do cd "${TCLPRIVATE}/${dir}" || exit 1 echo " Executing: ./configure ${CONFIGUREEXTRA}"