diff options
author | Emil Velikov <[email protected]> | 2014-04-04 23:59:30 +0100 |
---|---|---|
committer | Emil Velikov <[email protected]> | 2014-05-02 21:48:26 +0100 |
commit | 69d790da9f5307c54c7a7c280e158c412f91dc84 (patch) | |
tree | b98c105a7cfcdf041474c09cf175eded3a852ec4 /src/gallium/targets/vdpau.sym | |
parent | 53dd2e45f4625cc82f96e628a0e20512557113b8 (diff) |
targets/vdpau: use version script to limit the exported symbols
Using export-symbols-regex is the least desirable method of restricting
the exported symbols, as is completely messes up with the symbol table.
Signed-off-by: Emil Velikov <[email protected]>
Reviewed-by: Christian König <[email protected]>
Diffstat (limited to 'src/gallium/targets/vdpau.sym')
-rw-r--r-- | src/gallium/targets/vdpau.sym | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/gallium/targets/vdpau.sym b/src/gallium/targets/vdpau.sym new file mode 100644 index 00000000000..f184193c055 --- /dev/null +++ b/src/gallium/targets/vdpau.sym @@ -0,0 +1,8 @@ +{ + global: + vdp_imp_device_create_x11; + nouveau_drm_screen_create; + radeon_drm_winsys_create; + local: + *; +}; |