From: Marcus Watts Date: Sat, 20 Feb 2016 08:29:27 +0000 (-0500) Subject: Fix ssl link error. X-Git-Tag: v10.1.0~283^2~2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=f3925ec5efefa94cea7d79010c5611835fe888e9;p=ceph.git Fix ssl link error. When linking against -lssl, should also include -lcrypto. // fixup merge with previous Signed-off-by: Marcus Watts --- diff --git a/src/rgw/Makefile.am b/src/rgw/Makefile.am index 40705a373c4c..beb6ab25b417 100644 --- a/src/rgw/Makefile.am +++ b/src/rgw/Makefile.am @@ -130,7 +130,7 @@ libcivetweb_la_SOURCES = \ libcivetweb_la_CXXFLAGS = ${CIVETWEB_INCLUDE} -fPIC -Woverloaded-virtual \ ${AM_CXXFLAGS} libcivetweb_la_CFLAGS = -I$(srcdir)/civetweb/include ${CIVETWEB_INCLUDE} -fPIC -DNO_SSL_DL -LIBCIVETWEB_DEPS += -lssl +LIBCIVETWEB_DEPS += -lssl -lcrypto noinst_LTLIBRARIES += libcivetweb.la