summaryrefslogtreecommitdiffstats
path: root/ext/pango
diff options
context:
space:
mode:
authorThomas Vander Stichele <thomas@apestaart.org>2005-09-23 04:23:00 +0000
committerThomas Vander Stichele <thomas@apestaart.org>2005-09-23 04:23:00 +0000
commit7593b38a57f55c28cdb4b8c3df27a13c6ce55d99 (patch)
tree13d564ed48fa161cc87f9dffaf6efa4152aa3dab /ext/pango
parent50bdf8c4623926eadd834e463357077bba0eec90 (diff)
fix build and use of GST_LIBS
Original commit message from CVS: fix build and use of GST_LIBS
Diffstat (limited to 'ext/pango')
-rw-r--r--ext/pango/Makefile.am9
1 files changed, 4 insertions, 5 deletions
diff --git a/ext/pango/Makefile.am b/ext/pango/Makefile.am
index 2ec7e4ea..55bee7b8 100644
--- a/ext/pango/Makefile.am
+++ b/ext/pango/Makefile.am
@@ -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)