From: Brian Date: Thu, 19 Apr 2007 20:24:58 +0000 (-0600) Subject: Notes about shared lib version. Document depth-peel fixes. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=535c37e85d9283f177825e7534e5d0abb4d93886;p=mesa.git Notes about shared lib version. Document depth-peel fixes. --- diff --git a/docs/relnotes-6.5.3.html b/docs/relnotes-6.5.3.html index 8f6ea8bea31..0d0398aaf41 100644 --- a/docs/relnotes-6.5.3.html +++ b/docs/relnotes-6.5.3.html @@ -22,6 +22,22 @@ TBD +

Shared library numbering

+

+Mesa 6.5.3 supports the OpenGL 2.0/2.1 API. However, the (unix) +shared library version is still 1.5 (i.e. libGL.so.1.5.xxxxxx). +Bumping the shared library version to 2.x would cause linking problems +with existing OpenGL applications. Since OpenGL 2.x is backward +compatible with OpenGL 1.x the shared library version number doesn't +have to be incremented (which would indicate an incompatible ABI). +

+

+Other OpenGL vendors name their OpenGL 2.x libraries libGL.so.1.0.xxxxx +for the same reason. +

+ + +

New features