Browse Source

Fix jack2 bootstrap on windows, regression from before

tags/v1.0
falkTX 4 years ago
parent
commit
9a0223a882
Signed by: falkTX <falktx@falktx.com> GPG Key ID: CDBAA37ABC74FBA0
1 changed files with 3 additions and 3 deletions
  1. +3
    -3
      bootstrap-jack2.sh

+ 3
- 3
bootstrap-jack2.sh View File

@@ -64,7 +64,7 @@ function build_custom_db() {
extraconfrules+=" --enable-posixmutexes"
fi
if [ "${WIN32}" -eq 1 ]; then
extraconfrules+="--enable-mingw"
extraconfrules+=" --enable-mingw"
fi

_prebuild "${name}" "${pkgdir}"
@@ -138,7 +138,7 @@ if [ "${WIN32}" -eq 1 ]; then
remove_file portaudio19 "${PORTAUDIO_VERSION}" "src/hostapi/wasapi/mingw-include/rpcsal.h"
remove_file portaudio19 "${PORTAUDIO_VERSION}" "src/hostapi/wasapi/mingw-include/sal.h"
remove_file portaudio19 "${PORTAUDIO_VERSION}" "src/hostapi/wasapi/mingw-include/structuredquery.h"
build_autoconf portaudio19 "${PORTAUDIO_VERSION}" "--enable-cxx --with-asiodir='${ASIO_DIR}' --with-winapi=asio,directx,wasapi,wdmks,wmme"
build_autoconf portaudio19 "${PORTAUDIO_VERSION}" "--enable-cxx --with-asiodir=${ASIO_DIR} --with-winapi=asio,directx,wasapi,wdmks,wmme"
install_file portaudio19 "${PORTAUDIO_VERSION}" "include/pa_asio.h" "include"
fi

@@ -163,7 +163,7 @@ if [ "${WIN64}" -eq 1 ]; then
source setup/functions.sh

copy_download tre tre-x32 "${TRE_VERSION}"
build_autoconf tre-x32 "${TRE_VERSION}" "--disable-nls --libdir='${PAWPAW_PREFIX}/lib32'"
build_autoconf tre-x32 "${TRE_VERSION}" "--disable-nls --libdir=${PAWPAW_PREFIX}/lib32"

if [ ! -e "${PAWPAW_PREFIX}/lib/libtre32.a" ]; then
ln -s "${PAWPAW_PREFIX}/lib32/libtre.a" "${PAWPAW_PREFIX}/lib/libtre32.a"


Loading…
Cancel
Save