Add extension rdkafka support

This commit is contained in:
crazywhalecc
2023-11-05 17:09:48 +08:00
parent ac7a236763
commit c0b52fc2d1
7 changed files with 134 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
<?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';
}