@@ -539,6 +539,7 @@ if result.returncode() == 0
539
539
else
540
540
report_conf_data.set(' CXX_VERSION' , ' unknown' )
541
541
endif
542
+ # The required keyword in cpp.run() is an 1.5.0 feature.
542
543
result = cpp.run(
543
544
fs.read(' compiler-checks/get-cpp-standard.cc' ),
544
545
name : ' Get cpp standard' ,
566
567
endif
567
568
if CRYPTO_DEP.name() == botan.name()
568
569
report_conf_data.set(' CRYPTO_NAME' , ' Botan' )
570
+ report_conf_data.set(' SPACES' , ' ' )
569
571
result = cpp.run(
570
572
fs.read(' compiler-checks/get-botan-version.cc' ),
571
573
name : ' Get Botan version' ,
@@ -582,6 +584,7 @@ if CRYPTO_DEP.name() == botan.name()
582
584
report_conf_data.set(' CRYPTO_VERSION' , version)
583
585
elif CRYPTO_DEP.name() == openssl.name()
584
586
report_conf_data.set(' CRYPTO_NAME' , ' OpenSSL' )
587
+ report_conf_data.set(' SPACES' , ' ' )
585
588
result = cpp.run(
586
589
fs.read(' compiler-checks/get-openssl-version.cc' ),
587
590
name : ' Get OpenSSL version' ,
@@ -727,6 +730,11 @@ if FUZZ_OPT.enabled()
727
730
else
728
731
report_conf_data.set(' FUZZ_ENABLED' , ' disabled' )
729
732
endif
733
+ if valgrind.found()
734
+ report_conf_data.set(' VALGRIND' , valgrind.full_path())
735
+ else
736
+ report_conf_data.set(' VALGRIND' , ' no' )
737
+ endif
730
738
if have_afl
731
739
report_conf_data.set(' HAVE_AFL' , ' yes' )
732
740
else
0 commit comments