aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArtem Golubikhin <WPMGPRoSToTeMa@users.noreply.github.com>2017-12-10 04:19:12 +0300
committerRobert Schumacher <roschuma@microsoft.com>2017-12-09 17:19:12 -0800
commitd7b06be393c84273615a7e2526f514ffff0f93bc (patch)
tree73fdd1e01c91ed4793d0c0caa8bc7739e3d0bd90
parent5a8e2d9a8e2c7bef80a59d420a081c04b833095c (diff)
downloadvcpkg-d7b06be393c84273615a7e2526f514ffff0f93bc.tar.gz
vcpkg-d7b06be393c84273615a7e2526f514ffff0f93bc.zip
[speex] Fix release mode .def file. Add missing exports (#2340)
* [speex] Fix release mode .def file. Add missing exports Fixed .def file in release mode (it is bugged after #2293 fix in d5395ac793d1db78ab97ca144d5e89eabf49a735) https://github.com/Microsoft/vcpkg/issues/2293#issuecomment-350449317 Added exports for speex_header_free and speex_mode_list (https://github.com/Microsoft/vcpkg/issues/2292#issuecomment-348773393) * [speex] Fix regression for release mode import library
-rw-r--r--ports/speex/CMakeLists.txt2
-rw-r--r--ports/speex/CONTROL2
2 files changed, 3 insertions, 1 deletions
diff --git a/ports/speex/CMakeLists.txt b/ports/speex/CMakeLists.txt
index c5c651edf..bdce0b3c3 100644
--- a/ports/speex/CMakeLists.txt
+++ b/ports/speex/CMakeLists.txt
@@ -24,6 +24,8 @@ file(WRITE "${CMAKE_CURRENT_BINARY_DIR}/libspeex.def"
"speex_nb_mode\n"
"speex_wb_mode\n"
"speex_uwb_mode\n"
+ "speex_mode_list\n"
+ "speex_header_free\n"
)
set(SRC
diff --git a/ports/speex/CONTROL b/ports/speex/CONTROL
index e66d3445a..6fcda84be 100644
--- a/ports/speex/CONTROL
+++ b/ports/speex/CONTROL
@@ -1,3 +1,3 @@
Source: speex
-Version: 1.2.0-3
+Version: 1.2.0-4
Description: Speex is an Open Source/Free Software patent-free audio compression format designed for speech.