From: Emil Velikov Date: Wed, 29 Jun 2016 12:26:07 +0000 (+0100) Subject: docs: recommend using --enable-mangling over the manual -DUSE... X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=7a39a0091d1371796152b840133b2ca247b12f20;p=mesa.git docs: recommend using --enable-mangling over the manual -DUSE... Signed-off-by: Emil Velikov Reviewed-by: Brian Paul --- diff --git a/docs/contents.html b/docs/contents.html index d2b63a327cb..c2fe39190c5 100644 --- a/docs/contents.html +++ b/docs/contents.html @@ -66,7 +66,7 @@
  • Debugging Tips
  • Performance Tips
  • Mesa Extensions -
  • Function Name Mangling +
  • GL Function Name Mangling
  • Gallium llvmpipe driver
  • VMware SVGA3D guest driver
  • Gallium post-processing diff --git a/docs/mangling.html b/docs/mangling.html index c96f2f29ae6..9d92b7d2ff5 100644 --- a/docs/mangling.html +++ b/docs/mangling.html @@ -2,7 +2,7 @@ - Function Name Mangling + GL Function Name Mangling @@ -14,7 +14,7 @@
    -

    Function Name Mangling

    +

    GL Function Name Mangling

    If you want to use both Mesa and another OpenGL library in the same @@ -25,12 +25,11 @@ This results in all the Mesa functions being prefixed with

    -To do this, recompile Mesa with the compiler flag -DUSE_MGL_NAMESPACE. -Add the flag to CFLAGS in the configuration file which you want to use. -For example: +This option is supported only with the autoconf build. To use it add +--enable-mangling to your configure line.

    -CFLAGS += -DUSE_MGL_NAMESPACE
    +./configure --enable-mangling ...