Revert "Add ipmi response buffer size check for all commands"
This reverts commit 88ca532a74375cc99bd979fbb037d07e5ee76cce.
Reason for revert: ipmi::getChannelMaxTransferSize is only using the
default channel and may fail when using a different channel.
Change-Id: Ic080de6f51c05f86807b81dfd3dd38a87fc2dbf5
Signed-off-by: Willy Tu <wltu@google.com>
diff --git a/meson.build b/meson.build
index 21d113c..1c5808d 100644
--- a/meson.build
+++ b/meson.build
@@ -21,11 +21,7 @@
description: 'Phosphor Blob Transfer Interface',
version: meson.project_version())
-cpp = meson.get_compiler('cpp')
-
phosphor_logging_dep = dependency('phosphor-logging')
-ipmid_dep = dependency('libipmid')
-channellayer_dep = cpp.find_library('channellayer', required: true)
blob_manager_pre = declare_dependency(
dependencies: [
@@ -64,8 +60,7 @@
implicit_include_directories: false,
dependencies: [
blob_manager_dep,
- ipmid_dep,
- channellayer_dep,
+ dependency('libipmid'),
],
install: true,
install_dir: get_option('libdir') / 'ipmid-providers')