Log in

View Full Version : Question about MP4V2 compiling on Mac


randyharris
29th April 2010, 19:54
I was able to compile MP4V2 on my Mac and it works great.

Would like to make a bash script for my buddy that uses mp4tags and mp4chaps, but he would never get it compiled on his machine and isn't local so would be difficult to do it remotely in my opinion.

We both have Intel Macs and the same OS, 10.6.3.

Wondering if I might be able to gather up the compiled files on my computer and send them to him? If so, I'm not sure what all I would need to gather and send.

Thanks for your help.

smok3
29th April 2010, 20:38
i'am not an expert, but i think the command to check for shared libs is 'otool -L yourbinary', for example:

otool -L /usr/local/bin/x264
/usr/local/bin/x264:
/usr/lib/libSystem.B.dylib (compatibility version 1.0.0, current version 125.0.0)
/usr/lib/libz.1.dylib (compatibility version 1.0.0, current version 1.2.3)
/usr/lib/libbz2.1.0.dylib (compatibility version 1.0.0, current version 1.0.5)
/usr/lib/libstdc++.6.dylib (compatibility version 7.0.0, current version 7.9.0)

you can (should) probably ask on freenode / #macdev for some better clues.

randyharris
30th April 2010, 00:08
Thanks