Notes for shared libraries and Windows

git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@118185 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
Adam Dickmeiss 2003-02-26 16:39:06 +00:00
parent 48b5d7d8ad
commit 2f07e1a1ed

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- $Revision: 1.5 $ -->
<!-- $Revision: 1.6 $ -->
<section id="yaz.installation">
&reftitle.install;
<para>
@ -26,6 +26,25 @@ make install
</programlisting>
</informalexample>
</para>
<para>
If you are using YAZ as a shared extension, add (or uncomment) the following
line in <filename>php.ini</filename> on Unix:
<screen>
extension=php_yaz.so
</screen>
And for Windows:
<screen>
extension=php_yaz.dll
</screen>
</para>
<para>
On windows, <filename>php_yaz.dll</filename> depend on
<filename>yaz.dll</filename>. You'll find <filename>yaz.dll</filename>
in sub directory <filename>dlls</filename> in the Win32 zip archive.
Copy <filename>yaz.dll</filename> to a directory in your PATH environment
(<filename>c:\winnt\system32</filename> or
<filename>c:\windows\system32</filename>).
</para>
&warn.imaprecodeyaz;