diff options
author | Jan Beich <jbeich@FreeBSD.org> | 2020-10-17 13:49:21 +0000 |
---|---|---|
committer | Jan Beich <jbeich@FreeBSD.org> | 2020-10-17 13:49:21 +0000 |
commit | e82d5816551b4707cedd3d6a5239af4f406310c5 (patch) | |
tree | 90e2bfc53e3af1046f9ca7cc2a131b9b12721edf /security/py-python-nss | |
parent | Fix emulators/virtualbox-ose build after r552109. (diff) |
security/py-python-nss: unbreak after r552532
In file included from src/py_nss.c:341:
src/py_nss.h:126:3: error: typedef redefinition with different types ('struct RSAPublicKey' vs 'struct RSAPublicKeyStr')
} RSAPublicKey;
^
/usr/local/include/nss/blapit.h:281:32: note: previous definition is here
typedef struct RSAPublicKeyStr RSAPublicKey;
^
In file included from src/py_nss.c:341:
src/py_nss.h:136:3: error: typedef redefinition with different types ('struct DSAPublicKey' vs 'struct DSAPublicKeyStr')
} DSAPublicKey;
^
/usr/local/include/nss/blapit.h:323:32: note: previous definition is here
typedef struct DSAPublicKeyStr DSAPublicKey;
^
Reported by: pkg-fallout
Notes
Notes:
svn path=/head/; revision=552572
Diffstat (limited to 'security/py-python-nss')
-rw-r--r-- | security/py-python-nss/files/patch-src_py__nss.h | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/security/py-python-nss/files/patch-src_py__nss.h b/security/py-python-nss/files/patch-src_py__nss.h new file mode 100644 index 000000000000..e612e0c0855f --- /dev/null +++ b/security/py-python-nss/files/patch-src_py__nss.h @@ -0,0 +1,36 @@ +Rename structs to avoid conflict with C API after NSS 3.58 changes to pk11pub.h +https://hg.mozilla.org/projects/nss/rev/6e3bc17f0508 + +In file included from src/py_nss.c:341: +src/py_nss.h:126:3: error: typedef redefinition with different types ('struct RSAPublicKey' vs 'struct RSAPublicKeyStr') +} RSAPublicKey; + ^ +/usr/local/include/nss/blapit.h:281:32: note: previous definition is here +typedef struct RSAPublicKeyStr RSAPublicKey; + ^ +In file included from src/py_nss.c:341: +src/py_nss.h:136:3: error: typedef redefinition with different types ('struct DSAPublicKey' vs 'struct DSAPublicKeyStr') +} DSAPublicKey; + ^ +/usr/local/include/nss/blapit.h:323:32: note: previous definition is here +typedef struct DSAPublicKeyStr DSAPublicKey; + ^ + +--- src/py_nss.h.orig 2016-02-16 16:40:14 UTC ++++ src/py_nss.h +@@ -119,6 +119,7 @@ typedef struct { + /* ============================ RSAPublicKey Class ========================== */ + /* ========================================================================== */ + ++#define RSAPublicKey PyRSAPublicKey + typedef struct { + PyObject_HEAD + PyObject *py_modulus; +@@ -129,6 +130,7 @@ typedef struct { + /* ============================ DSAPublicKey Class ========================== */ + /* ========================================================================== */ + ++#define DSAPublicKey PyDSAPublicKey + typedef struct { + PyObject_HEAD + PyObject *py_pqg_params; |