Author: paul
Date: 2007-10-04 20:25:50 +0200 (Thu, 04 Oct 2007)
New Revision: 7972
Log:
r30683@polar: paul | 2007-10-04 13:20:00 -0500
We no longer test builds on OS/2.
OS/2 support is removed in 5.1 and up.
(Kent)
Modified:
trunk/refman-4.1/installing.xml
trunk/refman-5.0/installing-cs.xml
trunk/refman-5.1/installing.xml
trunk/refman-5.1/renamed-nodes.txt
trunk/refman-5.2/installing.xml
Property changes on: trunk
___________________________________________________________________
Name: svk:merge
- 4767c598-dc10-0410-bea0-d01b485662eb:/mysqldoc-local/mysqldoc/trunk:30682
7d8d2c4e-af1d-0410-ab9f-b038ce55645b:/mysqldoc-local/mysqldoc:25316
b5ec3a16-e900-0410-9ad2-d183a3acac99:/mysqldoc-local/mysqldoc/trunk:14218
bf112a9c-6c03-0410-a055-ad865cd57414:/mysqldoc-local/mysqldoc/trunk:20005
+ 4767c598-dc10-0410-bea0-d01b485662eb:/mysqldoc-local/mysqldoc/trunk:30683
7d8d2c4e-af1d-0410-ab9f-b038ce55645b:/mysqldoc-local/mysqldoc:25316
b5ec3a16-e900-0410-9ad2-d183a3acac99:/mysqldoc-local/mysqldoc/trunk:14218
bf112a9c-6c03-0410-a055-ad865cd57414:/mysqldoc-local/mysqldoc/trunk:20005
Modified: trunk/refman-4.1/installing.xml
===================================================================
--- trunk/refman-4.1/installing.xml 2007-10-04 18:25:16 UTC (rev 7971)
+++ trunk/refman-4.1/installing.xml 2007-10-04 18:25:50 UTC (rev 7972)
Changed blocks: 1, Lines Added: 7, Lines Deleted: 3; 687 bytes
@@ -18327,9 +18327,13 @@
<title>OS/2 Notes</title>
- <remark role="todo">
- Cut OS/2 section? [js]
- </remark>
+ <note>
+ <para>
+ MySQL AB no longer tests builds on OS/2. The notes in this
+ section are provided for your information but may not work on
+ your system.
+ </para>
+ </note>
<para>
MySQL uses quite a few open files. Because of this, you should
Modified: trunk/refman-5.0/installing-cs.xml
===================================================================
--- trunk/refman-5.0/installing-cs.xml 2007-10-04 18:25:16 UTC (rev 7971)
+++ trunk/refman-5.0/installing-cs.xml 2007-10-04 18:25:50 UTC (rev 7972)
Changed blocks: 1, Lines Added: 7, Lines Deleted: 3; 711 bytes
@@ -18372,9 +18372,13 @@
<title>OS/2 Notes</title>
&cs-only;
- <remark role="todo">
- [JS] Cut OS/2 section?
- </remark>
+ <note>
+ <para>
+ MySQL AB no longer tests builds on OS/2. The notes in this
+ section are provided for your information but may not work on
+ your system.
+ </para>
+ </note>
<para>
MySQL uses quite a few open files. Because of this, you should
Modified: trunk/refman-5.1/installing.xml
===================================================================
--- trunk/refman-5.1/installing.xml 2007-10-04 18:25:16 UTC (rev 7971)
+++ trunk/refman-5.1/installing.xml 2007-10-04 18:25:50 UTC (rev 7972)
Changed blocks: 1, Lines Added: 0, Lines Deleted: 90; 3303 bytes
@@ -17217,96 +17217,6 @@
</section>
- <section id="os-2">
-
- <title>OS/2 Notes</title>
-
- <remark role="todo">
- Cut OS/2 section? [js]
- </remark>
-
- <para>
- MySQL uses quite a few open files. Because of this, you should
- add something like the following to your
- <filename>CONFIG.SYS</filename> file:
- </para>
-
-<programlisting>
-SET EMXOPT=-c -n -h1024
-</programlisting>
-
- <para>
- If you do not do this, you may encounter the following error:
- </para>
-
-<programlisting>
-File '<replaceable>xxxx</replaceable>' not found (Errcode: 24)
-</programlisting>
-
- <para>
- When using MySQL with OS/2 Warp 3, FixPack 29 or above is
- required. With OS/2 Warp 4, FixPack 4 or above is required. This
- is a requirement of the Pthreads library. MySQL must be
- installed on a partition with a type that supports long
- filenames, such as HPFS, FAT32, and so on.
- </para>
-
- <para>
- The <command>INSTALL.CMD</command> script must be run from
- OS/2's own <command>CMD.EXE</command> and may not work with
- replacement shells such as <command>4OS2.EXE</command>.
- </para>
-
- <para>
- The <filename>scripts/mysql-install-db</filename> script has
- been renamed. It is called <filename>install.cmd</filename> and
- is a REXX script, which sets up the default MySQL security
- settings and creates the WorkPlace Shell icons for MySQL.
- </para>
-
- <para>
- Dynamic module support is compiled in but not fully tested.
- Dynamic modules should be compiled using the Pthreads runtime
- library.
- </para>
-
-<programlisting>
-gcc -Zdll -Zmt -Zcrtdll=pthrdrtl -I../include -I../regex -I.. \
- -o example udf_example.c -L../lib -lmysqlclient udf_example.def
-mv example.dll example.udf
-</programlisting>
-
- <note>
- <para>
- Due to limitations in OS/2, UDF module name stems must not
- exceed eight characters. Modules are stored in the
- <filename>/mysql2/udf</filename> directory; the
- <literal>safe-mysqld.cmd</literal> script puts this directory
- in the <literal>BEGINLIBPATH</literal> environment variable.
- When using UDF modules, specified extensions are ignored---it
- is assumed to be <filename>.udf</filename>. For example, in
- Unix, the shared module might be named
- <filename>example.so</filename> and you would load a function
- from it like this:
- </para>
- </note>
-
-<programlisting>
-mysql> <userinput>CREATE FUNCTION metaphon RETURNS STRING SONAME
'example.so';</userinput>
-</programlisting>
-
- <para>
- In OS/2, the module would be named
- <filename>example.udf</filename>, but you would not specify the
- module extension:
- </para>
-
-<programlisting>
-mysql> <userinput>CREATE FUNCTION metaphon RETURNS STRING SONAME
'example';</userinput>
-</programlisting>
-
- </section>
-
</section>
<section id="environment-variables">
Modified: trunk/refman-5.1/renamed-nodes.txt
===================================================================
--- trunk/refman-5.1/renamed-nodes.txt 2007-10-04 18:25:16 UTC (rev 7971)
+++ trunk/refman-5.1/renamed-nodes.txt 2007-10-04 18:25:50 UTC (rev 7972)
Changed blocks: 1, Lines Added: 1, Lines Deleted: 0; 601 bytes
@@ -308,6 +308,7 @@
optimize-access myodbc-usagenotes-apptips
or-optimizations index-merge-optimization
order-by-optimisation order-by-optimization
+os-2 ../../5.0/en/os-2
other-vendor-column-types other-vendor-data-types
parentheses operator-precedence
partitioning-limitations-disallowed-functions
partitioning-limitations-functions-disallowed
Modified: trunk/refman-5.2/installing.xml
===================================================================
--- trunk/refman-5.2/installing.xml 2007-10-04 18:25:16 UTC (rev 7971)
+++ trunk/refman-5.2/installing.xml 2007-10-04 18:25:50 UTC (rev 7972)
Changed blocks: 1, Lines Added: 0, Lines Deleted: 90; 3303 bytes
@@ -17051,96 +17051,6 @@
</section>
- <section id="os-2">
-
- <title>OS/2 Notes</title>
-
- <remark role="todo">
- Cut OS/2 section? [js]
- </remark>
-
- <para>
- MySQL uses quite a few open files. Because of this, you should
- add something like the following to your
- <filename>CONFIG.SYS</filename> file:
- </para>
-
-<programlisting>
-SET EMXOPT=-c -n -h1024
-</programlisting>
-
- <para>
- If you do not do this, you may encounter the following error:
- </para>
-
-<programlisting>
-File '<replaceable>xxxx</replaceable>' not found (Errcode: 24)
-</programlisting>
-
- <para>
- When using MySQL with OS/2 Warp 3, FixPack 29 or above is
- required. With OS/2 Warp 4, FixPack 4 or above is required. This
- is a requirement of the Pthreads library. MySQL must be
- installed on a partition with a type that supports long
- filenames, such as HPFS, FAT32, and so on.
- </para>
-
- <para>
- The <command>INSTALL.CMD</command> script must be run from
- OS/2's own <command>CMD.EXE</command> and may not work with
- replacement shells such as <command>4OS2.EXE</command>.
- </para>
-
- <para>
- The <filename>scripts/mysql-install-db</filename> script has
- been renamed. It is called <filename>install.cmd</filename> and
- is a REXX script, which sets up the default MySQL security
- settings and creates the WorkPlace Shell icons for MySQL.
- </para>
-
- <para>
- Dynamic module support is compiled in but not fully tested.
- Dynamic modules should be compiled using the Pthreads runtime
- library.
- </para>
-
-<programlisting>
-gcc -Zdll -Zmt -Zcrtdll=pthrdrtl -I../include -I../regex -I.. \
- -o example udf_example.c -L../lib -lmysqlclient udf_example.def
-mv example.dll example.udf
-</programlisting>
-
- <note>
- <para>
- Due to limitations in OS/2, UDF module name stems must not
- exceed eight characters. Modules are stored in the
- <filename>/mysql2/udf</filename> directory; the
- <literal>safe-mysqld.cmd</literal> script puts this directory
- in the <literal>BEGINLIBPATH</literal> environment variable.
- When using UDF modules, specified extensions are ignored---it
- is assumed to be <filename>.udf</filename>. For example, in
- Unix, the shared module might be named
- <filename>example.so</filename> and you would load a function
- from it like this:
- </para>
- </note>
-
-<programlisting>
-mysql> <userinput>CREATE FUNCTION metaphon RETURNS STRING SONAME
'example.so';</userinput>
-</programlisting>
-
- <para>
- In OS/2, the module would be named
- <filename>example.udf</filename>, but you would not specify the
- module extension:
- </para>
-
-<programlisting>
-mysql> <userinput>CREATE FUNCTION metaphon RETURNS STRING SONAME
'example';</userinput>
-</programlisting>
-
- </section>
-
</section>
<section id="environment-variables">
| Thread |
|---|
| • svn commit - mysqldoc@docsrva: r7972 - in trunk: . refman-4.1 refman-5.0 refman-5.1 refman-5.2 | paul | 4 Oct |