Skip to content

Commit 7a1ccd5

Browse files
committed
fix meson build of sirocco interface
1 parent d211a0c commit 7a1ccd5

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

src/sage/libs/meson.build

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
sirocco = cc.find_library('sirocco', required: false, disabler: true)
21
# cannot be found via pkg-config
32
ecl = cc.find_library('ecl', required: false, disabler: true)
43
if not ecl.found() and not is_windows
@@ -65,6 +64,12 @@ else
6564
conf_data.set('SAGE_MAXIMA', maxima_bin.full_path())
6665
endif
6766

67+
sirocco = dependency(
68+
'libsirocco',
69+
version: '>=2.1.0',
70+
required: false,
71+
disabler: true,
72+
)
6873
braiding = dependency(
6974
'libbraiding',
7075
version: '>=1.3.1',

0 commit comments

Comments
 (0)