summaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorSteven Knight <knight@baldmt.com>2003-05-16 17:40:05 (GMT)
committerSteven Knight <knight@baldmt.com>2003-05-16 17:40:05 (GMT)
commit178bb4ca29174ac1913693343f5d1eb1a3c18237 (patch)
tree9304278fee8d8e867662dfbb5276e7827a504297 /doc
parent487877ee4058bf8586c3a44b44202d161ec2441f (diff)
downloadSCons-178bb4ca29174ac1913693343f5d1eb1a3c18237.zip
SCons-178bb4ca29174ac1913693343f5d1eb1a3c18237.tar.gz
SCons-178bb4ca29174ac1913693343f5d1eb1a3c18237.tar.bz2
SConf fixes. (Christoph Wiedemann)
Diffstat (limited to 'doc')
-rw-r--r--doc/man/scons.120
1 files changed, 15 insertions, 5 deletions
diff --git a/doc/man/scons.1 b/doc/man/scons.1
index ec28669..056b31e 100644
--- a/doc/man/scons.1
+++ b/doc/man/scons.1
@@ -3074,18 +3074,28 @@ The following Checks are predefined.
goes by and developers contribute new useful tests.)
.TP
-.RI Configure.CheckCHeader( self ", " header )
+.RI Configure.CheckCHeader( self ", " header ", [" include_quotes ])
Checks if
.I header
-is usable in the C-language.
+is usable in the C-language. The optional argument
+.I include_quotes
+must be
+a two character string, where the first character denotes the opening
+quote and the second character denotes the closing quote (both default
+to \N'34')
Returns 1 on success and 0 on failure.
.TP
-.RI Configure.CheckCXXHeader( self ", " header )
+.RI Configure.CheckCXXHeader( self ", " header ", [" include_quotes ])
Checks if
.I header
-is usable in the C++ language.
-Returns 1 on success and 0 on failure.
+is usable in the C++ language. The optional argument
+.I include_quotes
+must be
+a two character string, where the first character denotes the opening
+quote and the second character denotes the closing quote (both default
+to \N'34')
+Returns 1 on success and 0 on failure.
.TP
.RI Configure.CheckLib( self ", [" library ", " symbol ", " autoadd ])