diff options
author | Thomas Vander Stichele <thomas@apestaart.org> | 2005-09-23 04:23:00 +0000 |
---|---|---|
committer | Thomas Vander Stichele <thomas@apestaart.org> | 2005-09-23 04:23:00 +0000 |
commit | 7593b38a57f55c28cdb4b8c3df27a13c6ce55d99 (patch) | |
tree | 13d564ed48fa161cc87f9dffaf6efa4152aa3dab /gst/rtp | |
parent | 50bdf8c4623926eadd834e463357077bba0eec90 (diff) |
fix build and use of GST_LIBS
Original commit message from CVS:
fix build and use of GST_LIBS
Diffstat (limited to 'gst/rtp')
-rw-r--r-- | gst/rtp/Makefile.am | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gst/rtp/Makefile.am b/gst/rtp/Makefile.am index 151b3ef1..533842e7 100644 --- a/gst/rtp/Makefile.am +++ b/gst/rtp/Makefile.am @@ -15,10 +15,10 @@ libgstrtp_la_SOURCES = gstrtp.c \ #gstrtpL16enc.c gstrtpL16parse.c gstrtpgsmenc.c gstrtpgsmparse.c -libgstrtp_la_CFLAGS = $(GST_CFLAGS) $(GST_PLUGINS_BASE_CFLAGS) -libgstrtp_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS) -libgstrtp_la_LIBADD = $(GST_BASE_LIBS) $(GST_PLUGINS_BASE_LIBS) \ +libgstrtp_la_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_CFLAGS) +libgstrtp_la_LIBADD = $(GST_PLUGINS_BASE_LIBS) $(GST_BASE_LIBS) \ -lgstrtp-@GST_MAJORMINOR@ +libgstrtp_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS) noinst_HEADERS = gstrtpL16enc.h \ gstrtpL16parse.h \ |