add memcached for macOS

This commit is contained in:
crazywhalecc
2023-07-26 00:08:20 +08:00
committed by Jerry Ma
parent 1c8bbfbbdf
commit 75b85c26dc
6 changed files with 108 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
<?php
declare(strict_types=1);
namespace SPC\builder\linux\library;
use SPC\exception\RuntimeException;
/**
* gmp is a template library class for unix
*/
class libmemcached extends LinuxLibraryBase
{
public const NAME = 'libmemcached';
public function build()
{
throw new RuntimeException('libmemcached is currently not supported on Linux platform');
}
}