Skip to content

Commit

Permalink
paho-mqtt-c: remove anl library from system libs
Browse files Browse the repository at this point in the history
Remove anl library from default system libraries if on Linux because it is
not available on non-glibc distros like Alpine.
  • Loading branch information
mtudan authored May 7, 2023
1 parent 63b887d commit 9eec16a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion recipes/paho-mqtt-c/all/conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ def package_info(self):
self.cpp_info.components["_paho-mqtt-c"].system_libs.extend(
["wsock32", "uuid", "crypt32", "rpcrt4"])
elif self.settings.os == "Linux":
self.cpp_info.components["_paho-mqtt-c"].system_libs.extend(["anl", "c", "dl", "pthread"])
self.cpp_info.components["_paho-mqtt-c"].system_libs.extend(["c", "dl", "pthread"])
elif self.settings.os == "FreeBSD":
self.cpp_info.components["_paho-mqtt-c"].system_libs.extend(["compat", "pthread"])
elif self.settings.os == "Android":
Expand Down

0 comments on commit 9eec16a

Please sign in to comment.