Skip to content

Commit 4c6b7a3

Browse files
authored
fix libde265 on ancient debian OS (#1064)
2 parents 295df19 + 5404926 commit 4c6b7a3

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

src/SPC/builder/unix/library/libde265.php

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,10 @@ trait libde265
1111
protected function build(): void
1212
{
1313
UnixCMakeExecutor::create($this)
14-
->addConfigureArgs('-DENABLE_SDL=OFF')
14+
->addConfigureArgs(
15+
'-DENABLE_SDL=OFF',
16+
'-DENABLE_DECODER=OFF'
17+
)
1518
->build();
1619
$this->patchPkgconfPrefix(['libde265.pc']);
1720
}

src/globals/test-extensions.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@
6262
};
6363

6464
// If you want to test lib-suggests for all extensions and libraries, set it to true.
65-
$with_suggested_libs = false;
65+
$with_suggested_libs = true;
6666

6767
// If you want to test extra libs for extensions, add them below (comma separated, example `libwebp,libavif`). Unnecessary, when $with_suggested_libs is true.
6868
$with_libs = match (PHP_OS_FAMILY) {

0 commit comments

Comments
 (0)