mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-18 06:16:36 +00:00
build: clean up the dlopen usage
This commit is contained in:
parent
ef3ee8b7bb
commit
fb95a79818
2 changed files with 2 additions and 3 deletions
|
@ -183,8 +183,8 @@ dnl *** checks for libraries ***
|
|||
dnl check for libm, for sin() etc.
|
||||
AC_CHECK_LIB([m], [tan])
|
||||
|
||||
dnl Check to see if dlopen is in default libraries (like Solaris, which
|
||||
dnl has it in libc), or if libdl is needed to get it.
|
||||
dnl Check to see if dlopen/dlsym is in default libraries (like
|
||||
dnl Solaris, which has it in libc), or if libdl is needed to get it.
|
||||
AC_CHECK_FUNC([dlopen], [], [
|
||||
AC_CHECK_LIB([dl], [dlopen], [DLOPEN_LIBS="-ldl"])])
|
||||
AC_SUBST([DLOPEN_LIBS])
|
||||
|
|
|
@ -471,7 +471,6 @@ libgstvaapi_egl_la_LIBADD = \
|
|||
$(GST_BASE_LIBS) \
|
||||
$(GST_VIDEO_LIBS) \
|
||||
$(EGL_LIBS) \
|
||||
$(DLOPEN_LIBS) \
|
||||
$(NULL)
|
||||
|
||||
libgstvaapi_egl_la_LDFLAGS = \
|
||||
|
|
Loading…
Reference in a new issue