From 31164eb92ba3e173841b3fe117b2c79288740d2d Mon Sep 17 00:00:00 2001 From: Mats Wichmann Date: Wed, 8 Dec 2021 08:45:11 -0700 Subject: Drop the SConf.Foo variants for Configure checks Manpage has documented two forms of calling configure checks for a long time - as a function from the SConf module and as a method of a configure context. The former don't appear to work, so just drop them. Separate commit so it's easy to revert. Signed-off-by: Mats Wichmann --- doc/man/scons.xml | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/doc/man/scons.xml b/doc/man/scons.xml index 1c9d86c..9d9d979 100644 --- a/doc/man/scons.xml +++ b/doc/man/scons.xml @@ -3862,7 +3862,6 @@ or c++. - SConf.CheckHeader(context, header, [include_quotes, language]) context.CheckHeader(header, [include_quotes, language]) Checks if @@ -3895,7 +3894,6 @@ Returns a boolean indicating success or failure. - SConf.CheckCHeader(context, header, [include_quotes]) context.CheckCHeader(header, [include_quotes]) Checks if @@ -3923,7 +3921,6 @@ Returns a boolean indicating success or failure. - SConf.CheckCXXHeader(context, header, [include_quotes]) context.CheckCXXHeader(header, [include_quotes]) Checks if @@ -3951,7 +3948,6 @@ Returns a boolean indicating success or failure. - SConf.CheckFunc(context, function_name, [header, language]) context.CheckFunc(function_name, [header, language]) Checks if the specified @@ -3989,7 +3985,6 @@ an error message on failure. - SConf.CheckLib(context, [library, symbol, header, language, autoadd=True]) context.CheckLib([library, symbol, header, language, autoadd=True]) Checks if @@ -4029,7 +4024,6 @@ Returns a boolean indicating success or failure. - SConf.CheckLibWithHeader(context, library, header, language, [call, autoadd=True]) context.CheckLibWithHeader(library, header, language, [call, autoadd=True]) @@ -4064,7 +4058,6 @@ Returns a boolean indicating success or failure. - SConf.CheckType(context, type_name, [includes, language]) context.CheckType(type_name, [includes, language]) Checks for the existence of a type defined by @@ -4091,7 +4084,6 @@ an error message on failure. - SConf.CheckTypeSize(context, type_name, [header, language, expect]) context.CheckTypeSize(type_name, [header, language, expect]) Checks for the size of a type defined by @@ -4129,7 +4121,6 @@ actually two bytes. - SConf.CheckCC(context) context.CheckCC() Checks whether the C compiler @@ -4150,7 +4141,6 @@ be accepted or rejected by the compiler. - SConf.CheckCXX(context) context.CheckCXX() Checks whether the C++ compiler @@ -4171,7 +4161,6 @@ be accepted or rejected by the compiler. - SConf.CheckSHCC(context) context.CheckSHCC() Checks whether the shared-object C compiler (as defined by the @@ -4194,7 +4183,6 @@ be created. - SConf.CheckSHCXX(context) context.CheckSHCXX() Checks whether the shared-object C++ compiler (as defined by the @@ -4217,7 +4205,6 @@ be created. - SConf.CheckProg(context, prog_name) context.CheckProg(prog_name) Checks if @@ -4230,7 +4217,6 @@ or None on failure. - SConf.CheckDeclaration(context, symbol, [includes, language]) context.CheckDeclaration(symbol, [includes, language]) Checks if the specified -- cgit v0.12