<div dir="ltr"><div class="gmail_quote"><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><div dir="ltr"><div class="gmail_quote"><div>Now to figure out why macdeployqt is not copying over libjpeg.9.dylib...<br></div></div></div></blockquote><div><br></div><div>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.</div><div><br></div><div>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:</div><div><br></div><div><p class="gmail-p1" style="margin:0px;font-variant-numeric:normal;font-variant-east-asian:normal;font-stretch:normal;font-size:12px;line-height:normal;font-family:Monaco;color:rgb(242,242,242);background-color:rgba(0,0,0,0.85)"><span class="gmail-s1" style="font-variant-ligatures:no-common-ligatures">install_name_tool -change /opt/local/lib/libjpeg.9.dylib "@executable_path/../Frameworks/libjpeg.9.dylib" /Applications/Mythfrontend.app/Contents/Frameworks/QtWebKit.framework/QtWebKit</span></p><p class="gmail-p1" style="margin:0px;font-variant-numeric:normal;font-variant-east-asian:normal;font-stretch:normal;font-size:12px;line-height:normal;font-family:Monaco;color:rgb(242,242,242);background-color:rgba(0,0,0,0.85)"><span class="gmail-s1" style="font-variant-ligatures:no-common-ligatures"></span></p><div></div><p></p><div><br></div></div></div></div>