[mythtv-users] mac build

John Hoyt john.hoyt at gmail.com
Tue Feb 9 00:21:47 UTC 2021


>
> Now to figure out why macdeployqt is not copying over libjpeg.9.dylib...
>

It turns out macports moved libjpeg.9.dylib from /opt/local/lib to
/opt/local/libexec/libjpeg/lib so macdeployqt is skipping libjpeg.9.dylib
since it's a symlink in /opt/local.   Its strangely copying the file into
the app correctly, just not updating QtWebkit to look internally to the app.

Adding a call to install_name_tool to the compile script seems to be
working (I'm testing on a fresh install right now).  At any rate - to fix
your local version (while I recompile) run the following command to fix the
broken internal path:

install_name_tool -change /opt/local/lib/libjpeg.9.dylib
"@executable_path/../Frameworks/libjpeg.9.dylib"
/Applications/Mythfrontend.app/Contents/Frameworks/QtWebKit.framework/QtWebKit
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.mythtv.org/pipermail/mythtv-users/attachments/20210208/8ec3d7f0/attachment.htm>


More information about the mythtv-users mailing list