Skip to content

Commit d6f1de6

Browse files
authored
Fix conan build failures (#379)
1 parent 9dc2143 commit d6f1de6

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

conanfile.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ def configure(self):
3939
# From some experiments it seems that the shared-ness of these packages
4040
# should match that of the SDK recipe. Failure to do so can cause linker
4141
# errors while compiling, or static initialization errors at runtime for modules.
42-
for lib in ["grpc", "protobuf", "abseil"]:
42+
for lib in ["grpc", "protobuf"]:
4343
self.options[lib].shared = True
4444

4545
def requirements(self):
@@ -51,7 +51,6 @@ def requirements(self):
5151
self.requires('protobuf/[>=3.17.1]')
5252

5353
self.requires('xtensor/[>=0.24.3]')
54-
self.requires('abseil/[>=20230125.3]')
5554

5655
def build_requirements(self):
5756
if self.options.offline_proto_generation:
@@ -94,8 +93,6 @@ def package_info(self):
9493
if self.settings.os in ["Linux", "FreeBSD"]:
9594
self.cpp_info.components[component].system_libs = ["pthread"]
9695

97-
self.cpp_info.components["viamapi"].requires.append("abseil::absl_strings")
98-
9996
if self.settings.os in ["Linux", "FreeBSD"]:
10097
self.cpp_info.components["viamsdk"].system_libs.extend(["dl", "rt"])
10198

0 commit comments

Comments
 (0)