<?php
include_once $_SERVER['DOCUMENT_ROOT'] . '/include/shared-manual.inc';
$TOC = array();
$TOC_DEPRECATED = array();
$PARENTS = array();
include_once dirname(__FILE__) ."/toc/intl.setup.inc";
$setup = array (
  'home' => 
  array (
    0 => 'index.php',
    1 => 'PHP Manual',
  ),
  'head' => 
  array (
    0 => 'UTF-8',
    1 => 'de',
  ),
  'this' => 
  array (
    0 => 'intl.installation.php',
    1 => 'Installation',
    2 => 'Installation',
  ),
  'up' => 
  array (
    0 => 'intl.setup.php',
    1 => 'Installation/Konfiguration',
  ),
  'prev' => 
  array (
    0 => 'intl.requirements.php',
    1 => 'Anforderungen',
  ),
  'next' => 
  array (
    0 => 'intl.configuration.php',
    1 => 'Laufzeit-Konfiguration',
  ),
  'alternatives' => 
  array (
  ),
  'source' => 
  array (
    'lang' => 'en',
    'path' => 'reference/intl/configure.xml',
  ),
  'history' => 
  array (
  ),
);
$setup["toc"] = $TOC;
$setup["toc_deprecated"] = $TOC_DEPRECATED;
$setup["parents"] = $PARENTS;
manual_setup($setup);

contributors($setup);

?>
<div id="intl.installation" class="section">
 <h2 class="title">Installation</h2>
 <p class="para">
  <strong class="option configure">--enable-intl</strong> will enable the
  extension while compiling PHP.
 </p>
 <p class="para">
  If your ICU is installed to a non-standard directory then you might want to
  specify its location in
  <strong><code>LD_LIBRARY_PATH</code></strong>
  environment variable so that dynamic linker can find it:
 </p>
 <div class="example-contents screen">$ export LD_LIBRARY_PATH=/opt/icu/lib</div>
 <p class="para">
  Otherwise, if PHP and ICU are installed to their default locations, then the
  additional options to <strong class="command">configure</strong> are not needed.
 </p>
</div><?php manual_footer($setup); ?>