Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

(#14605) boost: Add configuration parameters #14606

Closed
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Eliminate syslog option on Windows completely
  • Loading branch information
miklelappo committed Dec 6, 2022
commit 0cc4e421d0532f8cc092e9883a7879f788717594
3 changes: 2 additions & 1 deletion recipes/boost/all/conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -290,9 +290,10 @@ def config_options(self):
if f"without_{opt_name}" not in self.options:
raise ConanException(f"{self._dependency_filename} has the configure options {opt_name} which is not available in conanfile.py")

# stacktrace_backtrace not supported on Windows
# stacktrace_backtrace and syslog switch are not supported on Windows
if self.settings.os == "Windows":
del self.options.with_stacktrace_backtrace
del self.options.log_without_syslog

# nowide requires a c++11-able compiler + movable std::fstream: change default to not build on compiler with too old default c++ standard or too low compiler.cppstd
# json requires a c++11-able compiler: change default to not build on compiler with too old default c++ standard or too low compiler.cppstd
Expand Down