Changeset ae9b76b
- Timestamp:
- Dec 27, 2023, 5:48:10 PM (10 months ago)
- Branches:
- master
- Children:
- df2de24
- Parents:
- ff622fc
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
wscript
rff622fc rae9b76b 449 449 uselib_store = 'SWRESAMPLE', 450 450 mandatory = False) 451 if 'HAVE_SWRESAMPLE' not in ctx.env:452 ctx.check_cfg(package = 'libavresample',453 args = '--cflags --libs libavresample >= 1.0.1',454 uselib_store = 'AVRESAMPLE',455 mandatory = False)456 451 457 452 msg_check = 'Checking for all libav libraries' … … 462 457 elif 'HAVE_AVUTIL' not in ctx.env: 463 458 ctx.msg(msg_check, 'not found (missing avutil)', color = 'YELLOW') 464 elif 'HAVE_SWRESAMPLE' not in ctx.env \ 465 and 'HAVE_AVRESAMPLE' not in ctx.env: 466 resample_missing = 'not found (avresample or swresample required)' 459 elif 'HAVE_SWRESAMPLE' not in ctx.env : 460 resample_missing = 'not found (missing swresample)' 467 461 ctx.msg(msg_check, resample_missing, color = 'YELLOW') 468 462 else: 469 463 ctx.msg(msg_check, 'yes') 470 if 'HAVE_SWRESAMPLE' in ctx.env:471 ctx.define('HAVE_SWRESAMPLE', 1)472 elif 'HAVE_AVRESAMPLE' in ctx.env:473 ctx.define('HAVE_AVRESAMPLE', 1)474 464 ctx.define('HAVE_LIBAV', 1) 475 465
Note: See TracChangeset
for help on using the changeset viewer.