0

ローカル php サーバーで mcrypt をセットアップする際に問題が発生しています。最初はhomebrewを使おうとしましたが、mcrypt関数を呼び出すと、関数が利用できないとエラーになると言われました。

少しトラブルシューティングを試みたのですが、誤って自作でインストールしたphp以外の場所にmcryptを追加してしまったようで、今はアンインストールできないようで、自作でmcryptをインストールできなくなっているようです。次のエラーが表示されます。

{php-5.3.27 tim$ brew install mcrypt
==> Downloading http://downloads.sourceforge.net/project/mcrypt/Libmcrypt/2.5.8/
Already downloaded: /Library/Caches/Homebrew/mcrypt-2.5.8.tar.gz
==> ./configure --prefix=/usr/local/Cellar/mcrypt/2.5.8 --mandir=/usr/local/Cell
==> make install
Warning: Could not link mcrypt. Unlinking...
Error: The `brew link` step did not complete successfully
The formula built, but is not symlinked into /usr/local
You can try again using `brew link mcrypt'

Possible conflicting files are:
==> Summary
  /usr/local/Cellar/mcrypt/2.5.8: 12 files, 348K, built in 26 seconds}

どんな助けでも素晴らしいでしょう

ありがとう

4

1 に答える 1

-1

./configure の次のコマンドは make です。

そして、次はmake installです。

  1. 。/構成、設定

  2. 作る

  3. インストールする

于 2013-07-25T22:57:31.123 に答える