From f7c43fcfad3567fc8f992e468cdbe88d362d5371 Mon Sep 17 00:00:00 2001 From: Misty De Meo Date: Sat, 26 May 2018 02:49:58 -0700 Subject: [PATCH] libr: use openssl LDFLAGS at link time (#10188) libr will have been compiled with openssl support if it was requested, so it also needs to use the openssl LDFLAGS. Fixes #10154. --- libr/Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/libr/Makefile b/libr/Makefile index 0d02577081..15efadd773 100644 --- a/libr/Makefile +++ b/libr/Makefile @@ -45,6 +45,7 @@ endif ifeq ($(OSTYPE),ios) MLFLAGS+=-install_name @rpath/libr2.dylib endif +LDFLAGS+=${SSL_LDFLAGS} # XXX version-script only works with shlib as output #ifeq ($(OSTYPE),linux) #PLFLAGS+=--version-script ./ld.script