blob: 6e11de193589a0c71465e00a05be35dd18049f18 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
if [ -z "${VSPATH}" ]; then
VSPATH="$(cd ${MOZ_FETCHES_DIR} && pwd)/vs"
fi
if [ -d "${VSPATH}" ]; then
export WIN32_REDIST_DIR="${VSPATH}/VC/Redist/MSVC/14.29.30133/x86/Microsoft.VC142.CRT"
export WIN_UCRT_REDIST_DIR="${VSPATH}/Windows Kits/10/Redist/10.0.19041.0/ucrt/DLLs/x86"
export WINSYSROOT="${VSPATH}"
fi
ac_add_options --target=i686-pc-windows-msvc
|