mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-16 00:48:54 +00:00
fix Id substitutions for now, needs to be looked into more later
git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@259857 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
parent
1b934660ca
commit
2a503f107d
3 changed files with 10 additions and 14 deletions
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="ISO-8859-1"?>
|
||||
<!-- $Revision: 1.4 $ -->
|
||||
<!-- $Revision: 1.5 $ -->
|
||||
<sect1 xml:id="internals2.buildsys.configunix" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<title>Talking to the UNIX build system: config.m4</title>
|
||||
<para>
|
||||
|
@ -26,10 +26,9 @@
|
|||
<example xml:id="internals2.buildsys.configunix.sample-config">
|
||||
<title>An example config.m4 file</title>
|
||||
<programlisting role="autoconf">
|
||||
<![CDATA[
|
||||
dnl ]]>$<![CDATA[Id$
|
||||
dnl $Id$
|
||||
dnl config.m4 for extension example
|
||||
|
||||
<![CDATA[
|
||||
PHP_ARG_WITH(example, for example support,
|
||||
[ --with-example[=FILE] Include example support. File is the optional path to example-config])
|
||||
PHP_ARG_ENABLE(example-debug, whether to enable debugging support in example,
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="ISO-8859-1"?>
|
||||
<!-- $Revision: 1.4 $ -->
|
||||
<!-- $Revision: 1.5 $ -->
|
||||
<sect1 xml:id="internals2.buildsys.configwin" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<title>Talking to the Windows build system: config.w32</title>
|
||||
<para>
|
||||
|
@ -15,10 +15,9 @@
|
|||
<example xml:id="internals2.buildsys.configwin.sample-config">
|
||||
<title>An example config.w32 file</title>
|
||||
<programlisting role="javascript">
|
||||
<![CDATA[
|
||||
// ]]>$<![CDATA[Id$
|
||||
// $Id$
|
||||
// vim:ft=javascript
|
||||
|
||||
<![CDATA[
|
||||
ARG_WITH("example", "for example support", "no");
|
||||
ARG_ENABLE("example-debug", "for debugging support in example", "no")
|
||||
ARG_WITH("example-extra", "for extra functionality in example", "no")
|
||||
|
@ -61,10 +60,9 @@ if (PHP_EXAMPLE != "no") {
|
|||
<example xml:id="internals2.buildsys.configwin.counter.configwin">
|
||||
<title>counter's config.w32 file</title>
|
||||
<programlisting role="autoconf">
|
||||
<![CDATA[
|
||||
// ]]>$<![CDATA[Id$
|
||||
// $Id$
|
||||
// vim:ft=javascript
|
||||
|
||||
<![CDATA[
|
||||
ARG_ENABLE("counter", "for counter support", "no");
|
||||
if (PHP_COUNTER != "no") {
|
||||
EXTENSION("counter", "counter.c");
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="ISO-8859-1"?>
|
||||
<!-- $Revision: 1.3 $ -->
|
||||
<!-- $Revision: 1.4 $ -->
|
||||
<sect1 xml:id="internals2.buildsys.skeleton" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<title>The ext_skel script</title>
|
||||
<para>
|
||||
|
@ -28,8 +28,7 @@ php-5.2.2/ext$ ./ext_skel
|
|||
(not yet implemented)
|
||||
--no-help don't try to be nice and create comments in the code
|
||||
and helper functions to test if the module compiled
|
||||
]]>
|
||||
</screen>
|
||||
]]></screen>
|
||||
Generally, when developing a new extension the only parameters you will be
|
||||
interested in are <literal>--extname</literal> and
|
||||
<literal>--no-help</literal>. Unless you are already experienced with the
|
||||
|
|
Loading…
Reference in a new issue