Howdy, I’ve been working on getting OpenPHT building locally (I’m trying to troubleshoot an issue with ‘Shared Content’ not showing up in the home screen), but I’ve been running into a pretty extensive series of problems:
- Dependencies missing based on default settings (mysql_client, samba, etc.).
- Broken versions of some dependencies (libssh required a new version in order to properly build)
- A variety of other odds and ends with some configure and Makefile hacking.
At this point, I’ve been able to build the xbmc dependencies and run “make -C tools/darwin/depends/xbmc”, but I’m getting stuck on running “make Xcode_depends”. It’s erroring out when trying to compile xbmc/guilib/GUIListItem.h with an error of:
error: no viable conversion from returned value of type ‘const PropertyMap’ (aka ‘const map<CStdStr, CVariant, CGUIListItem::icompare>’) to function return type ‘const PropertyMap’ (aka ‘const unordered_map<CStdStr, CVariant>’) const PropertyMap& GetAllProperties() const { return m_mapProperties; }
Any ideas on how to troubleshoot this further?