Skip to content

Commit 9206abe

Browse files
nehebWill Wray
authored andcommitted
ogg: fix library name on Windows
The def file specifies ogg, not libogg. Name must be matched, otherwise linker errors occur on MSYS2. Signed-off-by: Rosen Penev <[email protected]>
1 parent 2f36897 commit 9206abe

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

releases.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2064,6 +2064,7 @@
20642064
"ogg"
20652065
],
20662066
"versions": [
2067+
"1.3.5-6",
20672068
"1.3.5-5",
20682069
"1.3.5-4",
20692070
"1.3.5-3",

subprojects/packagefiles/ogg/src/meson.build

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ sources = ['bitwise.c', 'framing.c']
33
libogg = library('ogg',
44
sources,
55
include_directories : incdir,
6+
name_prefix: host_machine.system() == 'windows' ? '' : [],
67
vs_module_defs: '../win32/ogg.def',
78
version: lib_version,
89
soversion: host_machine.system() == 'windows' ? '' : lib_soversion,

0 commit comments

Comments
 (0)