configure: rename remaining HAVE_EGL_PLATFORM_* guards
Analogous to others earlier, these will be used to control the platform for more than the EGL driver. Cc: <mesa-stable@lists.freedesktop.org> Signed-off-by: Emil Velikov <emil.velikov@collabora.com> Reviewed-by: Eric Engestrom <eric@engestrom.ch>
This commit is contained in:

committed by
Emil Velikov

parent
3208fd2e46
commit
27737e7e84
@@ -1721,9 +1721,9 @@ done
|
|||||||
|
|
||||||
AM_CONDITIONAL(HAVE_PLATFORM_X11, echo "$egl_platforms" | grep -q 'x11')
|
AM_CONDITIONAL(HAVE_PLATFORM_X11, echo "$egl_platforms" | grep -q 'x11')
|
||||||
AM_CONDITIONAL(HAVE_PLATFORM_WAYLAND, echo "$egl_platforms" | grep -q 'wayland')
|
AM_CONDITIONAL(HAVE_PLATFORM_WAYLAND, echo "$egl_platforms" | grep -q 'wayland')
|
||||||
AM_CONDITIONAL(HAVE_EGL_PLATFORM_DRM, echo "$egl_platforms" | grep -q 'drm')
|
AM_CONDITIONAL(HAVE_PLATFORM_DRM, echo "$egl_platforms" | grep -q 'drm')
|
||||||
AM_CONDITIONAL(HAVE_EGL_PLATFORM_SURFACELESS, echo "$egl_platforms" | grep -q 'surfaceless')
|
AM_CONDITIONAL(HAVE_PLATFORM_SURFACELESS, echo "$egl_platforms" | grep -q 'surfaceless')
|
||||||
AM_CONDITIONAL(HAVE_EGL_PLATFORM_ANDROID, echo "$egl_platforms" | grep -q 'android')
|
AM_CONDITIONAL(HAVE_PLATFORM_ANDROID, echo "$egl_platforms" | grep -q 'android')
|
||||||
|
|
||||||
dnl
|
dnl
|
||||||
dnl More DRI setup
|
dnl More DRI setup
|
||||||
|
@@ -70,18 +70,18 @@ libEGL_common_la_LIBADD += $(top_builddir)/src/egl/wayland/wayland-drm/libwaylan
|
|||||||
dri2_backend_FILES += drivers/dri2/platform_wayland.c
|
dri2_backend_FILES += drivers/dri2/platform_wayland.c
|
||||||
endif
|
endif
|
||||||
|
|
||||||
if HAVE_EGL_PLATFORM_DRM
|
if HAVE_PLATFORM_DRM
|
||||||
AM_CFLAGS += -DHAVE_DRM_PLATFORM
|
AM_CFLAGS += -DHAVE_DRM_PLATFORM
|
||||||
libEGL_common_la_LIBADD += $(top_builddir)/src/gbm/libgbm.la
|
libEGL_common_la_LIBADD += $(top_builddir)/src/gbm/libgbm.la
|
||||||
dri2_backend_FILES += drivers/dri2/platform_drm.c
|
dri2_backend_FILES += drivers/dri2/platform_drm.c
|
||||||
endif
|
endif
|
||||||
|
|
||||||
if HAVE_EGL_PLATFORM_SURFACELESS
|
if HAVE_PLATFORM_SURFACELESS
|
||||||
AM_CFLAGS += -DHAVE_SURFACELESS_PLATFORM
|
AM_CFLAGS += -DHAVE_SURFACELESS_PLATFORM
|
||||||
dri2_backend_FILES += drivers/dri2/platform_surfaceless.c
|
dri2_backend_FILES += drivers/dri2/platform_surfaceless.c
|
||||||
endif
|
endif
|
||||||
|
|
||||||
if HAVE_EGL_PLATFORM_ANDROID
|
if HAVE_PLATFORM_ANDROID
|
||||||
AM_CFLAGS += -DHAVE_ANDROID_PLATFORM
|
AM_CFLAGS += -DHAVE_ANDROID_PLATFORM
|
||||||
AM_CFLAGS += $(ANDROID_CFLAGS)
|
AM_CFLAGS += $(ANDROID_CFLAGS)
|
||||||
libEGL_common_la_LIBADD += $(ANDROID_LIBS)
|
libEGL_common_la_LIBADD += $(ANDROID_LIBS)
|
||||||
|
Reference in New Issue
Block a user