<?php
include_once $_SERVER['DOCUMENT_ROOT'] . '/include/shared-manual.inc';
$TOC = array();
$TOC_DEPRECATED = array();
$PARENTS = array();
include_once dirname(__FILE__) ."/toc/pgsql.setup.inc";
$setup = array (
  'home' => 
  array (
    0 => 'index.php',
    1 => 'PHP Manual',
  ),
  'head' => 
  array (
    0 => 'UTF-8',
    1 => 'ja',
  ),
  'this' => 
  array (
    0 => 'pgsql.installation.php',
    1 => 'インストール手順',
    2 => 'インストール手順',
  ),
  'up' => 
  array (
    0 => 'pgsql.setup.php',
    1 => 'インストール/設定',
  ),
  'prev' => 
  array (
    0 => 'pgsql.requirements.php',
    1 => '要件',
  ),
  'next' => 
  array (
    0 => 'pgsql.configuration.php',
    1 => '実行時設定',
  ),
  'alternatives' => 
  array (
  ),
  'source' => 
  array (
    'lang' => 'ja',
    'path' => 'reference/pgsql/configure.xml',
  ),
  'history' => 
  array (
  ),
);
$setup["toc"] = $TOC;
$setup["toc_deprecated"] = $TOC_DEPRECATED;
$setup["parents"] = $PARENTS;
manual_setup($setup);

contributors($setup);

?>
<div id="pgsql.installation" class="section">
 <h2 class="title">インストール手順</h2>
 <p class="para">
  PostgreSQLサポートを利用可能とするには、PHPコンパイル時に
  <strong class="option configure">--with-pgsql[=DIR]</strong>
  を指定することが必要です。<code class="literal">DIR</code> は
  PostgreSQL のインストールディレクトリで、デフォルトは
  <var class="filename">/usr/local/pgsql</var> です。
  共有オブジェクトモジュールが利用可能な場合、<var class="filename">php.ini</var> の
  <a href="ini.core.php#ini.extension" class="link">extension</a> ディレクティブ
  または <span class="function"><a href="function.dl.php" class="function">dl()</a></span> 関数によりPostgreSQLモジュール
  をロードすることが可能です。
 </p>
</div><?php manual_footer($setup); ?>