Lines Matching refs:s
141 for my $s (sort keys %disable) {
142 if(!$file{$s}) {
143 printf "Present in configure.ac, not used by code: %s\n", $s;
146 if(!$docs{$s}) {
147 printf "Present in configure.ac, not documented in $DOCS: %s\n", $s;
153 for my $s (sort keys %disable_cmake) {
154 if(!$file{$s}) {
155 printf "Present in CMakeLists.txt, not used by code: %s\n", $s;
158 if(!$docs{$s}) {
159 printf "Present in CMakeLists.txt, not documented in $DOCS: %s\n", $s;
165 for my $s (sort keys %disable_cmake) {
166 if(!$disable_cmake_config_h{$s}) {
167 printf "Present in CMakeLists.txt, not propagated via curl_config.h.cmake: %s\n", $s;
173 for my $s (sort keys %file) {
174 if(!$disable{$s}) {
175 printf "Not set by configure: %s (%s)\n", $s, $file{$s};
178 if(!$disable_cmake{$s}) {
179 printf "Not set by CMakeLists.txt: %s (%s)\n", $s, $file{$s};
182 if(!$docs{$s}) {
183 printf "Used in code, not documented in $DOCS: %s\n", $s;
189 for my $s (sort keys %docs) {
190 if(!$disable{$s}) {
191 printf "Documented but not in configure: %s\n", $s;
194 if(!$disable_cmake{$s}) {
195 printf "Documented but not in CMakeLists.txt: %s\n", $s;
198 if(!$file{$s}) {
199 printf "Documented, but not used by code: %s\n", $s;