Currently, GLX support in libepoxy at build time is hard coded, but various platforms have expressed their preference for having a configure-time option for it. For instance: - various embedded distributors do not ship with X11, but wish to use libraries that depend on libepoxy now that Wayland is available - distributors for macOS still wish to retain the ability to ship their software with X11 enabled By default, we want epoxy to build with GLX enabled pretty much everywhere it makes sense, since it's only a build-time option and it's not a run-time dependency.macos/v1.5.9
parent
6af57b0745
commit
476851ba41
@ -1,3 +1,8 @@ |
|||||||
option('enable-docs', |
option('enable-docs', |
||||||
type: 'boolean', value: false, |
type: 'boolean', value: false, |
||||||
description: 'Enable generating the Epoxy API reference (depends on Doxygen)') |
description: 'Enable generating the Epoxy API reference (depends on Doxygen)') |
||||||
|
option('enable-glx', |
||||||
|
type: 'combo', |
||||||
|
choices: [ 'auto', 'yes', 'no' ], |
||||||
|
value: 'auto', |
||||||
|
description: 'Enable GLX support') |
||||||
|
Loading…
Reference in new issue