From 97313a295bdd3340b5720706dc3efd4529679c14 Mon Sep 17 00:00:00 2001 From: Stone Tickle Date: Wed, 17 Mar 2021 06:43:52 +0900 Subject: [PATCH] remove explicit linking for dlopened OpenGL --- profiler/build/unix/build.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/profiler/build/unix/build.mk b/profiler/build/unix/build.mk index dd392bab..7d14795d 100644 --- a/profiler/build/unix/build.mk +++ b/profiler/build/unix/build.mk @@ -26,7 +26,7 @@ ifeq ($(UNAME),Darwin) else SRC2 += ../../../nfd/nfd_gtk.c INCLUDES += $(shell pkg-config --cflags gtk+-3.0) - LIBS += $(shell pkg-config --libs gtk+-3.0) -lGL + LIBS += $(shell pkg-config --libs gtk+-3.0) endif include ../../../common/unix.mk