From: Sebastian Dröge Date: Wed, 30 May 2012 11:41:17 +0000 (+0200) Subject: examples: Fix linking by passing -export-dynamic in the right variable X-Git-Tag: 1.19.3~493^2~2188 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=6a0ec3b14d9d9974ad3af4991939ea52cb86b8ed;p=platform%2Fupstream%2Fgstreamer.git examples: Fix linking by passing -export-dynamic in the right variable --- diff --git a/tests/examples/Makefile.am b/tests/examples/Makefile.am index ddb272d..4e1e904 100644 --- a/tests/examples/Makefile.am +++ b/tests/examples/Makefile.am @@ -17,5 +17,6 @@ noinst_PROGRAMS = \ text_properties \ $(graphical) -AM_CFLAGS = -I$(top_srcdir) $(GST_PBUTILS_CFLAGS) $(GST_CFLAGS) $(GTK_CFLAGS) -export-dynamic +AM_CFLAGS = -I$(top_srcdir) $(GST_PBUTILS_CFLAGS) $(GST_CFLAGS) $(GTK_CFLAGS) +AM_LDFLAGS = -export-dynamic LDADD = $(top_builddir)/ges/libges-@GST_API_VERSION@.la $(GST_PBUTILS_LIBS) $(GST_LIBS) $(GTK_LIBS)