diff options
author | prigaux <[email protected]> | 2007-03-06 21:15:55 +0000 |
---|---|---|
committer | prigaux <[email protected]> | 2007-03-06 21:15:55 +0000 |
commit | c4a642b4648d486777af91ccc2894355df447089 (patch) | |
tree | 4ff9eee3e39a530cb649d9db43456e0ab3d712a3 /test/BUILDSHARED | |
parent | ff5ed5d2a2009504f1da3cf348689a59a82b27f1 (diff) |
Merge the 5.1 branch into the trunk.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@422 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'test/BUILDSHARED')
-rw-r--r-- | test/BUILDSHARED | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/test/BUILDSHARED b/test/BUILDSHARED index a2f015555..6b33fb90a 100644 --- a/test/BUILDSHARED +++ b/test/BUILDSHARED @@ -1,9 +1,9 @@ -To test the MediaFork dylib on MacOs X issue the following commands: +To test the HandBrake dylib on MacOs X issue the following commands: =================================================================== -cp ../libmediafork/libmediafork.dylib . -gcc -I../libmediafork -L. -lmediafork test.c -o test -arch i386 -arch ppc -install_name_tool -change /usr/local/lib/libmediafork.dylib @executable_path/libmediafork.dylib test +cp ../libhb/libhb.dylib . +gcc -I../libhb -L. -lhb test.c -o test -arch i386 -arch ppc +install_name_tool -change /usr/local/lib/libhb.dylib @executable_path/libhb.dylib test Validate that the test Binary is really using the shared library @@ -11,11 +11,11 @@ otool -L test ------------------------------------------------------------------------ -To test the Mediafork .so on Linux issue the following commands: +To test the HandBrake .so on Linux issue the following commands: ================================================================ -cp ../libmediafork/libmediafork.so . -gcc -I../libmediafork -L. -lmediafork test.c -o test -lz -lpthread +cp ../libhb/libhb.so . +gcc -I../libhb -L. -lhb test.c -o test -lz -lpthread Validate that the test Binary is really using the shared library @@ -23,13 +23,13 @@ ldd test ------------------------------------------------------------------------ -To test the MediaFork .dll on cygwin issue the following commands: +To test the HandBrake .dll on cygwin issue the following commands: ================================================================== -cp ../libmediafork/libmediafork.dll . -gcc -I../libmediafork -L. -lmediafork test.c -o test -lz -lpthread +cp ../libhb/libhb.dll . +gcc -I../libhb -L. -lhb test.c -o test -lz -lpthread -The resulting binary test should depend on the cygwin dll and the mediafork dll. +The resulting binary test should depend on the cygwin dll and the hb dll. I works like that but wasn't tested yet outside of cygwin. |