From 3c9880fc79f601e44f1c99ad259298ffd254971d Mon Sep 17 00:00:00 2001 From: Joe MacDonald Date: Fri, 13 Mar 2015 13:50:38 -0400 Subject: openflow: add libcrypto to static openflow library An update in OpenSSL removed the -lcrypto from libssl's pkg-config options. The old behaviour always linked it with -lssl, so revert to that for now. Signed-off-by: Joe MacDonald --- meta-networking/recipes-protocols/openflow/openflow.inc | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'meta-networking/recipes-protocols/openflow') diff --git a/meta-networking/recipes-protocols/openflow/openflow.inc b/meta-networking/recipes-protocols/openflow/openflow.inc index 1a226f82ca..75d8ab8d74 100644 --- a/meta-networking/recipes-protocols/openflow/openflow.inc +++ b/meta-networking/recipes-protocols/openflow/openflow.inc @@ -15,11 +15,14 @@ SRC_URI = "git://gitosis.stanford.edu/openflow.git;protocol=git" DEPENDS = "virtual/libc" -EXTRA_OECONF += "KARCH=${TARGET_ARCH}" - PACKAGECONFIG ??= "openssl" PACKAGECONFIG[openssl] = "--enable-ssl,--disable-ssl, openssl, libssl" +EXTRA_OECONF += " \ + KARCH=${TARGET_ARCH} \ + ${@base_contains('PACKAGECONFIG', 'openssl', 'SSL_LIBS="-lssl -lcrypto"', '', d)} \ + " + S = "${WORKDIR}/git" inherit autotools-brokensep -- cgit 1.2.3-korg