I like to enable the app ( a XHTML Wysiwyg editor ) http://www.qt-apps.org/content/show....?content=59493
to MAC OSX universal..

The doc http://doc.trolltech.com/4.2/deploym...tml#qt-plugins say
i must relink qtplugin, on app install_name_tool inside the bundle, but if i have plugin jpg & tiff & gif , ... i must relink each qt-plugins to QtGui && QtCore and if i have a mysql + odbc plugin i must relink 5 or moore plugin to QtGui 5x && QtCore 5x, ist this true? or mistake?

Qt Code:
  1. Use install_name_tool to link the plugins to the frameworks in the bundle:
  2.  
  3. install_name_tool -change /path/to/Qt/lib/QtGui.framework/Versions/4.0/QtGui
  4. @executable_path/../Frameworks/QtGui.framework/Versions/4.0/QtGui
  5. plugandpaint.app/Contents/plugins/imageformats/libqjpeg.dylib
  6. install_name_tool -change /path/to/Qt/lib/QtCore.framework/Versions/4.0/QtCore
  7. @executable_path/../Frameworks/QtCore.framework/Versions/4.0/QtCore
  8. plugandpaint.app/Contents/plugins/imageformats/libqjpeg.dylib
To copy to clipboard, switch view to plain text mode 



i use the script ....
http://qxhtml-edit.googlecode.com/sv...dle/bundle1.sh
is this mistake? ....