mirror of
https://github.com/termux/termux-packages.git
synced 2025-03-14 00:48:42 +00:00
21 lines
1.1 KiB
Diff
21 lines
1.1 KiB
Diff
--- a/src/openscad.cc
|
|
+++ b/src/openscad.cc
|
|
@@ -307,7 +307,7 @@
|
|
}
|
|
|
|
if (exit_if_not_found) {
|
|
- LOG(message_group::None,Location::NONE,"",(boost::join(ColorMap::inst()->colorSchemeNames(), "\n")));
|
|
+ LOG(message_group::None,Location::NONE,"",(boost::algorithm::join(ColorMap::inst()->colorSchemeNames(), "\n")));
|
|
|
|
exit(1);
|
|
} else {
|
|
@@ -964,7 +964,7 @@
|
|
("render", po::value<string>()->implicit_value(""), "for full geometry evaluation when exporting png")
|
|
("preview", po::value<string>()->implicit_value(""), "[=throwntogether] -for ThrownTogether preview png")
|
|
("animate", po::value<unsigned>(), "export N animated frames")
|
|
- ("view", po::value<CommaSeparatedVector>(), ("=view options: " + boost::join(viewOptions.names(), " | ")).c_str())
|
|
+ ("view", po::value<CommaSeparatedVector>(), ("=view options: " + boost::algorithm::join(viewOptions.names(), " | ")).c_str())
|
|
("projection", po::value<string>(), "=(o)rtho or (p)erspective when exporting png")
|
|
("csglimit", po::value<unsigned int>(), "=n -stop rendering at n CSG elements when exporting png")
|
|
("colorscheme", po::value<string>(), ("=colorscheme: " +
|