Closed izahn closed 3 years ago
looks reasonable. Does that fix it for you?
Yes, sorry for not following up here. I did
[[ $(uname) = "Darwin" ]] && sed -i '' 's/TARGET_OS_OSX/TARGET_OS_MAC/g' src/utils2.c
in the conda build, and that does work.
OK, I'll make the change from catchorg. Thank you for helping with this.
Dan
Sorry, but we can't do this. It breaks android code, which apparently considers TARGET_OS_MAC to include iOS for some purposes.
OK thanks for the heads up!
I'm working on updating the conda-forge leptionica package over in https://github.com/conda-forge/leptonica-feedstock/pull/25 and I'm getting
(full log available at https://dev.azure.com/conda-forge/feedstock-builds/_build/results?buildId=319549&view=logs&j=58ac6aab-c4bc-5de2-2894-98e408cc8ec9&t=933f325c-924e-533d-4d95-e93b5843ce8b)
It looks like a similar issue was resolved by checking for
TARGET_OS_MAC
instead ofTARGET_OS_OSX
over in https://github.com/catchorg/Catch2/pull/2157, maybe the same thing can be done here?