We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9282dae commit cf6a752Copy full SHA for cf6a752
recipes/pcapplusplus/cmake/conanfile.py
@@ -50,6 +50,9 @@ def configure(self):
50
self.options.rm_safe("fPIC")
51
52
def validate(self):
53
+ if Version(self.version) == "24.09" and self.options.shared and self.settings.os == "Windows":
54
+ # https://github.com/seladb/PcapPlusPlus/issues/1396
55
+ raise ConanInvalidConfiguration(f"{self.ref} does not support Windows shared builds for now")
56
if self.settings.compiler.cppstd:
57
# popen()/pclose() usage
58
check_min_cppstd(self, self._min_cppstd, gnu_extensions=not is_msvc(self))
0 commit comments