summaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
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 ])