Skip to content

Commit af73e0c

Browse files
committed
src/meson.build: require eclib >= 20250122
I believe this is required anyway after commit eaef4ae, and regardless is nice to have because it guarantees that we'll have a pkg-config file and can skip the no-pkgconfig fallback.
1 parent b4bdb1d commit af73e0c

File tree

1 file changed

+1
-6
lines changed

1 file changed

+1
-6
lines changed

src/meson.build

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -157,12 +157,7 @@ mtx = cc.find_library(
157157
)
158158
png = dependency(['libpng', 'png', 'png16'], version: '>=1.2')
159159
zlib = dependency('zlib', version: '>=1.2.11')
160-
# We actually want >= 20231212, but the version number is not updated in the pkgconfig
161-
# https://github.com/conda-forge/eclib-feedstock/issues/48
162-
ec = dependency('eclib', version: '>=20231211', required: false, disabler: true)
163-
if not ec.found()
164-
ec = cc.find_library('ec', required: false, disabler: true)
165-
endif
160+
ec = dependency('eclib', version: '>=20250122', required: false, disabler: true)
166161
ecm = cc.find_library('ecm', required: not is_windows, disabler: true)
167162
gmpxx = dependency('gmpxx', required: not is_windows, disabler: true)
168163
fflas = dependency(

0 commit comments

Comments
 (0)