1
0
mirror of https://github.com/php/doc-ja.git synced 2026-03-23 22:52:11 +01:00
Files
2025-09-09 21:34:07 +09:00

81 lines
2.0 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<!-- $Revision$ -->
<!-- EN-Revision: e8ac70bf549a723cb36465667a6109d9933b8619 Maintainer: iwamot Status: ready -->
<!-- Reviewed: no -->
<chapter xml:id="wkhtmltox.setup" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
&reftitle.setup;
<section xml:id="wkhtmltox.requirements">
&reftitle.required;
<para>
libwkhtmltox のソースとバイナリリリースは <link xlink:href="&url.wkhtmltopdf;">wkhtmltopdf.org</link>
で配布されています。
</para>
<caution>
<para>
Windows ユーザーは <filename>wkhtmltox.dll</filename><envar>PATH</envar>
に追加するさらなる手順を実行する必要があります。
</para>
</caution>
</section>
<section xml:id="wkhtmltox.installation">
&reftitle.install;
<para>
この拡張モジュールのソースコードと Windows 用バイナリは <link xlink:href="&url.git.hub;krakjoe/wkhtmltox">github</link>
でホストされています。
</para>
<para>
ソースコードの取得と拡張モジュールのビルド:
<screen>
<![CDATA[
git clone https://github.com/krakjoe/wkhtmltox
cd wkhtmltox
phpize
./configure --with-wkhtmltox=/path/to/wkhtmltox/installation
make
sudo make install
]]>
</screen>
</para>
<para>
更新の取得と拡張モジュールの再ビルド:
<screen>
<![CDATA[
cd wkhtmltox
phpize --clean
git pull origin master
phpize
./configure --with-wkhtmltox=/path/to/wkhtmltox/installation
make
sudo make install
]]>
</screen>
</para>
</section>
&reference.wkhtmltox.ini;
</chapter>
<!-- Keep this comment at the end of the file
Local variables:
mode: sgml
sgml-omittag:t
sgml-shorttag:t
sgml-minimize-attributes:nil
sgml-always-quote-attributes:t
sgml-indent-step:1
sgml-indent-data:t
indent-tabs-mode:nil
sgml-parent-document:nil
sgml-default-dtd-file:"~/.phpdoc/manual.ced"
sgml-exposed-tags:nil
sgml-local-catalogs:nil
sgml-local-ecat-files:nil
End:
vim600: syn=xml fen fdm=syntax fdl=2 si
vim: et tw=78 syn=sgml
vi: ts=1 sw=1
-->