mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-23 18:21:04 +00:00
fix build and use of GST_LIBS
Original commit message from CVS: fix build and use of GST_LIBS
This commit is contained in:
parent
7d29a33df8
commit
a716f40cd7
1 changed files with 4 additions and 5 deletions
|
@ -1,4 +1,3 @@
|
|||
|
||||
#PANGO_CFLAGS = -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/freetype2
|
||||
#PANGO_LDFLAGS = -Wl,--export-dynamic -lpangoft2-1.0 -lpango-1.0 -lgobject-2.0 -lgmodule-2.0 -ldl -lglib-2.0
|
||||
|
||||
|
@ -8,10 +7,10 @@ noinst_HEADERS = gsttimeoverlay.h gsttextoverlay.h
|
|||
|
||||
libgsttimeoverlay_la_SOURCES = gsttimeoverlay.c
|
||||
libgsttimeoverlay_la_CFLAGS = $(GST_CFLAGS) $(PANGO_CFLAGS) -I$(top_srcdir)/gst/videofilter
|
||||
libgsttimeoverlay_la_LIBADD =
|
||||
libgsttimeoverlay_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS) $(PANGO_LIBS) -lm
|
||||
libgsttimeoverlay_la_LIBADD = $(GST_LIBS) $(PANGO_LIBS) -lm
|
||||
libgsttimeoverlay_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||
|
||||
libgsttextoverlay_la_SOURCES = gsttextoverlay.c
|
||||
libgsttextoverlay_la_CFLAGS = $(GST_CFLAGS) $(PANGO_CFLAGS)
|
||||
libgsttextoverlay_la_LIBADD =
|
||||
libgsttextoverlay_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS) $(PANGO_LIBS)
|
||||
libgsttextoverlay_la_LIBADD = $(GST_LIBS) $(PANGO_LIBS)
|
||||
libgsttextoverlay_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||
|
|
Loading…
Reference in a new issue