Skip to content

Commit 221f065

Browse files
committed
cmocka: update to 1.1.8
Signed-off-by: Rosen Penev <[email protected]>
1 parent b24289e commit 221f065

File tree

3 files changed

+9
-7
lines changed

3 files changed

+9
-7
lines changed

releases.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -510,6 +510,7 @@
510510
"cmocka"
511511
],
512512
"versions": [
513+
"1.1.8-1",
513514
"1.1.7-6",
514515
"1.1.7-5",
515516
"1.1.7-4",

subprojects/cmocka.wrap

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
[wrap-file]
2-
directory = cmocka-1.1.7
3-
source_url = https://cmocka.org/files/1.1/cmocka-1.1.7.tar.xz
4-
source_filename = cmocka-1.1.7.tar.xz
5-
source_hash = 810570eb0b8d64804331f82b29ff47c790ce9cd6b163e98d47a4807047ecad82
2+
directory = cmocka-1.1.8
3+
source_url = https://cmocka.org/files/1.1/cmocka-1.1.8.tar.xz
4+
source_filename = cmocka-1.1.8.tar.xz
5+
source_hash = 58435b558766d7f4c729ba163bdf3aec38bed3bc766dab684e3526ed0aa7c780
66
patch_directory = cmocka
77

88
[provide]

subprojects/packagefiles/cmocka/meson.build

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,12 @@
1515
project(
1616
'cmocka',
1717
'c',
18-
version: '1.1.7',
18+
version: '1.1.8',
1919
license: 'Apache-2.0',
2020
meson_version: '>= 0.54.1',
21-
default_options: ['c_std=c99'],
2221
)
2322

24-
lib_version = '0.8.0'
23+
lib_version = '0.8.1'
2524

2625
inc_include = include_directories('include')
2726

@@ -187,6 +186,7 @@ libcmocka = library(
187186
vs_module_defs: 'src/cmocka.def',
188187
soversion: host_machine.system() != 'windows' ? lib_version.split('.')[0] : '',
189188
version: lib_version,
189+
override_options: 'c_std=c99',
190190
dependencies: threads_dep,
191191
install: true,
192192
)
@@ -200,6 +200,7 @@ libcmocka_native = library(
200200
vs_module_defs: 'src/cmocka.def',
201201
soversion: build_machine.system() != 'windows' ? lib_version.split('.')[0] : '',
202202
version: lib_version,
203+
override_options: 'c_std=c99',
203204
dependencies: threads_dep,
204205
install: false, # Cannot install native targets in cross builds
205206
native: true,

0 commit comments

Comments
 (0)