Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/dosbox-staging/dosbox-staging.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorshermp <14854761+shermp@users.noreply.github.com>2022-06-04 13:27:01 +0300
committershermp <14854761+shermp@users.noreply.github.com>2022-06-04 13:27:01 +0300
commit84e84fd03343fbff55d77f744e6ff26b377fcd89 (patch)
tree30ab229449a384d716184e0c5d41758f317805ac
parent7f3893374c22490f6129235a8f3b01cf7371dd38 (diff)
Add temp workaround for msvc speexdsp dll namesp/tmp-msvc-speexdsp-fix
-rwxr-xr-xscripts/create-package.sh6
1 files changed, 6 insertions, 0 deletions
diff --git a/scripts/create-package.sh b/scripts/create-package.sh
index 474efd7cc..5ebf9259a 100755
--- a/scripts/create-package.sh
+++ b/scripts/create-package.sh
@@ -168,6 +168,12 @@ pkg_msvc()
cp "${build_dir}"/*.dll "${pkg_dir}/"
cp "src/libs/zmbv/${release_dir}"/*.dll "${pkg_dir}/"
+ # For some reason, vcpkg isn't creating the correct speexdsp dll filename
+ # Fix it here for now as a temporary workaround.
+ if [ -f "${pkg_dir}/speexdsp.dll" ]; then
+ mv "${pkg_dir}/speexdsp.dll" "${pkg_dir}/libspeexdsp.dll"
+ fi
+
# Copy MSVC C++ redistributable files
cp docs/vc_redist.txt "${pkg_dir}/doc/vc_redist.txt"
cp "$VC_REDIST_DIR"/*.dll "${pkg_dir}/"