mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 12:11:13 +00:00
configure.ac: Explicitely link with -ldl if dladdr() is found there. Before it was implicitely linked by the gmodule ...
Original commit message from CVS: * configure.ac: Explicitely link with -ldl if dladdr() is found there. Before it was implicitely linked by the gmodule pkgconfig file but in glib 2.17.0 -ldl has moved from Libs to Libs.private. Fixes bug #536744.
This commit is contained in:
parent
89364b1542
commit
9e6cce35a0
2 changed files with 9 additions and 2 deletions
|
@ -1,3 +1,10 @@
|
|||
2008-06-05 Sebastian Dröge <slomo@circular-chaos.org>
|
||||
|
||||
* configure.ac:
|
||||
Explicitely link with -ldl if dladdr() is found there. Before it was
|
||||
implicitely linked by the gmodule pkgconfig file but in glib 2.17.0
|
||||
-ldl has moved from Libs to Libs.private. Fixes bug #536744.
|
||||
|
||||
2008-06-05 Tim-Philipp Müller <tim.muller at collabora co uk>
|
||||
|
||||
* gst/gsterror.c: (_gst_stream_errors_init):
|
||||
|
|
|
@ -454,8 +454,8 @@ dnl test if we have dladdr(); we use it for debugging; see gst/gstinfo.c
|
|||
save_cflags="$CFLAGS"
|
||||
CFLAGS="$CFLAGS -D_GNU_SOURCE"
|
||||
AC_CHECK_LIB(dl, dladdr,
|
||||
AC_DEFINE(HAVE_DLADDR, 1,
|
||||
[Defined if we have dladdr ()]))
|
||||
AC_DEFINE(HAVE_DLADDR, 1, [Defined if we have dladdr ()])
|
||||
LIBS="$LIBS -ldl")
|
||||
CFLAGS="$save_cflags"
|
||||
|
||||
dnl check for inet_aton()
|
||||
|
|
Loading…
Reference in a new issue