Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 25 Nov 2018 21:51:48 +0000
From:      bugzilla-noreply@freebsd.org
To:        ports-bugs@FreeBSD.org
Subject:   [Bug 233519] finance/openhbci: fails with openssl111 to build
Message-ID:  <bug-233519-7788@https.bugs.freebsd.org/bugzilla/>

next in thread | raw e-mail | index | archive | help
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D233519

            Bug ID: 233519
           Summary: finance/openhbci: fails with openssl111 to build
           Product: Ports & Packages
           Version: Latest
          Hardware: Any
                OS: Any
            Status: New
          Severity: Affects Only Me
          Priority: ---
         Component: Individual Port(s)
          Assignee: ports-bugs@FreeBSD.org
          Reporter: w.schwarzenfeld@utanet.at

openhbci fails with openssl111 with:
c++ -DHAVE_CONFIG_H -I. -I. -I../../.. -I../ -I/usr/local/include -O2 -pipe
-fstack-protector -fno-strict-aliasing -MT rsakey.lo -MD -MP -MF
.deps/rsakey.Tpo -c rsakey.cpp  -fPIC -DPIC -o .libs/rsakey.o
rsakey.cpp:350:12: error: member access into incomplete type 'RSA' (aka
'rsa_st')
  rsaStruct->e =3D myExponent;
           ^
./rsakey.h:44:16: note: forward declaration of 'rsa_st'
typedef struct rsa_st RSA;
               ^
rsakey.cpp:356:18: error: member access into incomplete type 'RSA' (aka
'rsa_st')
        rsaStruct->n =3D myModulus;
                 ^
./rsakey.h:44:16: note: forward declaration of 'rsa_st'
typedef struct rsa_st RSA;
               ^
rsakey.cpp:359:9: error: member access into incomplete type 'RSA' (aka
'rsa_st')
        NEXT(n);
        ^
rsakey.cpp:344:14: note: expanded from macro 'NEXT'
    rsaStruct->tstring =3D myBIGNUM; }
             ^
./rsakey.h:44:16: note: forward declaration of 'rsa_st'
typedef struct rsa_st RSA;
               ^
rsakey.cpp:360:9: error: member access into incomplete type 'RSA' (aka
'rsa_st')
        NEXT(p);
        ^
rsakey.cpp:344:14: note: expanded from macro 'NEXT'
    rsaStruct->tstring =3D myBIGNUM; }
             ^
./rsakey.h:44:16: note: forward declaration of 'rsa_st'
typedef struct rsa_st RSA;
               ^
rsakey.cpp:361:9: error: member access into incomplete type 'RSA' (aka
'rsa_st')
        NEXT(q);
        ^
rsakey.cpp:344:14: note: expanded from macro 'NEXT'
    rsaStruct->tstring =3D myBIGNUM; }
             ^
./rsakey.h:44:16: note: forward declaration of 'rsa_st'
typedef struct rsa_st RSA;
               ^
rsakey.cpp:362:9: error: member access into incomplete type 'RSA' (aka
'rsa_st')
        NEXT(dmp1);
        ^
rsakey.cpp:344:14: note: expanded from macro 'NEXT'
    rsaStruct->tstring =3D myBIGNUM; }
             ^
./rsakey.h:44:16: note: forward declaration of 'rsa_st'
typedef struct rsa_st RSA;
               ^
rsakey.cpp:363:9: error: member access into incomplete type 'RSA' (aka
'rsa_st')
        NEXT(dmq1);
        ^
rsakey.cpp:344:14: note: expanded from macro 'NEXT'
    rsaStruct->tstring =3D myBIGNUM; }
             ^
./rsakey.h:44:16: note: forward declaration of 'rsa_st'
typedef struct rsa_st RSA;
               ^
rsakey.cpp:364:9: error: member access into incomplete type 'RSA' (aka
'rsa_st')
        NEXT(iqmp);
        ^
rsakey.cpp:344:14: note: expanded from macro 'NEXT'
    rsaStruct->tstring =3D myBIGNUM; }
             ^
./rsakey.h:44:16: note: forward declaration of 'rsa_st'
typedef struct rsa_st RSA;
               ^
rsakey.cpp:365:9: error: member access into incomplete type 'RSA' (aka
'rsa_st')
        NEXT(d);
        ^
rsakey.cpp:344:14: note: expanded from macro 'NEXT'
    rsaStruct->tstring =3D myBIGNUM; }
             ^
./rsakey.h:44:16: note: forward declaration of 'rsa_st'
typedef struct rsa_st RSA;
               ^
rsakey.cpp:427:18: warning: 'RSA_generate_key' is deprecated
[-Wdeprecated-declarations]
    RSA *myRSA =3D RSA_generate_key(keyLength, DEFAULT_EXPONENT, NULL, NULL=
);
                 ^
/usr/local/include/openssl/rsa.h:234:1: note: 'RSA_generate_key' has been
explicitly marked deprecated here
DEPRECATEDIN_0_9_8(RSA *RSA_generate_key(int bits, unsigned long e, void
^
/usr/local/include/openssl/opensslconf.h:182:34: note: expanded from macro
'DEPRECATEDIN_0_9_8'
# define DEPRECATEDIN_0_9_8(f)   DECLARE_DEPRECATED(f)
                                 ^
/usr/local/include/openssl/opensslconf.h:133:55: note: expanded from macro
'DECLARE_DEPRECATED'
#   define DECLARE_DEPRECATED(f)    f __attribute__ ((deprecated));
                                                      ^
rsakey.cpp:429:27: error: member access into incomplete type 'RSA' (aka
'rsa_st')
    length=3DBN_bn2bin(myRSA->n, dest);
                          ^
./rsakey.h:44:16: note: forward declaration of 'rsa_st'
typedef struct rsa_st RSA;
               ^
rsakey.cpp:433:5: error: member access into incomplete type 'RSA' (aka
'rsa_st')
    NEXT(n);
    ^
rsakey.cpp:417:29: note: expanded from macro 'NEXT'
    length =3D BN_bn2bin(myRSA->tstring, (unsigned char*) &dest); \
                            ^
./rsakey.h:44:16: note: forward declaration of 'rsa_st'
typedef struct rsa_st RSA;
               ^
rsakey.cpp:434:5: error: member access into incomplete type 'RSA' (aka
'rsa_st')
    NEXT(p);
    ^
rsakey.cpp:417:29: note: expanded from macro 'NEXT'
    length =3D BN_bn2bin(myRSA->tstring, (unsigned char*) &dest); \
                            ^
....

--=20
You are receiving this mail because:
You are the assignee for the bug.=



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?bug-233519-7788>