diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-28 14:29:10 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-28 14:29:10 +0000 |
commit | 2aa4a82499d4becd2284cdb482213d541b8804dd (patch) | |
tree | b80bf8bf13c3766139fbacc530efd0dd9d54394c /browser/config/mozconfigs/win64/common-win64 | |
parent | Initial commit. (diff) | |
download | firefox-2aa4a82499d4becd2284cdb482213d541b8804dd.tar.xz firefox-2aa4a82499d4becd2284cdb482213d541b8804dd.zip |
Adding upstream version 86.0.1.upstream/86.0.1upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'browser/config/mozconfigs/win64/common-win64')
-rw-r--r-- | browser/config/mozconfigs/win64/common-win64 | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/browser/config/mozconfigs/win64/common-win64 b/browser/config/mozconfigs/win64/common-win64 new file mode 100644 index 0000000000..1f8c9c321f --- /dev/null +++ b/browser/config/mozconfigs/win64/common-win64 @@ -0,0 +1,31 @@ +# This file is used by all Win64 builds + +ac_add_options --target=x86_64-pc-mingw32 + +. $topsrcdir/build/win64/mozconfig.vs-latest + +if test `uname -s` = Linux; then + +# Configure expects executables for check_prog, so set the relevant files +# as executable on the first evaluation of the mozconfig where they exist. +if [ -d "${VSPATH}" -a ! -x "${VSPATH}/VC/bin/Hostx64/x64/cl.exe" ]; then + find "${VSPATH}" -type f -name \*.exe -exec chmod +x {} \; +fi +export MAKENSISU="${MOZ_FETCHES_DIR}/nsis-3.01/makensis.exe" +if [ -d "${MAKENSISU%/*}" -a ! -x "${MAKENSISU}" ]; then + chmod +x "${MAKENSISU}" +fi +export UPX="${MOZ_FETCHES_DIR}/upx-3.95-win64/upx.exe" +if [ -f "${UPX}" ]; then + chmod +x "${UPX}" +fi +mk_add_options "export PATH=${VSPATH}/VC/bin/Hostx64/x64:${MOZ_FETCHES_DIR}/nsis-3.01:${PATH}" + +unset VC_PATH + +fi + +pdbstr="${MOZ_FETCHES_DIR}/pdbstr/pdbstr.exe" +if [ -f "${pdbstr}" ]; then + chmod +x "${pdbstr}" +fi |