diff options
author | Vladimir Glazounov <vg@openoffice.org> | 2008-08-18 12:15:45 +0000 |
---|---|---|
committer | Vladimir Glazounov <vg@openoffice.org> | 2008-08-18 12:15:45 +0000 |
commit | 0e49ef771ba59a70a8d33bdcbde868229a59befe (patch) | |
tree | 7ab2cd19905c1a80bd87f78fb8b324480772bb16 /xmlsecurity | |
parent | c39975215580685f648480b4559f8df282e26983 (diff) |
INTEGRATION: CWS cmcfixes48 (1.22.22); FILE MERGED
2008/07/30 09:30:34 cmc 1.22.22.1: #i92277# make this work on 64bit platforms
Diffstat (limited to 'xmlsecurity')
-rw-r--r-- | xmlsecurity/source/xmlsec/nss/securityenvironment_nssimpl.cxx | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/xmlsecurity/source/xmlsec/nss/securityenvironment_nssimpl.cxx b/xmlsecurity/source/xmlsec/nss/securityenvironment_nssimpl.cxx index 33cff5259a09..6aa6f009212a 100644 --- a/xmlsecurity/source/xmlsec/nss/securityenvironment_nssimpl.cxx +++ b/xmlsecurity/source/xmlsec/nss/securityenvironment_nssimpl.cxx @@ -7,7 +7,7 @@ * OpenOffice.org - a multi-platform office productivity suite * * $RCSfile: securityenvironment_nssimpl.cxx,v $ - * $Revision: 1.22 $ + * $Revision: 1.23 $ * * This file is part of OpenOffice.org. * @@ -45,6 +45,11 @@ #include "certt.h" #include "prerror.h" +#include <sal/types.h> +//For reasons that escape me, this is what xmlsec does when size_t is not 4 +#if SAL_TYPES_SIZEOFPOINTER != 4 +# define XMLSEC_NO_SIZE_T +#endif #include <xmlsec/xmlsec.h> #include <xmlsec/keysmngr.h> #include <xmlsec/crypto.h> |