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:
Gwynne Raskind 2008-05-17 06:52:55 +00:00
parent 1b934660ca
commit 2a503f107d
3 changed files with 10 additions and 14 deletions

View file

@ -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 ]]>&#x24;<![CDATA[Id$
dnl &#x24;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,

View file

@ -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[
// ]]>&#x24;<![CDATA[Id$
// &#x24;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[
// ]]>&#x24;<![CDATA[Id$
// &#x24;Id$
// vim:ft=javascript
<![CDATA[
ARG_ENABLE("counter", "for counter support", "no");
if (PHP_COUNTER != "no") {
EXTENSION("counter", "counter.c");

View file

@ -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