diff options
-rw-r--r-- | src/gallium/targets/osmesa/Makefile.am | 1 | ||||
-rw-r--r-- | src/gallium/targets/osmesa/osmesa.sym | 18 |
2 files changed, 19 insertions, 0 deletions
diff --git a/src/gallium/targets/osmesa/Makefile.am b/src/gallium/targets/osmesa/Makefile.am index 067f9808b7a..0ec8a2613d4 100644 --- a/src/gallium/targets/osmesa/Makefile.am +++ b/src/gallium/targets/osmesa/Makefile.am @@ -45,6 +45,7 @@ lib@OSMESA_LIB@_la_LDFLAGS = \ -module \ -no-undefined \ -version-number @OSMESA_VERSION@ \ + -Wl,--version-script=$(top_srcdir)/src/gallium/targets/osmesa/osmesa.sym \ $(GC_SECTIONS) \ $(LD_NO_UNDEFINED) diff --git a/src/gallium/targets/osmesa/osmesa.sym b/src/gallium/targets/osmesa/osmesa.sym new file mode 100644 index 00000000000..b8230e04fb4 --- /dev/null +++ b/src/gallium/targets/osmesa/osmesa.sym @@ -0,0 +1,18 @@ +{ + global: + OSMesaColorClamp; + OSMesaCreateContext; + OSMesaCreateContextExt; + OSMesaDestroyContext; + OSMesaGetColorBuffer; + OSMesaGetCurrentContext; + OSMesaGetDepthBuffer; + OSMesaGetIntegerv; + OSMesaGetProcAddress; + OSMesaMakeCurrent; + OSMesaPixelStore; + OSMesaPostprocess; + gl*; + local: + *; +}; |