Disable source locations in OpenSSL
The newest yocto now gives warnings about TMPDIR being located as a
string in your binary. There is one OpenSSL_free call that seems to
print our source location.
Setting OPENSSL_NO_FILENAMES disables this.
Tested:
bitbake bmcweb no longer prints warning about TMPDIR
cat bmcweb | grep -a host_name_verification.ipp
No longer shows the debug string present.
Signed-off-by: Ed Tanous <edtanous@google.com>
Change-Id: I53bccdfdcd3846952c13863227728182d93dc50c
diff --git a/meson.build b/meson.build
index a88a18e..d30aebb 100644
--- a/meson.build
+++ b/meson.build
@@ -245,6 +245,7 @@
'-DBOOST_EXCEPTION_DISABLE',
'-DBOOST_URL_NO_SOURCE_LOCATION',
'-DJSON_NOEXCEPTION',
+ '-DOPENSSL_NO_FILENAMES',
]),
language : 'cpp')