summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorRyan Lortie <desrt@desrt.ca>2014-02-11 13:41:43 -0500
committerLionel Landwerlin <llandwerlin@gmail.com>2014-02-12 09:57:06 +0000
commit339a98fb59e728c11ec448cfbd93d9619b6734b7 (patch)
treecbb9da41027d3bdcc06b1ae49053c8fff1ae0df0 /tests
parent62d19a4b774323399d75494e03fe3d098bca82a5 (diff)
downloadclutter-gst-339a98fb59e728c11ec448cfbd93d9619b6734b7.tar.gz
tests, examples: fix LDFLAGS vs LDADD use
Extra libraries to link belong in LDADD, not LDFLAGS. This fixes the build under jhbuild on FreeBSD. https://bugzilla.gnome.org/show_bug.cgi?id=724189
Diffstat (limited to 'tests')
-rw-r--r--tests/Makefile.am10
1 files changed, 5 insertions, 5 deletions
diff --git a/tests/Makefile.am b/tests/Makefile.am
index 1c62539..bd9e8ac 100644
--- a/tests/Makefile.am
+++ b/tests/Makefile.am
@@ -14,35 +14,35 @@ INCLUDES = -I$(top_srcdir) \
test_alpha_SOURCES = test-alpha.c
test_alpha_CFLAGS = $(CLUTTER_GST_CFLAGS) $(GST_CFLAGS)
-test_alpha_LDFLAGS = \
+test_alpha_LDADD = \
$(CLUTTER_GST_LIBS) \
$(GST_LIBS) \
$(top_builddir)/clutter-gst/libclutter-gst-@CLUTTER_GST_MAJORMINOR@.la
test_rgb_upload_SOURCES = test-rgb-upload.c
test_rgb_upload_CFLAGS = $(CLUTTER_GST_CFLAGS) $(GST_CFLAGS)
-test_rgb_upload_LDFLAGS = \
+test_rgb_upload_LDADD = \
$(CLUTTER_GST_LIBS) \
$(GST_LIBS) \
$(top_builddir)/clutter-gst/libclutter-gst-@CLUTTER_GST_MAJORMINOR@.la
test_start_stop_SOURCES = test-start-stop.c
test_start_stop_CFLAGS = $(CLUTTER_GST_CFLAGS) $(GST_CFLAGS)
-test_start_stop_LDFLAGS = \
+test_start_stop_LDADD = \
$(CLUTTER_GST_LIBS) \
$(GST_LIBS) \
$(top_builddir)/clutter-gst/libclutter-gst-@CLUTTER_GST_MAJORMINOR@.la
test_yuv_upload_SOURCES = test-yuv-upload.c
test_yuv_upload_CFLAGS = $(CLUTTER_GST_CFLAGS) $(GST_CFLAGS)
-test_yuv_upload_LDFLAGS = \
+test_yuv_upload_LDADD = \
$(CLUTTER_GST_LIBS) \
$(GST_LIBS) \
$(top_builddir)/clutter-gst/libclutter-gst-@CLUTTER_GST_MAJORMINOR@.la
test_video_actor_new_unref_loop_SOURCES = test-video-actor-new-unref-loop.c
test_video_actor_new_unref_loop_CFLAGS = $(CLUTTER_GST_CFLAGS) $(GST_CFLAGS)
-test_video_actor_new_unref_loop_LDFLAGS = \
+test_video_actor_new_unref_loop_LDADD = \
$(CLUTTER_GST_LIBS) \
$(GST_LIBS) \
$(top_builddir)/clutter-gst/libclutter-gst-@CLUTTER_GST_MAJORMINOR@.la