From 1a7d10fade0475afb7149c3c4b85307354999d37 Mon Sep 17 00:00:00 2001 From: Themaister Date: Sun, 16 Sep 2012 11:15:49 +0200 Subject: [PATCH] Don't link against -lGL when GLES is used. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 2980bc8b1d..d09f85afdc 100644 --- a/Makefile +++ b/Makefile @@ -148,7 +148,7 @@ ifeq ($(OSX),1) LIBS += -framework OpenGL else ifeq ($(HAVE_GLES), 1) - LIBS += -lGL -lGLESv2 -lEGL + LIBS += -lGLESv2 -lEGL DEFINES += -DHAVE_OPENGLES -DHAVE_OPENGLES2 OBJ += gfx/context/xegl_ctx.o else