wgtmac commented on PR #39729:
URL: https://github.com/apache/arrow/pull/39729#issuecomment-1905209420

   > It seems that `self.options.with_XXX` are resolved by 
https://github.com/conan-io/conan-center-index/pull/19380/files#diff-8bccf85b8738fe9963099a68c25d98d0160fb1ed06657221ea2daebea2c685f0R160-R174
 with `self._with_xxx()`. They aren't used?
   
   It seems that with_boost is not properly set, while cmake thinks it is 
required.
   ```
       def _with_boost(self):
           if self.options.with_boost == "auto":
               if self.options.gandiva:
                   return True
               version = Version(self.version)
               if version.major == "1":
                   if self._parquet() and self.settings.compiler == "gcc" and 
self.settings.compiler.version < Version("4.9"):
                       return True
               elif version.major >= "2":
                   if is_msvc(self):
                       return True
               return False
           else:
               return bool(self.options.with_boost)
   ```


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to