diff options
| author | Billy O'Neal <bion@microsoft.com> | 2020-10-14 17:38:40 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-10-14 17:38:40 -0700 |
| commit | bfe983d721a0f2e0cd492f4b5632a952072b7e93 (patch) | |
| tree | 0fd0332ed989d0974ac3d7f89fd44c8f5c3d0897 /ports/portaudio | |
| parent | 23f5251f90a94f91f103fafccc3c366f565634a5 (diff) | |
| download | vcpkg-bfe983d721a0f2e0cd492f4b5632a952072b7e93.tar.gz vcpkg-bfe983d721a0f2e0cd492f4b5632a952072b7e93.zip | |
[chakracore,gamma,libopenmpt,portaudio,usrsctp] Fix baseline for 2020-10-14 (#14054)
* [portaudio] Remove from baseline, fix CRT linkage and mark UWP as unsupported.
portaudio was fixed by https://github.com/microsoft/vcpkg/commit/654adc64b36607aff14f614387eb904d64faec2b
* [chakracore] Remove passing case from baseline and add Supports.
PASSING, REMOVE FROM FAIL LIST: chakracore:arm64-windows (.\scripts\ci.baseline.txt)
* [gamma] Remove from baseline.
PASSING, REMOVE FROM FAIL LIST: gamma:x64-linux (.\scripts\ci.baseline.txt)
This was blocked by portaudio before.
* [usrsctp] Remove baseline
PASSING, REMOVE FROM FAIL LIST: usrsctp:arm-uwp (.\scripts\ci.baseline.txt)
PASSING, REMOVE FROM FAIL LIST: usrsctp:x64-uwp (.\scripts\ci.baseline.txt)
Probably fixed by https://github.com/microsoft/vcpkg/commit/16b68c2f35771c250b354248f11015f9def2a89b
* [libopenmpt] Fix build on recent msvc by backporting deaf2e3837fb08b1a53fd21bb53adbafe0a84e7d
https://github.com/OpenMPT/openmpt/commit/deaf2e3837fb08b1a53fd21bb53adbafe0a84e7d
* [chakracore] Also needs dynamic universe.
Diffstat (limited to 'ports/portaudio')
| -rw-r--r-- | ports/portaudio/CONTROL | 5 | ||||
| -rw-r--r-- | ports/portaudio/portfile.cmake | 2 | ||||
| -rw-r--r-- | ports/portaudio/vcpkg.json | 8 |
3 files changed, 10 insertions, 5 deletions
diff --git a/ports/portaudio/CONTROL b/ports/portaudio/CONTROL deleted file mode 100644 index ac11b5223..000000000 --- a/ports/portaudio/CONTROL +++ /dev/null @@ -1,5 +0,0 @@ -Source: portaudio
-Version: 2020-02-02
-Port-Version: 1
-Homepage: https://app.assembla.com/spaces/portaudio/wiki
-Description: PortAudio Portable Cross-platform Audio I/O API PortAudio is a free, cross-platform, open-source, audio I/O library. It lets you write simple audio programs in 'C' or C++ that will compile and run on many platforms including Windows, Macintosh OS X, and Unix (OSS/ALSA). It is intended to promote the exchange of audio software between developers on different platforms. Many applications use PortAudio for Audio I/O.
diff --git a/ports/portaudio/portfile.cmake b/ports/portaudio/portfile.cmake index 7d9c95d84..35e212212 100644 --- a/ports/portaudio/portfile.cmake +++ b/ports/portaudio/portfile.cmake @@ -1,3 +1,4 @@ +vcpkg_fail_port_install(ON_TARGET "uwp")
vcpkg_from_git(
OUT_SOURCE_PATH SOURCE_PATH
URL https://git.assembla.com/portaudio.git
@@ -23,6 +24,7 @@ vcpkg_configure_cmake( -DPA_LIBNAME_ADD_SUFFIX=OFF
-DPA_BUILD_SHARED=${PA_BUILD_SHARED}
-DPA_BUILD_STATIC=${PA_BUILD_STATIC}
+ -DPA_DLL_LINK_WITH_STATIC_RUNTIME=OFF
OPTIONS_DEBUG
-DPA_ENABLE_DEBUG_OUTPUT:BOOL=ON
)
diff --git a/ports/portaudio/vcpkg.json b/ports/portaudio/vcpkg.json new file mode 100644 index 000000000..1dce28b1b --- /dev/null +++ b/ports/portaudio/vcpkg.json @@ -0,0 +1,8 @@ +{ + "name": "portaudio", + "version-string": "2020-02-02", + "port-version": 2, + "description": "PortAudio Portable Cross-platform Audio I/O API PortAudio is a free, cross-platform, open-source, audio I/O library. It lets you write simple audio programs in 'C' or C++ that will compile and run on many platforms including Windows, Macintosh OS X, and Unix (OSS/ALSA). It is intended to promote the exchange of audio software between developers on different platforms. Many applications use PortAudio for Audio I/O.", + "homepage": "https://app.assembla.com/spaces/portaudio/wiki", + "supports": "!uwp" +} |
