diff options
author | Emil Velikov <[email protected]> | 2014-05-16 15:09:26 +0100 |
---|---|---|
committer | Emil Velikov <[email protected]> | 2014-06-19 12:46:19 +0100 |
commit | 949beb0b84bb5b6a24b62ca19df9d44ff64be120 (patch) | |
tree | a955f03127ad6a3fbfc898fd49b1022b80d9246e /configure.ac | |
parent | d22b39e4db7d1c54461de97ff4dcb79178be1a84 (diff) |
configure: add HAVE_GALLIUM_STATIC_TARGETS
Will be used to control the linking mode of pipe-drivers
in gallium targets.
Keep this hardcoded to static, as the pipe-drivers bare
an unstable interface which we do not want to expose to
the normal user.
Signed-off-by: Emil Velikov <[email protected]>
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index 9c0c77d3b0a..8f861548f80 100644 --- a/configure.ac +++ b/configure.ac @@ -2057,6 +2057,10 @@ AM_CONDITIONAL(NEED_GALLIUM_SOFTPIPE_DRIVER, test "x$HAVE_GALLIUM_SVGA" = xyes - AM_CONDITIONAL(NEED_GALLIUM_LLVMPIPE_DRIVER, test "x$HAVE_GALLIUM_SOFTPIPE" = xyes \ && test "x$MESA_LLVM" = x1) +# Enable static gallium targets for now. +# Do not touch this unless you know what you are doing. +AM_CONDITIONAL(HAVE_GALLIUM_STATIC_TARGETS, test "xyes" = xyes) + # NOTE: anything using xcb or other client side libs ends up in separate # _CLIENT variables. The pipe loader is built in two variants, # one that is standalone and does not link any x client libs (for |