Artifact 05e06e331d8ba79a2ccee0d0ed42018d1eb5ea13:
- File tcl/patchscripts/visibility-unhidden.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: 228) [annotate] [blame] [check-ins using] [more...]
- File tk/patchscripts/visibility-unhidden.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: 228) [annotate] [blame] [check-ins using]
#! /bin/bash if [ "${KITTARGET}" != "kitdll" ]; then exit 0 fi for file in unix/configure; do sed 's@-fvisibility@-__disabled__fvisibility@' "${file}" > "${file}.new" cat "${file}.new" > "${file}" rm -f "${file}.new" done