Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 313571 | Differences between
and this patch

Collapse All | Expand All

(-)trunk/kdesupport/qca/plugins/qca-ossl/qca-ossl.cpp (+9 lines)
Lines 42-47 Link Here
42
#define OSSL_097
42
#define OSSL_097
43
#endif
43
#endif
44
44
45
#if defined(OPENSSL_VERSION_NUMBER) && OPENSSL_VERSION_NUMBER >= 0x10000000L
46
// OpenSSL 1.0.0 makes a few changes that aren't very C++ friendly...
47
// Among other things, CHECKED_PTR_OF returns a void*, but is used in
48
// contexts requiring STACK pointers.
49
#undef CHECKED_PTR_OF
50
#define CHECKED_PTR_OF(type, p) \
51
	            ((_STACK*) (1 ? p : (type*)0))
52
#endif
53
45
using namespace QCA;
54
using namespace QCA;
46
55
47
namespace opensslQCAPlugin {
56
namespace opensslQCAPlugin {

Return to bug 313571