From c7a91844deb0232dd398a87090a556bcc5069eec Mon Sep 17 00:00:00 2001 From: Eric Anholt Date: Tue, 13 May 2014 12:30:48 -0700 Subject: [PATCH] Don't forget to install the wgl headers. Fixes #26 --- include/epoxy/Makefile.am | 5 +++++ src/Makefile.am | 1 + 2 files changed, 6 insertions(+) diff --git a/include/epoxy/Makefile.am b/include/epoxy/Makefile.am index 8ada489..b5b94a6 100644 --- a/include/epoxy/Makefile.am +++ b/include/epoxy/Makefile.am @@ -25,6 +25,7 @@ epoxyinclude_HEADERS = \ gl.h \ $(EGL_INCLUDES) \ $(GLX_INCLUDES) \ + $(WGL_INCLUDES) \ $() if BUILD_EGL @@ -34,3 +35,7 @@ endif if BUILD_GLX GLX_INCLUDES = glx.h endif + +if BUILD_WGL +WGL_INCLUDES = wgl.h +endif diff --git a/src/Makefile.am b/src/Makefile.am index 1ca0d68..8e20cd6 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -37,6 +37,7 @@ epoxyinclude_DATA = \ $(GENERATED_GL_INCLUDES) \ $(INSTALL_GLX_INCLUDES) \ $(INSTALL_EGL_INCLUDES) \ + $(INSTALL_WGL_INCLUDES) \ $() if BUILD_EGL