Add more warnings
[melted] / mlt++ / README
index 40add02..54c6377 100644 (file)
@@ -15,8 +15,8 @@ USAGE
 
        Use the following definitions in a Makefile to compile and link with mlt++:
 
-               CXXFLAGS=`mlt-config -Wall`
-               LDFLAGS=-lmlt++
+               CXXFLAGS=`pkg-config --cflags mlt-framework` -Wall
+               LDFLAGS=-lmlt++ `pkg-config --libs mlt-framework`
 
        Include files for the classes can either be explicitly included, ie:
 
@@ -76,7 +76,6 @@ CLASS HIERARCHY
                        Frame
                        Service
                                Consumer
-                                       FilteredConsumer [*]
                                Field
                                Filter
                                Multitrack
@@ -85,7 +84,12 @@ CLASS HIERARCHY
                                Tractor
                                Transition
 
-       [*] These classes have no direct equivalent in the C API.
+       An additional set of classes allow apps to behave as, and communicate with,
+       client/server components - these components provide MLT with unique 
+       possibilties for process to process or system to system communications.
+       
+               Miracle
+               Response
 
 SPECIAL CASES
 -------------