]> git.ipfire.org Git - thirdparty/autoconf.git/commitdiff
Add section to INSTALL about particular systems.
authorBruno Haible <bruno@clisp.org>
Wed, 20 Aug 2008 13:26:30 +0000 (07:26 -0600)
committerEric Blake <ebb9@byu.net>
Wed, 20 Aug 2008 13:26:30 +0000 (07:26 -0600)
* doc/install.texi (Particular systems): New node.
* doc/autoconf.texi: Adjust menus.

Signed-off-by: Eric Blake <ebb9@byu.net>
ChangeLog
doc/autoconf.texi
doc/install.texi

index 1a892f91701041a9e570040175bca5247c964bf3..f15cbf70d4e123e289423965163bd85ed5439ddb 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2008-08-20  Bruno Haible  <bruno@clisp.org>
+
+       Add section to INSTALL about particular systems.
+       * doc/install.texi (Particular systems): New node.
+       * doc/autoconf.texi: Adjust menus.
+
 2008-08-19  Bruno Haible  <bruno@clisp.org>
        and Peter O'Gorman  <peter@pogma.com>
 
index 739bd4759ffdef4c35cced8d15cd1ca629fc35cd..865f25bbaf3e61b15fbd30921cdeb8daaf4a05c0 100644 (file)
@@ -557,6 +557,7 @@ Running @command{configure} Scripts
 * Multiple Architectures::      Compiling for multiple architectures at once
 * Installation Names::          Installing in different directories
 * Optional Features::           Selecting optional features
+* Particular Systems::          Particular systems
 * System Type::                 Specifying the system type
 * Sharing Defaults::            Setting site-wide defaults for @command{configure}
 * Defining Variables::          Specifying the compiler etc.
@@ -18518,6 +18519,7 @@ may use comes with Autoconf.
 * Multiple Architectures::      Compiling for multiple architectures at once
 * Installation Names::          Installing in different directories
 * Optional Features::           Selecting optional features
+* Particular Systems::          Particular systems
 * System Type::                 Specifying the system type
 * Sharing Defaults::            Setting site-wide defaults for @command{configure}
 * Defining Variables::          Specifying the compiler etc.
index 362be5941ed4fc5b9bc7177b2a737e8cc750db1a..070291cf438ac47c68c38335f6b7a2c61c6e3236 100644 (file)
@@ -179,6 +179,36 @@ doesn't, you can use the @command{configure} options
 @option{--x-includes=@var{dir}} and @option{--x-libraries=@var{dir}} to
 specify their locations.
 
+@node Particular Systems
+@section Particular systems
+
+On HP-UX, the default C compiler is not ANSI C compatible.  If GNU CC is
+not installed, it is recommended to use the following options in order to
+use an ANSI C compiler:
+
+@example
+./configure CC="cc -Ae"
+@end example
+
+@noindent
+and if that doesn't work, install pre-built binaries of GCC for HP-UX.
+
+On OSF/1 a.k.a.@: Tru64, some versions of the default C compiler cannot
+parse its @code{<wchar.h>} header file.  The option @option{-nodtk} can be
+used as a workaround.  If GNU CC is not installed, it is therefore
+recommended to try
+
+@example
+./configure CC="cc"
+@end example
+
+@noindent
+and if that doesn't work, try
+
+@example
+./configure CC="cc -nodtk"
+@end example
+
 @node System Type
 @section Specifying the System Type