mirror of
https://github.com/crazywhalecc/static-php-cli.git
synced 2026-07-05 15:55:39 +08:00
14 lines
295 B
PHP
14 lines
295 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
declare(strict_types=1);
|
||
|
|
|
||
|
|
namespace SPC\builder\linux\library;
|
||
|
|
|
||
|
|
class librdkafka extends LinuxLibraryBase
|
||
|
|
{
|
||
|
|
// TODO: Linux is buggy, see https://github.com/confluentinc/librdkafka/discussions/4495
|
||
|
|
use \SPC\builder\unix\library\librdkafka;
|
||
|
|
|
||
|
|
public const NAME = 'librdkafka';
|
||
|
|
}
|