Skip to content

Commit 60b2aea

Browse files
committed
fix libde265 on ancient debian OS?
1 parent 281b958 commit 60b2aea

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ trait libde265
1111
protected function build(): void
1212
{
1313
UnixCMakeExecutor::create($this)
14+
->appendEnv(['LDFLAGS' => '-lpthread'])
1415
->addConfigureArgs('-DENABLE_SDL=OFF')
1516
->build();
1617
$this->patchPkgconfPrefix(['libde265.pc']);

src/globals/test-extensions.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@
5050

5151
// If you want to test your added extensions and libs, add below (comma separated, example `bcmath,openssl`).
5252
$extensions = match (PHP_OS_FAMILY) {
53-
'Linux', 'Darwin' => 'grpc',
53+
'Linux', 'Darwin' => 'imagick',
5454
'Windows' => 'com_dotnet',
5555
};
5656

@@ -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)