Changes between Initial Version and Version 1 of Ticket #65886, comment 1
- Timestamp:
- Sep 23, 2022, 8:30:15 AM (2 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #65886, comment 1
initial v1 1 1 rbmake doesn't use icu, but it uses libxml2 which does, and it uses `xml2-config --libs`, which causes it to overlink with libxml2's dependencies. It should use `xml2-config --libs --dynamic` to avoid that. 2 2 3 I see it also opportunistically uses libwww if present, and in that case it overlinks to libwww's libraries, and libwww's `libwww-config` doesn't offer a `--dynamic` flag or a pkg-config file to avoid that. Probably simplest to disable rbmake's use of libwww. I'm looking into how to do that now.3 I see it also opportunistically uses libwww if present, and in that case it overlinks to libwww's dependencies, and libwww's `libwww-config` doesn't offer a `--dynamic` flag or a pkg-config file to avoid that. Probably simplest to disable rbmake's use of libwww. I'm looking into how to do that now. 4 4 5 5 I don't see the `bool`-redefinition-related build failure on my Catalina system but I'll see what I can do about that as well. We had successful builds of this port on the buildbot on all systems last time we tried but it's been awhile.