Skip to content

Commit

Permalink
check for libcrypto
Browse files Browse the repository at this point in the history
  • Loading branch information
jkarneges committed Aug 28, 2016
1 parent 2ee3661 commit 959be54
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
5 changes: 4 additions & 1 deletion configure
Expand Up @@ -396,7 +396,10 @@ cat >"$1/modules_new.cpp" <<EOT
o = new qc_internal_pkgconfig(conf, "libcurl", "libcurl >= 7.20", VersionMin, "7.20");
o->required = true;
o->disabled = false;
o = new qc_internal_pkgconfig(conf, "libssl", "openssl >= 1.0", VersionMin, "1.0");
o = new qc_internal_pkgconfig(conf, "libcrypto", "openssl libcrypto >= 1.0", VersionMin, "1.0");
o->required = true;
o->disabled = false;
o = new qc_internal_pkgconfig(conf, "libssl", "openssl libssl >= 1.0", VersionMin, "1.0");
o->required = true;
o->disabled = false;
o = new qc_internal_pkgconfig(conf, "libzmq", "libzmq >= 2.0", VersionMin, "2.0");
Expand Down
2 changes: 1 addition & 1 deletion src/verifyhost.cpp
Expand Up @@ -32,7 +32,7 @@ in this Software without prior written authorization of the copyright holder.
#include <netinet/in.h>
#include <arpa/inet.h>
#include <openssl/crypto.h>
#include <openssl/ssl.h>
#include <openssl/x509.h>
#include "log.h"

#define DEBUGASSERT(x) assert(x)
Expand Down
5 changes: 4 additions & 1 deletion zurl.qc
Expand Up @@ -8,7 +8,10 @@
<dep type='pkg' name='libcurl' pkgname='libcurl' version='>=7.20'>
<required/>
</dep>
<dep type='pkg' name='openssl' pkgname='libssl' version='>=1.0'>
<dep type='pkg' name='openssl libcrypto' pkgname='libcrypto' version='>=1.0'>
<required/>
</dep>
<dep type='pkg' name='openssl libssl' pkgname='libssl' version='>=1.0'>
<required/>
</dep>
<dep type='pkg' name='libzmq' pkgname='libzmq' version='>=2.0'>
Expand Down

0 comments on commit 959be54

Please sign in to comment.