mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-06-07 16:08:51 +00:00
build: hard-code an unneeded macro
That macro is required for EGL's dynamic module loading, but since gstreamer-vaapi doesn't creates dynamic modules, it is not required anymore. That code in gst-libs/gst/vaapi/gstvaapidisplay_egl.c should be removed. Signed-off-by: Víctor Manuel Jáquez Leal <victorx.jaquez@intel.com>
This commit is contained in:
parent
ad8d17d53a
commit
616c426032
1 changed files with 4 additions and 5 deletions
|
@ -14,7 +14,6 @@ m4_define([default_glapi], [any])
|
||||||
|
|
||||||
# gstreamer-vaapi library (libtool) version number
|
# gstreamer-vaapi library (libtool) version number
|
||||||
m4_define([gst_vaapi_lt_current], [7])
|
m4_define([gst_vaapi_lt_current], [7])
|
||||||
m4_define([gst_vaapi_lt_current_bias], [7])
|
|
||||||
m4_define([gst_vaapi_lt_revision], [0])
|
m4_define([gst_vaapi_lt_revision], [0])
|
||||||
m4_define([gst_vaapi_lt_age], [0])
|
m4_define([gst_vaapi_lt_age], [0])
|
||||||
|
|
||||||
|
@ -245,10 +244,6 @@ if test "x$enable_egl" = "xyes" -a $HAVE_GSTGL -ne 1; then
|
||||||
enable_egl="no"
|
enable_egl="no"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
GST_VAAPI_MAJOR_VERSION=`expr gst_vaapi_lt_current - gst_vaapi_lt_current_bias`
|
|
||||||
AC_DEFINE_UNQUOTED([GST_VAAPI_MAJOR_VERSION_S], ["$GST_VAAPI_MAJOR_VERSION"],
|
|
||||||
[Defined to the string representation of gstreamer-vaapi major version])
|
|
||||||
|
|
||||||
dnl GST_ALL_LDFLAGS:
|
dnl GST_ALL_LDFLAGS:
|
||||||
dnl LDFLAGS really should only contain flags, not libs - they get added before
|
dnl LDFLAGS really should only contain flags, not libs - they get added before
|
||||||
dnl whatevertarget_LIBS and -L flags here affect the rest of the linking
|
dnl whatevertarget_LIBS and -L flags here affect the rest of the linking
|
||||||
|
@ -881,6 +876,10 @@ AC_DEFINE_UNQUOTED([USE_WAYLAND], [$USE_WAYLAND],
|
||||||
[Defined to 1 if WAYLAND is enabled])
|
[Defined to 1 if WAYLAND is enabled])
|
||||||
AM_CONDITIONAL([USE_WAYLAND], [test $USE_WAYLAND -eq 1])
|
AM_CONDITIONAL([USE_WAYLAND], [test $USE_WAYLAND -eq 1])
|
||||||
|
|
||||||
|
dnl @TODO hack for egl's dynamic module loading. remove it!
|
||||||
|
AC_DEFINE_UNQUOTED([GST_VAAPI_MAJOR_VERSION_S], ["0"],
|
||||||
|
[Defined to the string representation of gstreamer-vaapi major version])
|
||||||
|
|
||||||
AC_CONFIG_FILES([
|
AC_CONFIG_FILES([
|
||||||
Makefile
|
Makefile
|
||||||
docs/Makefile
|
docs/Makefile
|
||||||
|
|
Loading…
Reference in a new issue