diff options
| author | Long Nguyen <nguyen.long.908132@gmail.com> | 2020-12-02 05:13:58 +0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-12-01 14:13:58 -0800 |
| commit | 02f6b897753e7370f09193805a947e928ef4a1ab (patch) | |
| tree | 2d33be71c963f0ee437f80be59ebf90ba1694aa6 /ports/libvpx | |
| parent | 326e8c815666cacd2bd67bd79af6e74011708107 (diff) | |
| download | vcpkg-02f6b897753e7370f09193805a947e928ef4a1ab.tar.gz vcpkg-02f6b897753e7370f09193805a947e928ef4a1ab.zip | |
[many ports] mingw support (#14556)
* [vcpkg_configure_make] Only rename import libs on MSVC
* [x264] Only rename import libs on MSVC
* [x265] Add libc++ and libstdc++ as system libs
* [ffmpeg] mingw support
* [libvpx] Set AS environment variable
* [vcpkg_common_definition] Fix a mistake in the prefix and suffix variables
* [vcpkg_configure_make] Strip leading -l from lib list before joining
* [mp3lame] Use vcpkg_configure_make + mingw support
* [x265] Escape the pluses
* [ffmpeg] Add compiler flags for mingw
* [ffmpeg] Add WINVER define in mf_utils.c
* [ffmpeg] Remove unnecessary patch in 0003-fic-windowsinclude.patch
* [mp3lame] Add missing dollar sign
Co-authored-by: Matthias C. M. Troffaes <matthias.troffaes@gmail.com>
* [x265] Remove static lib when building shared with mingw
* [libogg] Change library name to libogg on mingw
* [libogg] Bump port version
* [x265] Remove -l(std)c++ flag in pkgconfig file
* [vcpkg_configure_make] Try to fix huge diff
* [mp3lame] Add comment on deprecated function lame_init_old
Co-authored-by: Jack·Boos·Yu <47264268+JackBoosY@users.noreply.github.com>
Co-authored-by: Matthias C. M. Troffaes <matthias.troffaes@gmail.com>
Co-authored-by: Jack·Boos·Yu <47264268+JackBoosY@users.noreply.github.com>
Diffstat (limited to 'ports/libvpx')
| -rw-r--r-- | ports/libvpx/CONTROL | 2 | ||||
| -rw-r--r-- | ports/libvpx/portfile.cmake | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/ports/libvpx/CONTROL b/ports/libvpx/CONTROL index 963047270..1b171c91a 100644 --- a/ports/libvpx/CONTROL +++ b/ports/libvpx/CONTROL @@ -1,6 +1,6 @@ Source: libvpx
Version: 1.9.0
-Port-Version: 3
+Port-Version: 4
Homepage: https://github.com/webmproject/libvpx
Description: The reference software implementation for the video coding formats VP8 and VP9.
Supports: !(uwp&arm)
diff --git a/ports/libvpx/portfile.cmake b/ports/libvpx/portfile.cmake index 1ff1d5c41..fb6a161ed 100644 --- a/ports/libvpx/portfile.cmake +++ b/ports/libvpx/portfile.cmake @@ -24,7 +24,7 @@ else() endif() include(${CURRENT_INSTALLED_DIR}/share/yasm-tool-helper/yasm-tool-helper.cmake) -yasm_tool_helper(PREPEND_TO_PATH) +yasm_tool_helper(PREPEND_TO_PATH OUT_VAR ENV{AS}) if(VCPKG_TARGET_IS_WINDOWS AND NOT VCPKG_TARGET_IS_MINGW) |
