Module: Mesa Branch: master Commit: d1edf6e3962e187a1213dd4064ba3b6fb6c3ea4f URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=d1edf6e3962e187a1213dd4064ba3b6fb6c3ea4f
Author: Jon Turney <[email protected]> Date: Thu Sep 15 16:04:16 2016 +0100 glx/windows: Fix building libwindowsdri when libX11 headers are installed in a non-standard location Signed-off-by: Jon Turney <[email protected]> Reviewed-by: Adam Jackson <[email protected]> --- src/glx/windows/Makefile.am | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/glx/windows/Makefile.am b/src/glx/windows/Makefile.am index f84288b935..f4f8e9664d 100644 --- a/src/glx/windows/Makefile.am +++ b/src/glx/windows/Makefile.am @@ -10,6 +10,9 @@ pkgconfig_DATA = windowsdriproto.pc # library for using the Windows-DRI server extension libwindowsdri_la_SOURCES = xwindowsdri.c xwindowsdri.h +libwindowsdri_la_CFLAGS = \ + $(X11_INCLUDES) + # native rendering GL for windows libwindowsglx_la_SOURCES = \ windowsgl.c \ _______________________________________________ mesa-commit mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/mesa-commit
