mirror of
https://github.com/crazywhalecc/static-php-cli.git
synced 2026-03-19 05:14:52 +08:00
add memcache support
This commit is contained in:
parent
778b0eadcd
commit
956c87a657
@ -163,6 +163,17 @@
|
|||||||
"onig"
|
"onig"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
"memcache": {
|
||||||
|
"type": "external",
|
||||||
|
"source": "ext-memcache",
|
||||||
|
"arg-type": "custom",
|
||||||
|
"lib-depends": [
|
||||||
|
"zlib"
|
||||||
|
],
|
||||||
|
"ext-depends": [
|
||||||
|
"session"
|
||||||
|
]
|
||||||
|
},
|
||||||
"mongodb": {
|
"mongodb": {
|
||||||
"type": "external",
|
"type": "external",
|
||||||
"source": "mongodb",
|
"source": "mongodb",
|
||||||
@ -220,13 +231,6 @@
|
|||||||
"postgresql"
|
"postgresql"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"pgsql": {
|
|
||||||
"type": "builtin",
|
|
||||||
"arg-type": "with-prefix",
|
|
||||||
"lib-depends": [
|
|
||||||
"postgresql"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"pdo_sqlite": {
|
"pdo_sqlite": {
|
||||||
"type": "builtin",
|
"type": "builtin",
|
||||||
"arg-type": "with",
|
"arg-type": "with",
|
||||||
@ -238,6 +242,13 @@
|
|||||||
"sqlite"
|
"sqlite"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
"pgsql": {
|
||||||
|
"type": "builtin",
|
||||||
|
"arg-type": "with-prefix",
|
||||||
|
"lib-depends": [
|
||||||
|
"postgresql"
|
||||||
|
]
|
||||||
|
},
|
||||||
"phar": {
|
"phar": {
|
||||||
"type": "builtin",
|
"type": "builtin",
|
||||||
"ext-depends": [
|
"ext-depends": [
|
||||||
|
|||||||
@ -61,6 +61,16 @@
|
|||||||
"path": "LICENSE"
|
"path": "LICENSE"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"ext-memcache": {
|
||||||
|
"type": "url",
|
||||||
|
"url": "https://pecl.php.net/get/memcache",
|
||||||
|
"path": "php-src/ext/memcache",
|
||||||
|
"filename": "memcache.tgz",
|
||||||
|
"license": {
|
||||||
|
"type": "file",
|
||||||
|
"path": "LICENSE"
|
||||||
|
}
|
||||||
|
},
|
||||||
"ext-ssh2": {
|
"ext-ssh2": {
|
||||||
"type": "url",
|
"type": "url",
|
||||||
"url": "https://pecl.php.net/get/ssh2",
|
"url": "https://pecl.php.net/get/ssh2",
|
||||||
|
|||||||
17
src/SPC/builder/extension/memcache.php
Normal file
17
src/SPC/builder/extension/memcache.php
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
declare(strict_types=1);
|
||||||
|
|
||||||
|
namespace SPC\builder\extension;
|
||||||
|
|
||||||
|
use SPC\builder\Extension;
|
||||||
|
use SPC\util\CustomExt;
|
||||||
|
|
||||||
|
#[CustomExt('memcache')]
|
||||||
|
class memcache extends Extension
|
||||||
|
{
|
||||||
|
public function getUnixConfigureArg(): string
|
||||||
|
{
|
||||||
|
return '--enable-memcache --with-zlib-dir=' . BUILD_ROOT_PATH;
|
||||||
|
}
|
||||||
|
}
|
||||||
@ -48,9 +48,33 @@ class SourcePatcher
|
|||||||
file_put_contents(SOURCE_PATH . '/php-src/ext/curl/config.m4', $file1 . "\n" . $files . "\n" . $file2);
|
file_put_contents(SOURCE_PATH . '/php-src/ext/curl/config.m4', $file1 . "\n" . $files . "\n" . $file2);
|
||||||
}
|
}
|
||||||
|
|
||||||
// if ($builder->getExt('pdo_sqlite')) {
|
if ($builder->getExt('memcache')) {
|
||||||
// FileSystem::replaceFile()
|
FileSystem::replaceFile(
|
||||||
// }
|
SOURCE_PATH . '/php-src/ext/memcache/config9.m4',
|
||||||
|
REPLACE_FILE_STR,
|
||||||
|
'if test -d $abs_srcdir/src ; then',
|
||||||
|
'if test -d $abs_srcdir/main ; then'
|
||||||
|
);
|
||||||
|
FileSystem::replaceFile(
|
||||||
|
SOURCE_PATH . '/php-src/ext/memcache/config9.m4',
|
||||||
|
REPLACE_FILE_STR,
|
||||||
|
'export CPPFLAGS="$CPPFLAGS $INCLUDES"',
|
||||||
|
'export CPPFLAGS="$CPPFLAGS $INCLUDES -I$abs_srcdir/main"'
|
||||||
|
);
|
||||||
|
// add for in-tree building
|
||||||
|
file_put_contents(
|
||||||
|
SOURCE_PATH . '/php-src/ext/memcache/php_memcache.h',
|
||||||
|
<<<'EOF'
|
||||||
|
#ifndef PHP_MEMCACHE_H
|
||||||
|
#define PHP_MEMCACHE_H
|
||||||
|
|
||||||
|
extern zend_module_entry memcache_module_entry;
|
||||||
|
#define phpext_memcache_ptr &memcache_module_entry
|
||||||
|
|
||||||
|
#endif
|
||||||
|
EOF
|
||||||
|
);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public static function patchSwow(): bool
|
public static function patchSwow(): bool
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user