Skip to content

opengl: Makefile.am: remove emscripten specific gles2 libraries

Khalid Masum requested to merge Labnann/vlc:fix-duplicate-symbol into master

75b62f44 aims to generalize HAVE_GLES2 with the introduction of (!HAVE_GL and HAVE_GLES2) and removes android specific library adding.

However, emscripen, like android falls into this criteria but unlike android it is not removed. Hence libraries like libvlc_opengles.la is added twice and causing error: "duplicate symbol" during shared module building.

Fix this by removing emscripten's block of code that causes this.

Merge request reports