Skip to content

Commit 14752df

Browse files
authored
[ogg_opus_player] libogg_opus_player.so add link to libogg (MixinNetwork#157)
* [ogg_opus_player] linux add link to libogg * [ogg_opus_player] update docs
1 parent 833cda2 commit 14752df

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

packages/ogg_opus_player/CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
## 0.5.1
2+
* [Linux] libogg_opus_player.so add link to libogg
3+
14
## 0.5.0
25
* [Linux] break change: remove libogg and libopus shared library, use system library instead.
36
* [Linux] support aarch64

packages/ogg_opus_player/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: ogg_opus_player
22
description: An ogg opus file player and recorder for flutter.
3-
version: 0.5.0
3+
version: 0.5.1
44
homepage: https://github.com/MixinNetwork/flutter-plugins/tree/main/packages/ogg_opus_player
55

66
environment:

packages/ogg_opus_player/src/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ if (UNIX AND NOT APPLE)
2727
target_link_libraries(ogg_opus_player ${CMAKE_CURRENT_SOURCE_DIR}/libs/linux_amd64/libopusenc.a)
2828
target_link_libraries(ogg_opus_player ${CMAKE_CURRENT_SOURCE_DIR}/libs/linux_amd64/libopusfile.a)
2929
endif()
30-
target_link_libraries(ogg_opus_player -lSDL2 -lopus)
30+
target_link_libraries(ogg_opus_player -lSDL2 -lopus -logg)
3131
elseif (WIN32)
3232
add_library(ogg STATIC IMPORTED)
3333
set_target_properties(ogg PROPERTIES

0 commit comments

Comments
 (0)