找不到自动控制。请检查您在 CentOS 中的 autoconf 安装 Xampp

2022-08-30 07:41:47

在 CentOS 的 XAMPP 中用 php 配置 memcahed 时收到另一个错误

#  /opt/lampp/bin/phpize
Configuring for:
PHP Api Version:         20131106
Zend Module Api No:      20131226
Zend Extension Api No:   220131226

找不到自动控制。请检查您的 autoconf 安装和 $PHP_AUTOCONF 环境变量。然后,重新运行此脚本。

如何解决?


答案 1

MAC 用户

您可以使用酿造轻松完成。

brew install autoconf


答案 2

我来到这里寻找使用Alpine linuxdocker的答案,这对我有用(我尝试@Dimitros解决方案,但没有工作):

RUN apk --no-cache add pcre-dev ${PHPIZE_DEPS} \ 
  && pecl install xdebug \
  && docker-php-ext-enable xdebug \
  && apk del pcre-dev ${PHPIZE_DEPS}

推荐