mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-17 22:06:41 +00:00
tests/examples/level/Makefile.am: Add -lm to LIBS for pow() function, don't assume one of our dependencies (such as l...
Original commit message from CVS: * tests/examples/level/Makefile.am: Add -lm to LIBS for pow() function, don't assume one of our dependencies (such as libxml-2.0) drags it in automatically (#343603).
This commit is contained in:
parent
b9e4f4bb46
commit
5848e0f55e
2 changed files with 8 additions and 1 deletions
|
@ -1,3 +1,10 @@
|
||||||
|
2006-06-09 Tim-Philipp Müller <tim at centricular dot net>
|
||||||
|
|
||||||
|
* tests/examples/level/Makefile.am:
|
||||||
|
Add -lm to LIBS for pow() function, don't assume one of our
|
||||||
|
dependencies (such as libxml-2.0) drags it in automatically
|
||||||
|
(#343603).
|
||||||
|
|
||||||
2006-06-09 Tim-Philipp Müller <tim at centricular dot net>
|
2006-06-09 Tim-Philipp Müller <tim at centricular dot net>
|
||||||
|
|
||||||
Patch by: Peter Kjellerstedt <pkj at axis dot com>
|
Patch by: Peter Kjellerstedt <pkj at axis dot com>
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
noinst_PROGRAMS = level-example
|
noinst_PROGRAMS = level-example
|
||||||
level_example_CFLAGS = $(GST_CFLAGS)
|
level_example_CFLAGS = $(GST_CFLAGS)
|
||||||
level_example_LDADD = $(GST_LIBS)
|
level_example_LDADD = $(GST_LIBS) -lm
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue