mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-22 17:51:16 +00:00
fix for libtool
Original commit message from CVS: fix for libtool
This commit is contained in:
parent
736c22336a
commit
58529904f6
1 changed files with 2 additions and 2 deletions
|
@ -20,12 +20,12 @@ If you're not familiar with pkg-config to compile and link a small
|
|||
one-file program, pass the --cflags and --libs arguments to pkg-config.
|
||||
For example:
|
||||
<programlisting>
|
||||
$ gcc `pkg-config --cflags --libs gstreamer-&GST_MAJORMINOR;` -o myprog myprog.c
|
||||
$ libtool --mode=link gcc `pkg-config --cflags --libs gstreamer-&GST_MAJORMINOR;` -o myprog myprog.c
|
||||
</programlisting>
|
||||
would be sufficient for a gstreamer-only program.
|
||||
If (for example) your app also used GTK+ 2.0, you could use
|
||||
<programlisting>
|
||||
$ gcc `pkg-config --cflags --libs gstreamer-&GST_MAJORMINOR; gtk+-2.0` -o myprog myprog.c
|
||||
$ libtool --mode=link gcc `pkg-config --cflags --libs gstreamer-&GST_MAJORMINOR; gtk+-2.0` -o myprog myprog.c
|
||||
</programlisting>
|
||||
Those are back-ticks (on the same key with the tilde on US keyboards),
|
||||
not single quotes.
|
||||
|
|
Loading…
Reference in a new issue