diff options
author | Stefan Kost <ensonic@users.sf.net> | 2009-10-16 11:53:38 +0300 |
---|---|---|
committer | Stefan Kost <ensonic@users.sf.net> | 2009-10-16 11:53:38 +0300 |
commit | 6904e46ef2b86f8d05d206b2ba527d2640277877 (patch) | |
tree | 440ae8c501b332a298376d9a91473d7ff200ff80 /gst | |
parent | ea02d865aaeb27e1ea51941fe0fc2a794eb38b8b (diff) |
build: use gst-glib-gen.mak to fix the glib build rules.
The build rules in glib-gen.mak were using pattern rules in a non save way.
Diffstat (limited to 'gst')
-rw-r--r-- | gst/rtpmanager/Makefile.am | 5 | ||||
-rw-r--r-- | gst/udp/Makefile.am | 5 |
2 files changed, 6 insertions, 4 deletions
diff --git a/gst/rtpmanager/Makefile.am b/gst/rtpmanager/Makefile.am index 8080f303..e9f7ed76 100644 --- a/gst/rtpmanager/Makefile.am +++ b/gst/rtpmanager/Makefile.am @@ -1,9 +1,10 @@ plugin_LTLIBRARIES = libgstrtpmanager.la glib_enum_define = GST_RTP_BIN -glib_enum_prefix = gst_rtp_bin +glib_gen_prefix = gst_rtp_bin +glib_gen_basename = gstrtpbin -include $(top_srcdir)/common/glib-gen.mak +include $(top_srcdir)/common/gst-glib-gen.mak built_sources = gstrtpbin-marshal.c built_headers = gstrtpbin-marshal.h diff --git a/gst/udp/Makefile.am b/gst/udp/Makefile.am index 7e895943..d143e436 100644 --- a/gst/udp/Makefile.am +++ b/gst/udp/Makefile.am @@ -3,9 +3,10 @@ plugin_LTLIBRARIES = libgstudp.la # variables used for enum/marshal generation glib_enum_headers = gstudp.h glib_enum_define = GST_UDP -glib_enum_prefix = gst_udp +glib_gen_prefix = gst_udp +glib_gen_basename = gstudp -include $(top_srcdir)/common/glib-gen.mak +include $(top_srcdir)/common/gst-glib-gen.mak built_sources = gstudp-enumtypes.c gstudp-marshal.c built_headers = gstudp-enumtypes.h gstudp-marshal.h |