Back
From: metabase:user:a6ebd58c-fd8b-11e4-b581-e9942879831d
Subject: FAIL Business-OnlinePayment-BitPay-KeyUtils-2.0.1 v5.22.0 Mac OS X
Date: 2015-07-25T22:53:56Z
This distribution has been tested as part of the CPAN Testers
project, supporting the Perl programming language. See
http://wiki.cpantesters.org/ for more information or email
questions to cpan-testers-discuss@perl.org
--
Dear BITPAY,
This is a computer-generated report for Business-OnlinePayment-BitPay-KeyUtils-2.0.1
on perl 5.22.0, created by App::cpanminus::reporter 0.13 (1.7039).
Thank you for uploading your work to CPAN. However, there was a problem
testing your distribution.
If you think this report is invalid, please consult the CPAN Testers Wiki
for suggestions on how to avoid getting FAIL reports for missing library
or binary dependencies, unsupported operating systems, and so on:
http://wiki.cpantesters.org/wiki/CPANAuthorNotes
Sections of this report:
* Tester comments
* Program output
* Prerequisites
* Environment and other context
------------------------------
TESTER COMMENTS
------------------------------
Additional comments from tester:
none provided
------------------------------
PROGRAM OUTPUT
------------------------------
Output from '':
Building and testing Business-OnlinePayment-BitPay-KeyUtils-v2.0.1
cp KeyUtils.pm blib/lib/Business/OnlinePayment/BitPay/KeyUtils.pm
Running Mkbootstrap for Business::OnlinePayment::BitPay::KeyUtils ()
chmod 644 "KeyUtils.bs"
cc -c -fno-common -DPERL_DARWIN -fno-strict-aliasing -pipe -fstack-protector-strong -I/usr/local/include -O3 -DVERSION=\"2.0.1\" -DXS_VERSION=\"2.0.1\" "-I/usr/local/lib/perl5/5.22.0/darwin-2level/CORE" key_utils.c
key_utils.c:17:16: warning: 'BIO_new' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
if ((out = BIO_new(BIO_s_mem())) == NULL) {
^
/usr/include/openssl/bio.h:591:7: note: 'BIO_new' has been explicitly marked deprecated here
BIO * BIO_new(BIO_METHOD *type) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
^
key_utils.c:17:24: warning: 'BIO_s_mem' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
if ((out = BIO_new(BIO_s_mem())) == NULL) {
^
/usr/include/openssl/bio.h:626:13: note: 'BIO_s_mem' has been explicitly marked deprecated here
BIO_METHOD *BIO_s_mem(void) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
^
key_utils.c:26:18: warning: 'EC_GROUP_new_by_curve_name' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
if ((group = EC_GROUP_new_by_curve_name(NID_secp256k1)) == NULL) {
^
/usr/include/openssl/ec.h:189:11: note: 'EC_GROUP_new_by_curve_name' has been explicitly marked deprecated here
EC_GROUP *EC_GROUP_new_by_curve_name(int nid) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
^
key_utils.c:32:19: warning: 'EC_KEY_new' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
if (((eckey = EC_KEY_new()) == NULL) ||
^
/usr/include/openssl/ec.h:305:9: note: 'EC_KEY_new' has been explicitly marked deprecated here
EC_KEY *EC_KEY_new(void) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
^
key_utils.c:33:17: warning: 'BUF_MEM_new' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
((buf = BUF_MEM_new()) == NULL)) {
^
/usr/include/openssl/buffer.h:86:10: note: 'BUF_MEM_new' has been explicitly marked deprecated here
BUF_MEM *BUF_MEM_new(void) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
^
key_utils.c:49:5: warning: 'BIO_ctrl' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
BIO_get_mem_ptr(out, &buf);
^
/usr/include/openssl/bio.h:506:31: note: expanded from macro 'BIO_get_mem_ptr'
#define BIO_get_mem_ptr(b,pp) BIO_ctrl(b,BIO_C_GET_BUF_MEM_PTR,0,(char *)pp)
^
/usr/include/openssl/bio.h:600:6: note: 'BIO_ctrl' has been explicitly marked deprecated here
long BIO_ctrl(BIO *bp,int cmd,long larg,void *parg) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
^
key_utils.c:74:9: warning: 'EC_GROUP_clear_free' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
EC_GROUP_clear_free(group);
^
/usr/include/openssl/ec.h:140:6: note: 'EC_GROUP_clear_free' has been explicitly marked deprecated here
void EC_GROUP_clear_free(EC_GROUP *) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
^
key_utils.c:78:9: warning: 'EC_KEY_free' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
EC_KEY_free(eckey);
^
/usr/include/openssl/ec.h:307:6: note: 'EC_KEY_free' has been explicitly marked deprecated here
void EC_KEY_free(EC_KEY *) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
^
key_utils.c:80:9: warning: 'BIO_free_all' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
BIO_free_all(out);
^
/usr/include/openssl/bio.h:606:6: note: 'BIO_free_all' has been explicitly marked deprecated here
void BIO_free_all(BIO *a) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
^
key_utils.c:92:5: warning: 'EC_GROUP_set_asn1_flag' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
EC_GROUP_set_asn1_flag(group, asn1Flag);
^
/usr/include/openssl/ec.h:155:6: note: 'EC_GROUP_set_asn1_flag' has been explicitly marked deprecated here
void EC_GROUP_set_asn1_flag(EC_GROUP *, int flag) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
^
key_utils.c:93:5: warning: 'EC_GROUP_set_point_conversion_form' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
EC_GROUP_set_point_conversion_form(group, form);
^
/usr/include/openssl/ec.h:158:6: note: 'EC_GROUP_set_point_conversion_form' has been explicitly marked deprecated here
void EC_GROUP_set_point_conversion_form(EC_GROUP *, point_conversion_form_t) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
^
key_utils.c:94:25: warning: 'EC_KEY_set_group' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
int setGroupError = EC_KEY_set_group(eckey, group);
^
/usr/include/openssl/ec.h:314:5: note: 'EC_KEY_set_group' has been explicitly marked deprecated here
int EC_KEY_set_group(EC_KEY *, const EC_GROUP *) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
^
key_utils.c:96:28: warning: 'EC_KEY_generate_key' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
int resultFromKeyGen = EC_KEY_generate_key(eckey);
^
/usr/include/openssl/ec.h:341:5: note: 'EC_KEY_generate_key' has been explicitly marked deprecated here
int EC_KEY_generate_key(EC_KEY *) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
^
key_utils.c:189:5: warning: 'BN_init' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
BN_init(&start);
^
/usr/include/openssl/bn.h:418:6: note: 'BN_init' has been explicitly marked deprecated here
void BN_init(BIGNUM *) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
^
key_utils.c:190:11: warning: 'BN_CTX_new' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
ctx = BN_CTX_new();
^
/usr/include/openssl/bn.h:403:9: note: 'BN_CTX_new' has been explicitly marked deprecated here
BN_CTX *BN_CTX_new(void) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
^
key_utils.c:195:10: warning: 'BIO_new' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
in = BIO_new(BIO_s_mem());
^
/usr/include/openssl/bio.h:591:7: note: 'BIO_new' has been explicitly marked deprecated here
BIO * BIO_new(BIO_METHOD *type) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
^
key_utils.c:195:18: warning: 'BIO_s_mem' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
in = BIO_new(BIO_s_mem());
^
/usr/include/openssl/bio.h:626:13: note: 'BIO_s_mem' has been explicitly marked deprecated here
BIO_METHOD *BIO_s_mem(void) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
^
key_utils.c:196:5: warning: 'BIO_puts' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
BIO_puts(in, cPem);
^
/usr/include/openssl/bio.h:598:5: note: 'BIO_puts' has been explicitly marked deprecated here
int BIO_puts(BIO *bp,const char *buf) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
^
key_utils.c:198:11: warning: 'EC_KEY_get0_private_key' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
res = EC_KEY_get0_private_key(key);
^
/usr/include/openssl/ec.h:315:15: note: 'EC_KEY_get0_private_key' has been explicitly marked deprecated here
const BIGNUM *EC_KEY_get0_private_key(const EC_KEY *) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
^
key_utils.c:199:13: warning: 'EC_KEY_new_by_curve_name' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
eckey = EC_KEY_new_by_curve_name(NID_secp256k1);
^
/usr/include/openssl/ec.h:306:9: note: 'EC_KEY_new_by_curve_name' has been explicitly marked deprecated here
EC_KEY *EC_KEY_new_by_curve_name(int nid) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
^
key_utils.c:200:13: warning: 'EC_KEY_get0_group' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
group = EC_KEY_get0_group(eckey);
^
/usr/include/openssl/ec.h:313:17: note: 'EC_KEY_get0_group' has been explicitly marked deprecated here
const EC_GROUP *EC_KEY_get0_group(const EC_KEY *) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
^
key_utils.c:201:15: warning: 'EC_POINT_new' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
pub_key = EC_POINT_new(group);
^
/usr/include/openssl/ec.h:204:11: note: 'EC_POINT_new' has been explicitly marked deprecated here
EC_POINT *EC_POINT_new(const EC_GROUP *) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
^
key_utils.c:203:5: warning: 'EC_KEY_set_private_key' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
EC_KEY_set_private_key(eckey, res);
^
/usr/include/openssl/ec.h:316:5: note: 'EC_KEY_set_private_key' has been explicitly marked deprecated here
int EC_KEY_set_private_key(EC_KEY *, const BIGNUM *) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
^
key_utils.c:205:10: warning: 'EC_POINT_mul' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
if (!EC_POINT_mul(group, pub_key, res, NULL, NULL, ctx)) {
^
/usr/include/openssl/ec.h:259:5: note: 'EC_POINT_mul' has been explicitly marked deprecated here
int EC_POINT_mul(const EC_GROUP *, EC_POINT *r, const BIGNUM *, const EC_POINT *, const BIGNUM *, BN_CTX *) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
^
key_utils.c:209:5: warning: 'EC_KEY_set_public_key' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
EC_KEY_set_public_key(eckey, pub_key);
^
/usr/include/openssl/ec.h:318:5: note: 'EC_KEY_set_public_key' has been explicitly marked deprecated here
int EC_KEY_set_public_key(EC_KEY *, const EC_POINT *) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
^
key_utils.c:211:16: warning: 'EC_POINT_point2hex' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
hexPoint = EC_POINT_point2hex(group, pub_key, 4, ctx);
^
/usr/include/openssl/ec.h:241:7: note: 'EC_POINT_point2hex' has been explicitly marked deprecated here
char *EC_POINT_point2hex(const EC_GROUP *, const EC_POINT *,
^
key_utils.c:235:5: warning: 'BN_CTX_free' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
BN_CTX_free(ctx);
^
/usr/include/openssl/bn.h:407:6: note: 'BN_CTX_free' has been explicitly marked deprecated here
void BN_CTX_free(BN_CTX *c) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
^
key_utils.c:236:5: warning: 'EC_KEY_free' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
EC_KEY_free(eckey);
^
/usr/include/openssl/ec.h:307:6: note: 'EC_KEY_free' has been explicitly marked deprecated here
void EC_KEY_free(EC_KEY *) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
^
key_utils.c:237:5: warning: 'EC_KEY_free' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
EC_KEY_free(key);
^
/usr/include/openssl/ec.h:307:6: note: 'EC_KEY_free' has been explicitly marked deprecated here
void EC_KEY_free(EC_KEY *) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
^
key_utils.c:238:5: warning: 'EC_POINT_free' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
EC_POINT_free(pub_key);
^
/usr/include/openssl/ec.h:205:6: note: 'EC_POINT_free' has been explicitly marked deprecated here
void EC_POINT_free(EC_POINT *) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
^
key_utils.c:239:5: warning: 'BIO_free' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
BIO_free(in);
^
/usr/include/openssl/bio.h:593:5: note: 'BIO_free' has been explicitly marked deprecated here
int BIO_free(BIO *a) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
^
key_utils.c:282:25: warning: 'BN_new' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
BIGNUM *bnfromhex = BN_new();
^
/usr/include/openssl/bn.h:417:9: note: 'BN_new' has been explicitly marked deprecated here
BIGNUM *BN_new(void) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
^
key_utils.c:283:5: warning: 'BN_hex2bn' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
BN_hex2bn(&bnfromhex, input);
^
/usr/include/openssl/bn.h:507:6: note: 'BN_hex2bn' has been explicitly marked deprecated here
int BN_hex2bn(BIGNUM **a, const char *str) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
^
key_utils.c:291:17: warning: 'BN_mod_word' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
int rem = BN_mod_word(bnfromhex, 58);
^
/usr/include/openssl/bn.h:459:10: note: 'BN_mod_word' has been explicitly marked deprecated here
BN_ULONG BN_mod_word(const BIGNUM *a, BN_ULONG w) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
^
key_utils.c:293:7: warning: 'BN_div_word' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
BN_div_word(bnfromhex, 58);
^
/usr/include/openssl/bn.h:460:10: note: 'BN_div_word' has been explicitly marked deprecated here
BN_ULONG BN_div_word(BIGNUM *a, BN_ULONG w) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
^
key_utils.c:306:5: warning: 'BN_free' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
BN_free(bnfromhex);
^
/usr/include/openssl/bn.h:468:6: note: 'BN_free' has been explicitly marked deprecated here
void BN_free(BIGNUM *a) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
^
key_utils.c:317:5: warning: 'OpenSSL_add_all_digests' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
OpenSSL_add_all_digests();
^
/usr/include/openssl/evp.h:833:6: note: 'OpenSSL_add_all_digests' has been explicitly marked deprecated here
void OpenSSL_add_all_digests(void) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
^
key_utils.c:319:10: warning: 'EVP_get_digestbyname' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
md = EVP_get_digestbyname(type);
^
/usr/include/openssl/evp.h:842:15: note: 'EVP_get_digestbyname' has been explicitly marked deprecated here
const EVP_MD *EVP_get_digestbyname(const char *name) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
^
key_utils.c:320:13: warning: 'EVP_MD_CTX_create' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
mdctx = EVP_MD_CTX_create();
^
/usr/include/openssl/evp.h:549:13: note: 'EVP_MD_CTX_create' has been explicitly marked deprecated here
EVP_MD_CTX *EVP_MD_CTX_create(void) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
^
key_utils.c:321:5: warning: 'EVP_DigestInit_ex' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
EVP_DigestInit_ex(mdctx, md, NULL);
^
/usr/include/openssl/evp.h:555:5: note: 'EVP_DigestInit_ex' has been explicitly marked deprecated here
int EVP_DigestInit_ex(EVP_MD_CTX *ctx, const EVP_MD *type, ENGINE *impl) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
^
key_utils.c:322:5: warning: 'EVP_DigestUpdate' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
EVP_DigestUpdate(mdctx, message, inLength);
^
/usr/include/openssl/evp.h:556:5: note: 'EVP_DigestUpdate' has been explicitly marked deprecated here
int EVP_DigestUpdate(EVP_MD_CTX *ctx,const void *d,
^
key_utils.c:323:5: warning: 'EVP_DigestFinal_ex' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
EVP_DigestFinal_ex(mdctx, md_value, &md_len);
^
/usr/include/openssl/evp.h:558:5: note: 'EVP_DigestFinal_ex' has been explicitly marked deprecated here
int EVP_DigestFinal_ex(EVP_MD_CTX *ctx,unsigned char *md,unsigned int *s) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
^
key_utils.c:324:5: warning: 'EVP_MD_CTX_destroy' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
EVP_MD_CTX_destroy(mdctx);
^
/usr/include/openssl/evp.h:550:6: note: 'EVP_MD_CTX_destroy' has been explicitly marked deprecated here
void EVP_MD_CTX_destroy(EVP_MD_CTX *ctx) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
^
key_utils.c:374:10: warning: 'BIO_new' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
in = BIO_new(BIO_s_mem());
^
/usr/include/openssl/bio.h:591:7: note: 'BIO_new' has been explicitly marked deprecated here
BIO * BIO_new(BIO_METHOD *type) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
^
key_utils.c:374:18: warning: 'BIO_s_mem' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
in = BIO_new(BIO_s_mem());
^
/usr/include/openssl/bio.h:626:13: note: 'BIO_s_mem' has been explicitly marked deprecated here
BIO_METHOD *BIO_s_mem(void) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
^
key_utils.c:375:5: warning: 'BIO_puts' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
BIO_puts(in, pem);
^
/usr/include/openssl/bio.h:598:5: note: 'BIO_puts' has been explicitly marked deprecated here
int BIO_puts(BIO *bp,const char *buf) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
^
key_utils.c:383:26: warning: 'ECDSA_do_sign' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
ECDSA_SIG *sig = ECDSA_do_sign((const unsigned char*)outBytesOfsha256ofMsg, SHA256_DIGEST_LENGTH, key);
^
/usr/include/openssl/ecdsa.h:125:12: note: 'ECDSA_do_sign' has been explicitly marked deprecated here
ECDSA_SIG *ECDSA_do_sign(const unsigned char *dgst,int dgst_len,EC_KEY *eckey) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
^
key_utils.c:385:22: warning: 'ECDSA_do_verify' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
int verify = ECDSA_do_verify((const unsigned char*)outBytesOfsha256ofMsg, SHA256_DIGEST_LENGTH, sig, key);
^
/usr/include/openssl/ecdsa.h:150:7: note: 'ECDSA_do_verify' has been explicitly marked deprecated here
int ECDSA_do_verify(const unsigned char *dgst, int dgst_len,
^
key_utils.c:391:22: warning: 'ECDSA_size' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
int buflen = ECDSA_size(key);
^
/usr/include/openssl/ecdsa.h:180:7: note: 'ECDSA_size' has been explicitly marked deprecated here
int ECDSA_size(const EC_KEY *eckey) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
^
key_utils.c:392:18: warning: 'CRYPTO_malloc' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
buffer = OPENSSL_malloc(buflen);
^
/usr/include/openssl/crypto.h:366:29: note: expanded from macro 'OPENSSL_malloc'
#define OPENSSL_malloc(num) CRYPTO_malloc((int)num,__FILE__,__LINE__)
^
/usr/include/openssl/crypto.h:478:7: note: 'CRYPTO_malloc' has been explicitly marked deprecated here
void *CRYPTO_malloc(int num, const char *file, int line) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
^
key_utils.c:394:21: warning: 'i2d_ECDSA_SIG' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
derSigLen = i2d_ECDSA_SIG(sig, &buffer);
^
/usr/include/openssl/ecdsa.h:105:7: note: 'i2d_ECDSA_SIG' has been explicitly marked deprecated here
int i2d_ECDSA_SIG(const ECDSA_SIG *a, unsigned char **pp) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
^
key_utils.c:408:5: warning: 'EC_KEY_free' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
EC_KEY_free(key);
^
/usr/include/openssl/ec.h:307:6: note: 'EC_KEY_free' has been explicitly marked deprecated here
void EC_KEY_free(EC_KEY *) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
^
key_utils.c:410:5: warning: 'BIO_free_all' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
BIO_free_all(in);
^
/usr/include/openssl/bio.h:606:6: note: 'BIO_free_all' has been explicitly marked deprecated here
void BIO_free_all(BIO *a) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
^
53 warnings generated.
cc -c -fno-common -DPERL_DARWIN -fno-strict-aliasing -pipe -fstack-protector-strong -I/usr/local/include -O3 -DVERSION=\"2.0.1\" -DXS_VERSION=\"2.0.1\" "-I/usr/local/lib/perl5/5.22.0/darwin-2level/CORE" key_utils_wrap.c
key_utils_wrap.c:1747:92: warning: incompatible pointer to integer conversion passing 'char *' to parameter of type 'char'; dereference with * [-Wint-conversion]
if (argvi >= items) EXTEND(sp,1); ST(argvi) = SWIG_From_char SWIG_PERL_CALL_ARGS_1((*arg1)); argvi++ ;
^~~~~~~
*(
key_utils_wrap.c:912:80: note: expanded from macro 'SWIG_PERL_CALL_ARGS_1'
#define SWIG_PERL_CALL_ARGS_1(arg1) (SWIG_PERL_OBJECT_CALL arg1)
^
key_utils_wrap.c:1544:44: note: passing argument to parameter 'c' here
SWIG_From_char SWIG_PERL_DECL_ARGS_1(char c)
^
key_utils_wrap.c:911:80: note: expanded from macro 'SWIG_PERL_DECL_ARGS_1'
#define SWIG_PERL_DECL_ARGS_1(arg1) (SWIG_PERL_OBJECT_DECL arg1)
^
1 warning generated.
rm -f blib/arch/auto/Business/OnlinePayment/BitPay/KeyUtils/KeyUtils.bundle
LD_RUN_PATH="/usr/lib" env MACOSX_DEPLOYMENT_TARGET=10.3 cc -bundle -undefined dynamic_lookup -L/usr/local/lib -fstack-protector-strong key_utils.o key_utils_wrap.o -o blib/arch/auto/Business/OnlinePayment/BitPay/KeyUtils/KeyUtils.bundle \
-lm -lssl -lcrypto \
chmod 755 blib/arch/auto/Business/OnlinePayment/BitPay/KeyUtils/KeyUtils.bundle
"/usr/local/bin/perl" -MExtUtils::Command::MM -e 'cp_nonempty' -- KeyUtils.bs blib/arch/auto/Business/OnlinePayment/BitPay/KeyUtils/KeyUtils.bs 644
Running Mkbootstrap for Business::OnlinePayment::BitPay::KeyUtils ()
chmod 644 "KeyUtils.bs"
PERL_DL_NONLAZY=1 "/usr/local/bin/perl" "-Iblib/lib" "-Iblib/arch" test.pl
Can't locate JSON/Parse.pm in @INC (you may need to install the JSON::Parse module) (@INC contains: blib/lib blib/arch /usr/local/lib/perl5/site_perl/5.22.0/darwin-2level /usr/local/lib/perl5/site_perl/5.22.0 /usr/local/lib/perl5/5.22.0/darwin-2level /usr/local/lib/perl5/5.22.0 /usr/local/lib/perl5/site_perl/5.20.2 /usr/local/lib/perl5/site_perl/5.20.0 /usr/local/lib/perl5/site_perl/5.16.0 /usr/local/lib/perl5/site_perl .) at test.pl line 10.
BEGIN failed--compilation aborted at test.pl line 10.
make: *** [test_dynamic] Error 2
-> FAIL Installing Business::OnlinePayment::BitPay::KeyUtils failed. See /Users/dha/.cpanm/work/1437864534.10107/build.log for details. Retry with --force to force install it.
------------------------------
PREREQUISITES
------------------------------
Prerequisite modules loaded:
No requirements found
------------------------------
ENVIRONMENT AND OTHER CONTEXT
------------------------------
Environment variables:
LANG = en_US.UTF-8
LD_LIBRARY_PATH = /usr/lib:/usr/local/lib:/usr/local/pgsql/lib
PATH = /Users/dha/.rbenv/shims:/Users/dha/go:/Users/dha/go-intro:/Users/dha/intro-to-go-class/gopath/bin:/usr/local/sbin:/usr/local/pgsql/bin:/Applications/Mkvtoolnix.app/Contents/MacOS/:/usr/local/bin:/Library/Frameworks/Python.framework/Versions/2.7/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/opt/X11/bin:/usr/local/git/bin:/usr/local/go/bin:/Users/dha/perlstufftosort:/Users/dha/mybin:/usr/local/mysql/bin:/Developer/Tools:/usr/X11R6/bin:/Library/Perl/5.8.6:/Users/dha/rakudo-star-2010.09:
SHELL = /bin/zsh
TERM = color_xterm
TMPDIR = /var/folders/4h/5qxp0tc952d7v2pzpqpskb940000gn/T/
Perl special variables (and OS-specific diagnostics, for MSWin32):
EGID = 20 20 12 61 79 80 81 98 33 100 204 398 399
EUID = 501
EXECUTABLE_NAME = /usr/local/bin/perl
GID = 20 20 12 61 79 80 81 98 33 100 204 398 399
UID = 501
Perl module toolchain versions installed:
Module Have
------------------- --------
CPAN 2.11
CPAN::Meta 2.150005
Cwd 3.56
ExtUtils::CBuilder 0.280223
ExtUtils::Command 1.20
ExtUtils::Install 2.04
ExtUtils::MakeMaker 7.04_01
ExtUtils::Manifest 1.70
ExtUtils::ParseXS 3.28
File::Spec 3.56
JSON 2.90
JSON::PP 2.27300
Module::Build 0.4214
Module::Signature 0.79
Parse::CPAN::Meta 1.4417
Test::Harness 3.35
Test::More 1.001014
YAML 1.15
YAML::Syck 1.29
version 0.9912
--
Summary of my perl5 (revision 5 version 22 subversion 0) configuration:
Platform:
osname=darwin, osvers=14.3.0, archname=darwin-2level
uname='darwin davids-macbook-pro-2.local 14.3.0 darwin kernel version 14.3.0: mon mar 23 11:59:05 pdt 2015; root:xnu-2782.20.48~5release_x86_64 x86_64 '
config_args=''
hint=recommended, useposix=true, d_sigaction=define
useithreads=undef, usemultiplicity=undef
use64bitint=define, use64bitall=define, uselongdouble=undef
usemymalloc=n, bincompat5005=undef
Compiler:
cc='cc', ccflags ='-fno-common -DPERL_DARWIN -fno-strict-aliasing -pipe -fstack-protector-strong -I/usr/local/include',
optimize='-O3',
cppflags='-fno-common -DPERL_DARWIN -fno-strict-aliasing -pipe -fstack-protector-strong -I/usr/local/include'
ccversion='', gccversion='4.2.1 Compatible Apple LLVM 6.1.0 (clang-602.0.53)', gccosandvers=''
intsize=4, longsize=8, ptrsize=8, doublesize=8, byteorder=12345678, doublekind=3
d_longlong=define, longlongsize=8, d_longdbl=define, longdblsize=16, longdblkind=3
ivtype='long', ivsize=8, nvtype='double', nvsize=8, Off_t='off_t', lseeksize=8
alignbytes=8, prototype=define
Linker and Libraries:
ld='env MACOSX_DEPLOYMENT_TARGET=10.3 cc', ldflags =' -fstack-protector-strong -L/usr/local/lib'
libpth=/usr/local/lib /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../lib/clang/6.1.0/lib /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib /usr/lib
libs=-lpthread -lgdbm -ldbm -ldb -ldl -lm -lutil -lc
perllibs=-lpthread -ldl -lm -lutil -lc
libc=, so=dylib, useshrplib=false, libperl=libperl.a
gnulibc_version=''
Dynamic Linking:
dlsrc=dl_dlopen.xs, dlext=bundle, d_dlsymun=undef, ccdlflags=' '
cccdlflags=' ', lddlflags=' -bundle -undefined dynamic_lookup -L/usr/local/lib -fstack-protector-strong'
Characteristics of this binary (from libperl):
Compile-time options: HAS_TIMES PERLIO_LAYERS PERL_DONT_CREATE_GVSV
PERL_HASH_FUNC_ONE_AT_A_TIME_HARD PERL_MALLOC_WRAP
PERL_NEW_COPY_ON_WRITE PERL_PRESERVE_IVUV
USE_64_BIT_ALL USE_64_BIT_INT USE_LARGE_FILES
USE_LOCALE USE_LOCALE_COLLATE USE_LOCALE_CTYPE
USE_LOCALE_NUMERIC USE_LOCALE_TIME USE_PERLIO
USE_PERL_ATOF
Built under darwin
Compiled at Jun 1 2015 19:13:21
@INC:
/usr/local/lib/perl5/site_perl/5.22.0/darwin-2level
/usr/local/lib/perl5/site_perl/5.22.0
/usr/local/lib/perl5/5.22.0/darwin-2level
/usr/local/lib/perl5/5.22.0
/usr/local/lib/perl5/site_perl/5.20.2
/usr/local/lib/perl5/site_perl/5.20.0
/usr/local/lib/perl5/site_perl/5.16.0
/usr/local/lib/perl5/site_perl
.