LoginSignup
1
2

More than 3 years have passed since last update.

.phpenvでPHPインストール時にpgsql・pdo-pgsqlを有効にする方法

Last updated at Posted at 2019-08-05

default_configure_optionsを編集する。

以下の設定ファイルを編集します。

$ vim ~/.phpenv/plugins/php-build/share/php-build/default_configure_options

追加する内容は以下です。

--with-pgsql
--with-pdo-pgsql

この状態でphpをインストールすれば、postgresのエクステンションが有効の状態でインストールされます。

$ php -m
pdo_pgsql
pgsql

参考

1
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
2