clients/simple-dmabuf-intel: rename to simple-dmabuf-drm
this will allow adding other drm backends later.
Signed-off-by: Varad Gautam <varad.gautam@collabora.com>
Reviewed-by: Daniel Stone <daniels@collabora.com>
diff --git a/Makefile.am b/Makefile.am
index 45df7fe..79bd744 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -623,18 +623,18 @@
weston_simple_egl_LDADD = $(SIMPLE_EGL_CLIENT_LIBS) -lm
endif
-if BUILD_SIMPLE_DMABUF_INTEL_CLIENT
-demo_clients += weston-simple-dmabuf-intel
-weston_simple_dmabuf_intel_SOURCES = clients/simple-dmabuf-intel.c
-nodist_weston_simple_dmabuf_intel_SOURCES = \
+if BUILD_SIMPLE_DMABUF_DRM_CLIENT
+demo_clients += weston-simple-dmabuf-drm
+weston_simple_dmabuf_drm_SOURCES = clients/simple-dmabuf-drm.c
+nodist_weston_simple_dmabuf_drm_SOURCES = \
protocol/xdg-shell-unstable-v6-protocol.c \
protocol/xdg-shell-unstable-v6-client-protocol.h \
protocol/fullscreen-shell-unstable-v1-protocol.c \
protocol/fullscreen-shell-unstable-v1-client-protocol.h \
protocol/linux-dmabuf-unstable-v1-protocol.c \
protocol/linux-dmabuf-unstable-v1-client-protocol.h
-weston_simple_dmabuf_intel_CFLAGS = $(AM_CFLAGS) $(SIMPLE_DMABUF_INTEL_CLIENT_CFLAGS)
-weston_simple_dmabuf_intel_LDADD = $(SIMPLE_DMABUF_INTEL_CLIENT_LIBS) libshared.la
+weston_simple_dmabuf_drm_CFLAGS = $(AM_CFLAGS) $(SIMPLE_DMABUF_DRM_CLIENT_CFLAGS)
+weston_simple_dmabuf_drm_LDADD = $(SIMPLE_DMABUF_DRM_CLIENT_LIBS) libshared.la
BUILT_SOURCES += protocol/linux-dmabuf-unstable-v1-client-protocol.h
endif
diff --git a/clients/simple-dmabuf-intel.c b/clients/simple-dmabuf-drm.c
similarity index 100%
rename from clients/simple-dmabuf-intel.c
rename to clients/simple-dmabuf-drm.c
diff --git a/configure.ac b/configure.ac
index c4f5f21..bb33753 100644
--- a/configure.ac
+++ b/configure.ac
@@ -380,19 +380,19 @@
[egl glesv2 wayland-client wayland-egl wayland-cursor])
fi
-AC_ARG_ENABLE(simple-dmabuf-intel-client,
- AS_HELP_STRING([--disable-simple-dmabuf-intel-client],
- [do not build the simple dmabuf intel client]),,
- enable_simple_dmabuf_intel_client="auto")
-if ! test "x$enable_simple_dmabuf_intel_client" = "xno"; then
- PKG_CHECK_MODULES(SIMPLE_DMABUF_INTEL_CLIENT, [wayland-client libdrm libdrm_intel],
- have_simple_dmabuf_intel_client=yes, have_simple_dmabuf_intel_client=no)
- if test "x$have_simple_dmabuf_intel_client" = "xno" -a "x$enable_simple_dmabuf_intel_client" = "xyes"; then
- AC_MSG_ERROR([Intel dmabuf client explicitly enabled, but libdrm_intel couldn't be found])
+AC_ARG_ENABLE(simple-dmabuf-drm-client,
+ AS_HELP_STRING([--disable-simple-dmabuf-drm-client],
+ [do not build the simple dmabuf drm client]),,
+ enable_simple_dmabuf_drm_client="auto")
+if ! test "x$enable_simple_dmabuf_drm_client" = "xno"; then
+ PKG_CHECK_MODULES(SIMPLE_DMABUF_DRM_CLIENT, [wayland-client libdrm libdrm_intel],
+ have_simple_dmabuf_drm_client=yes, have_simple_dmabuf_drm_client=no)
+ if test "x$have_simple_dmabuf_drm_client" = "xno" -a "x$enable_simple_dmabuf_drm_client" = "xyes"; then
+ AC_MSG_ERROR([DRM dmabuf client explicitly enabled, but libdrm_intel couldn't be found])
fi
- enable_simple_dmabuf_intel_client="$have_simple_dmabuf_intel_client"
+ enable_simple_dmabuf_drm_client="$have_simple_dmabuf_drm_client"
fi
-AM_CONDITIONAL(BUILD_SIMPLE_DMABUF_INTEL_CLIENT, test "x$enable_simple_dmabuf_intel_client" = "xyes")
+AM_CONDITIONAL(BUILD_SIMPLE_DMABUF_DRM_CLIENT, test "x$enable_simple_dmabuf_drm_client" = "xyes")
AC_ARG_ENABLE(simple-dmabuf-v4l-client,
AS_HELP_STRING([--disable-simple-dmabuf-v4l-client],