Artifact 610ea73aa0739cdfe9de31f9b966feb3633b07d3:
- File tcl/patchscripts/win32-dllmain.sh — part of check-in [a49ee9121f] at 2011-03-03 05:01:51 on branch trunk — Added support for disabling "visibility=hidden" when building KitDLL (user: rkeene, size: 384) [annotate] [blame] [check-ins using] [more...]
#! /bin/bash if [ "${KITTARGET}" != "kitdll" ]; then exit 0 fi ## DllMain is needed when building KitDLL for filetopatch in win/tclWin32Dll.c win/tclWinInit.c; do echo "Undefining STATIC_BUILD in \"${filetopatch}\"" sed 's@STATIC_BUILD@NEVER_STATIC_BUILD@g' "${filetopatch}" > "${filetopatch}.new" && cat "${filetopatch}.new" > "${filetopatch}" rm -f "${filetopatch}.new" done