visibility-unhidden.sh at [1de4d8358a]

File tk/patchscripts/visibility-unhidden.sh artifact 05e06e331d part of check-in 1de4d8358a


#! /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