From: Benjamin Close Date: Wed, 25 Feb 2009 04:51:12 +0000 (-0800) Subject: egl: Use -dlopen rather than -dl which is non portable X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=9c0dea10e91752d5f43ed5ef9eac53248e5a05eb;p=mesa.git egl: Use -dlopen rather than -dl which is non portable Signed-off-by: Benjamin Close --- diff --git a/src/egl/main/Makefile b/src/egl/main/Makefile index 89b4a200bcd..a543f675a5e 100644 --- a/src/egl/main/Makefile +++ b/src/egl/main/Makefile @@ -63,7 +63,7 @@ library: $(TOP)/$(LIB_DIR)/libEGL.so $(TOP)/$(LIB_DIR)/libEGL.so: $(OBJECTS) $(MKLIB) -o EGL -linker '$(CC)' -ldflags '$(LDFLAGS)' \ -major 1 -minor 0 \ - -install $(TOP)/$(LIB_DIR) -ldl $(OBJECTS) $(LIBS) + -install $(TOP)/$(LIB_DIR) -dlopen $(OBJECTS) $(LIBS) install: $(INSTALL) -d $(DESTDIR)$(INSTALL_LIB_DIR)