Skip to content

Commit 2a3ec9d

Browse files
committed
build: Lower json-c dependencies
libnvme has no hard requirement on json-c 0.14. It was updated to match to min version for nvme-cli. But nvme-cli has added a workaround, to avoid requiring a newer version of json-c. Let's drop the requirement here too. Signed-off-by: Daniel Wagner <[email protected]>
1 parent e5b7b74 commit 2a3ec9d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

meson.build

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ libuuid = dependency('uuid', required: true)
3838
conf.set('CONFIG_LIBUUID', libuuid.found(), description: 'Is libuuid required?')
3939

4040
# Check for json-c availability
41-
json_c = dependency('json-c', version: '>=0.14', fallback : ['json-c', 'json_c_dep'])
41+
json_c = dependency('json-c', version: '>=0.13', fallback : ['json-c', 'json_c_dep'])
4242
conf.set('CONFIG_JSONC', json_c.found(), description: 'Is json-c required?')
4343

4444
# local (cross-compilable) implementations of ccan configure steps

0 commit comments

Comments
 (0)