From 17e5c307f5e2fd73ab347d9dc35284c935f91d30 Mon Sep 17 00:00:00 2001 From: Eric Anholt Date: Sat, 1 Feb 2014 12:22:53 -0800 Subject: [PATCH] Add missing dependency on libdl. Everything I'd linked against the library so far already had a libdl dependency (through libX11, for example), so I hadn't noticed. --- src/Makefile.am | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Makefile.am b/src/Makefile.am index ceefda2..1ca0d68 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -119,6 +119,7 @@ libepoxy_la_LDFLAGS = \ libepoxy_la_LIBADD = \ $(EPOXY_LINK_LIBS) \ + $(DLOPEN_LIBS) \ $() if BUILD_EGL