diff options
author | Emil Velikov <[email protected]> | 2018-06-28 15:06:09 +0100 |
---|---|---|
committer | Emil Velikov <[email protected]> | 2018-08-07 17:23:17 +0100 |
commit | 6b8657aff0adb9952aa3178d3b332de19d354561 (patch) | |
tree | 74097522bd75102bf03e4d99b0ef474ab04a4cb8 /src/egl | |
parent | 2f1d9e6cb842e3cff8ae7b73f669ea8d6c411ac8 (diff) |
autoconf: stop exporting internal wayland details
With version v1.15 the "code" option was deprecated in favour of
"private-code" or "public-code".
Before the interface symbol generated was exported (which is a bad idea
since it's internal implementation detail) and others may misuse it.
That was the case with libva approx. 1 year ago. Since then libva was
fixed, so we can finally hide it by using "private-code"
Inspired by similar xserver patch by Adam Jackson.
Signed-off-by: Emil Velikov <[email protected]>
Reviewed-by: Dylan Baker <[email protected]>
Reviewed-by: Eric Engestrom <[email protected]>
Diffstat (limited to 'src/egl')
-rw-r--r-- | src/egl/Makefile.am | 2 | ||||
-rw-r--r-- | src/egl/wayland/wayland-drm/Makefile.am | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/egl/Makefile.am b/src/egl/Makefile.am index b43805d991a..d16a2b86177 100644 --- a/src/egl/Makefile.am +++ b/src/egl/Makefile.am @@ -72,7 +72,7 @@ WL_DMABUF_XML = $(WAYLAND_PROTOCOLS_DATADIR)/unstable/linux-dmabuf/linux-dmabuf- drivers/dri2/linux-dmabuf-unstable-v1-protocol.c: $(WL_DMABUF_XML) $(MKDIR_GEN) - $(AM_V_GEN)$(WAYLAND_SCANNER) code $< $@ + $(AM_V_GEN)$(WAYLAND_SCANNER) $(SCANNER_ARG) $< $@ drivers/dri2/linux-dmabuf-unstable-v1-client-protocol.h: $(WL_DMABUF_XML) $(MKDIR_GEN) diff --git a/src/egl/wayland/wayland-drm/Makefile.am b/src/egl/wayland/wayland-drm/Makefile.am index 0404c79e7fa..40174c6acdd 100644 --- a/src/egl/wayland/wayland-drm/Makefile.am +++ b/src/egl/wayland/wayland-drm/Makefile.am @@ -28,7 +28,7 @@ CLEANFILES = \ wayland-drm-server-protocol.h %-protocol.c : %.xml - $(AM_V_GEN)$(WAYLAND_SCANNER) code $< $@ + $(AM_V_GEN)$(WAYLAND_SCANNER) $(SCANNER_ARG) $< $@ %-server-protocol.h : %.xml $(AM_V_GEN)$(WAYLAND_SCANNER) server-header $< $@ |