remove explicit linking for dlopened OpenGL

This commit is contained in:
Stone Tickle 2021-03-17 06:43:52 +09:00
parent 0f6c766167
commit 97313a295b
No known key found for this signature in database
GPG Key ID: 4DF34BD9C2622309

View File

@ -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