(o)
| 2305 | o['variables']['openssl_version'] = get_openssl_version(o) |
| 2306 | |
| 2307 | def configure_lief(o): |
| 2308 | if options.without_lief: |
| 2309 | if options.shared_lief: |
| 2310 | error('--without-lief is incompatible with --shared-lief') |
| 2311 | return |
| 2312 | |
| 2313 | configure_library('lief', o, pkgname='LIEF') |
| 2314 | |
| 2315 | def configure_sqlite(o): |
| 2316 | o['variables']['node_use_sqlite'] = b(not options.without_sqlite) |
no test coverage detected
searching dependent graphs…