diff options
Diffstat (limited to 'xmlsecurity/source/xmlsec/biginteger.cxx')
-rw-r--r-- | xmlsecurity/source/xmlsec/biginteger.cxx | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/xmlsecurity/source/xmlsec/biginteger.cxx b/xmlsecurity/source/xmlsec/biginteger.cxx index 147a04696..8d3a72db4 100644 --- a/xmlsecurity/source/xmlsec/biginteger.cxx +++ b/xmlsecurity/source/xmlsec/biginteger.cxx @@ -7,7 +7,7 @@ * OpenOffice.org - a multi-platform office productivity suite * * $RCSfile: biginteger.cxx,v $ - * $Revision: 1.7 $ + * $Revision: 1.8 $ * * This file is part of OpenOffice.org. * @@ -33,6 +33,11 @@ #include <xmlsecurity/biginteger.hxx> +#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/bn.h> #include <com/sun/star/uno/Sequence.hxx> |