Summary: | glproto pkg-config settings not propagated to src/glx/Makefile | ||
---|---|---|---|
Product: | Mesa | Reporter: | Serge van den Boom <svdb+freedesktop.org> |
Component: | GLX | Assignee: | mesa-dev |
Status: | RESOLVED MOVED | QA Contact: | |
Severity: | normal | ||
Priority: | medium | ||
Version: | 7.10 | ||
Hardware: | All | ||
OS: | All | ||
Whiteboard: | |||
i915 platform: | i915 features: | ||
Attachments: | Fix for glproto pkg-config settings not being propagated to src/glx/Makefile, for Mesa 7.10.3. |
-- GitLab Migration Automatic Message -- This bug has been migrated to freedesktop.org's GitLab instance and has been closed from further activity. You can subscribe and participate further through the new bug through this link to our GitLab instance: https://gitlab.freedesktop.org/mesa/mesa/issues/76. |
Use of freedesktop.org services, including Bugzilla, is subject to our Code of Conduct. How we collect and use information is described in our Privacy Policy.
Created attachment 48406 [details] Fix for glproto pkg-config settings not being propagated to src/glx/Makefile, for Mesa 7.10.3. If glproto is installed in some directory which isn't already included in the includes path, building Mesa will fail in src/glx/ because GL/glproto.h can not be found. The reason for this is that the settings from 'pkg-config --cflags glproto' are not propagated to src/glx/Makefile. Fix: add 'GLPROTO_CFLAGS = @GLPROTO_CFLAGS@' to configs/autoconf.in and '$(GLPROTO_CFLAGS) \' to INCLUDES in src/glx/Makefile. A patch for Mesa 7.10.3 is attached.