<HTML>
<HEAD>
<TITLE>Re: VSDK 1.12</TITLE>
</HEAD>
<BODY>
<FONT FACE="Verdana, Helvetica, Arial"><SPAN STYLE='font-size:12.0px'>On 10/2/06 5:26 PM, "Hans Gidlöf" <hasse@techniqueprogram.se> wrote:<BR>
<BR>
<FONT COLOR="#FF0000">>>> a few weeks of scratching my head, I founded it.<BR>
>>> <BR>
>>> When I extract it right from Vstudio It dont work!<BR>
>>> <BR>
>>> vStudio extract<BR>
>>> @executable_path/../VComponents/VSDK.framework/Versions/A/VSDK<BR>
>>> <BR>
>>> the right one. but not universal<BR>
>>> @executable_path/../Frameworks/VSDK.framework/Versions/A/VSDK<BR>
>>> <BR>
>>> <BR>
>>> Can you build a version with universal and for frameworks use.<BR>
</FONT><BR>
Steps are:<BR>
<BR>
1) make copy of VSDK.framework you want change.<BR>
e.g. Copy it into new tmp folder.<BR>
<BR>
<BR>
2) run terminal. To see current settings of .dylib type:<BR>
<BR>
--> otool -L pathtofile<BR>
<BR>
<BR>
You can simply drag by mouse the file into terminal window to get its full and correct path.<BR>
<BR>
Press enter, you will see something as:<BR>
<BR>
ruslans-power-mac-g5:~ rz$ otool -L /usr/local/lib/vcomponents/VSDK.framework/Versions/A/VSDK <BR>
/usr/local/lib/vcomponents/VSDK.framework/Versions/A/VSDK:<BR>
/usr/local/lib/vcomponents/VSDK.framework/Versions/A/VSDK (compatibility version 0.0.0, current version 0.0.0)<BR>
/System/Library/Frameworks/Carbon.framework/Versions/A/Carbon (compatibility version 2.0.0, current version 128.0.0)<BR>
/System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime (compatibility version 1.0.0, current version 9.0.0)<BR>
/usr/lib/libz.1.dylib (compatibility version 1.0.0, current version 1.0.0)<BR>
/usr/lib/libSystem.B.dylib (compatibility version 1.0.0, current version 71.1.3)<BR>
<BR>
<BR>
---------------------------------<BR>
3) now since VSDK.framework do not depend on any other dylibs you do simply <BR>
In terminal type:<BR>
<BR>
ruslans-power-mac-g5:~ rz$ install_name_tool -id @executable_path/../Frameworks/VSDK.framework/Versions/A/VSDK pathToVSDK<BR>
<BR>
<BR>
Now if you will check by otool <BR>
You will see what you need.<BR>
<BR>
<BR>
<BR>
-- <BR>
Best regards,<BR>
<BR>
Ruslan Zasukhin<BR>
VP Engineering and New Technology<BR>
Paradigma Software, Inc<BR>
<BR>
Valentina - Joining Worlds of Information <BR>
<a href="http://www.paradigmasoft.com">http://www.paradigmasoft.com</a><BR>
<BR>
[I feel the need: the need for speed]<BR>
</SPAN></FONT>
</BODY>
</HTML>