]> granicus.if.org Git - handbrake/commitdiff
HandBrakeCLI, url change
authorprigaux <pri@nopapers.org>
Thu, 22 Feb 2007 14:40:25 +0000 (14:40 +0000)
committerprigaux <pri@nopapers.org>
Thu, 22 Feb 2007 14:40:25 +0000 (14:40 +0000)
git-svn-id: svn://svn.handbrake.fr/HandBrake/branches/0.8.0_beta2_5.1@398 b64f7644-9d1e-0410-96f1-a4d463321fa5

test/BUILDSHARED
test/test.c

index a2f015555f15781607544fc8b45fc2ad51f8029d..6b33fb90a6635d90621d530f97b811080f2f34f4 100644 (file)
@@ -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.
 
index 1f3aa6557396fcd1a4701cccc856070b6d18d022..0838ab7687fa249e6b41d482f7b53a3e79f209e3 100644 (file)
@@ -75,7 +75,7 @@ int main( int argc, char ** argv )
     h = hb_init( debug, update );
 
     /* Show version */
-    fprintf( stderr, "HandBrake %s (%d) - http://mediafork.dynalias.com/\n",
+    fprintf( stderr, "HandBrake %s (%d) - http://handbrake.m0k.org/\n",
              hb_get_version( h ), hb_get_build( h ) );
 
     /* Check for update */