mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-05 17:09:48 +00:00
b5f0b7c221
Use foo_LDADD instead of foo_LDFLAGS to specify the libraries to link to. This should make sure arguments are passed to the linker in the right order, and makes LDFLAGS usable again. Based on initial patch by Brian Cameron <brian.cameron@oracle.com> Fixes #615697.
6 lines
174 B
Makefile
6 lines
174 B
Makefile
if HAVE_GTK
|
|
noinst_PROGRAMS = volume
|
|
volume_SOURCES = volume.c
|
|
volume_CFLAGS = $(GST_CFLAGS) $(GTK_CFLAGS) -D_GNU_SOURCE
|
|
volume_LDADD = $(GST_LIBS) $(GTK_LIBS) $(LIBM)
|
|
endif
|